.dgf-gift-finder {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
background: #ffffff;
border-radius: 20px; }
.dgf-no-filters {
text-align:center
} .dgf-finder-header {
text-align: center;
margin-bottom: 40px;
}
.dgf-finder-title {
font-size: 2.5rem;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 15px 0;
line-height: 1.2;
}  .dgf-finder-progress {
margin-bottom: 50px;
}
.dgf-progress-bar {
width: 100%;
height: 8px;
background: #f0f0f0;
border-radius: 10px;
overflow: hidden;
margin-bottom: 20px;
}
.dgf-progress-fill {
height: 100%;
background-color:#f36805;
transition: width 0.4s ease;
border-radius: 10px;
}
.dgf-progress-steps {
display: flex;
justify-content: space-between;
max-width: 400px;
margin: 0 auto;
}
.dgf-step {
width: 40px;
height: 40px;
border-radius: 50%;
background: #f0f0f0;
color: #999;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
}
.dgf-step.active {
background-color: #f36805;
color: #ffffff;
transform: scale(1.1);
}
.dgf-step.completed {
background: #4caf50;
color: #ffffff;
} .dgf-finder-step {
display: none;
animation: fadeIn 0.5s ease;
}
.dgf-finder-step.active {
display: block;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.dgf-step-title {
font-size: 2rem;
font-weight: 600;
color: #1a1a1a;
text-align: center;
margin: 0 0 40px 0;
}
.dgf-step-subtitle {
text-align: center;
color: #666;
font-size: 1rem;
margin: -20px 0 30px 0;
} .dgf-finder-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.dgf-finder-card {
background: #ffffff;
border: 2px solid #e0e0e0;
border-radius: 16px;
padding: 30px 20px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.dgf-finder-card:hover {
border-color: #f36805; }
.dgf-finder-card.selected {
border-color: #f36805 ; }
.dgf-finder-card.selected::after {
content: "✓";
position: absolute;
top: 10px;
right: 10px;
width: 30px;
height: 30px;
background: #4caf50;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: bold;
}
.dgf-card-icon {
margin-bottom: 15px;
}
.dgf-emoji {
font-size: 3rem;
display: block;
}
.dgf-card-label {
display: block;
font-size: 1rem;
font-weight: 600;
color: #333;
} .dgf-budget-wrapper {
max-width: 600px;
margin: 0 auto 40px auto;
padding: 40px;
background: #f8f9fa;
border-radius: 16px;
}
.dgf-budget-display {
text-align: center;
margin-bottom: 30px;
}
#dgf-finder-budget-value {
font-size: 2rem;
font-weight: 700;
color: #333333;
}
.dgf-finder-slider {
margin: 30px 0;
}
.dgf-budget-labels {
display: flex;
justify-content: space-between;
color: #666;
font-size: 0.9rem;
margin-top: 10px;
} .dgf-finder-slider.ui-slider {
background: #e0e0e0;
border: none;
height: 8px;
border-radius: 10px;
}
.dgf-finder-slider .ui-slider-range {
background: linear-gradient(90deg, #f36805 0%, #c1601b 100%);
}
.dgf-finder-slider .ui-slider-handle {
width: 24px;
height: 24px;
background: #ffffff;
border: 3px solid #f36805;
border-radius: 50%;
cursor: pointer;
top: -8px;
}
.dgf-finder-slider .ui-slider-handle:focus {
outline: none;
} .dgf-finetuning {
max-width: 900px;
margin: 0 auto;
}
.dgf-finetuning-group {
margin-bottom: 40px;
}
.dgf-finetuning-group h4 {
font-size: 1.3rem;
font-weight: 600;
color: #1a1a1a;
margin: 0 0 20px 0;
}
.dgf-checkbox-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 15px;
}
.dgf-checkbox-card {
display: block;
padding: 15px 20px;
background: #ffffff;
border: 2px solid #e0e0e0;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
}
.dgf-checkbox-card:hover {
border-color: #667eea;
background: #f8f9ff;
}
.dgf-checkbox-card input[type="checkbox"] {
display: none;
}
.dgf-checkbox-card input[type="checkbox"]:checked + span {
color: #667eea;
font-weight: 600;
}
.dgf-checkbox-card input[type="checkbox"]:checked ~ * {
border-color: #667eea;
}
.dgf-checkbox-card input[type="checkbox"]:checked {
border-color: #667eea;
} .dgf-checkbox-card:has(input[type="checkbox"]:checked) {
border-color: #f36805;
background-color: #f9f9f9;
}
.dgf-checkbox-card span {
color: #333;
font-size: 0.95rem;
} .dgf-finder-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 40px;
}
.dgf-btn-primary,
.dgf-btn-secondary {
padding: 16px 40px;
font-size: 1.1rem;
font-weight: 600;
border: none;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.dgf-btn-primary {
background-color:#f36805;
color: #ffffff;
}
.dgf-btn-primary:hover {
}
.dgf-btn-secondary {
background: #ffffff;
color: #f36805;
border: 2px solid #f36805;
}
.dgf-btn-secondary:hover {
color:#333333;
background-color:#ffffff
} .dgf-finder-loading {
text-align: center;
padding: 80px 20px;
}
.dgf-loading-spinner {
width: 60px;
height: 60px;
border: 5px solid #f3f3f3;
border-top: 5px solid #667eea;
border-radius: 50%;
margin: 0 auto 30px auto;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.dgf-loading-text {
font-size: 1.8rem;
font-weight: 600;
color: #1a1a1a;
margin: 0 0 10px 0;
}
.dgf-loading-subtext {
font-size: 1.2rem;
color: #667eea;
margin: 0;
} .dgf-finder-results {
animation: fadeIn 0.5s ease;
}
.dgf-results-header {
text-align: center;
margin-bottom: 50px;
}
.dgf-results-title {
font-size: 24px;
font-weight: 700;
color: #000000c2;
margin: 0 0 10px 0;
}
.dgf-results-subtitle {
font-size: 1.1rem;
color: #666;
margin: 0;
}
.dgf-results-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 50px;
}
.dgf-result-card {
background: #ffffff;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.dgf-result-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.dgf-result-link {
text-decoration: none;
color: inherit;
display: block;
}
.dgf-result-image {
width: 100%;
height: 250px;
overflow: hidden;
background: #f5f5f5;
}
.dgf-result-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.dgf-result-card:hover .dgf-result-image img {
transform: scale(1.05);
}
.dgf-result-content {
padding: 20px;
}
.dgf-result-title {
font-size: 1.1rem;
font-weight: 600;
color: #1a1a1a;
margin: 0 0 10px 0;
line-height: 1.4;
}
.dgf-result-price {
font-size: 1.3rem;
font-weight: 700;
color: #667eea;
margin: 0;
}
.dgf-results-actions {
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
margin-top: 40px;
}
.dgf-results-actions .dgf-btn-primary {
font-size: 1.2rem;
padding: 18px 50px;
}
.dgf-no-results {
text-align: center;
padding: 60px 20px;
background: #f8f9fa;
border-radius: 16px;
}
.dgf-no-results h3 {
font-size: 1.8rem;
color: #666;
margin: 0 0 15px 0;
}
.dgf-no-results p {
font-size: 1.1rem;
color: #999;
margin: 0;
} @media (max-width: 768px) {
.dgf-gift-finder {
margin: 30px auto;
padding: 30px 15px;
}
.dgf-finder-title {
font-size: 1.8rem;
}
.dgf-finder-subtitle {
font-size: 1rem;
}
.dgf-step-title {
font-size: 1.5rem;
margin-bottom: 30px;
}
.dgf-finder-grid {
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 15px;
}
.dgf-finder-card {
padding: 20px 15px;
}
.dgf-emoji {
font-size: 2.5rem;
}
.dgf-budget-wrapper {
padding: 30px 20px;
}
#dgf-finder-budget-value {
font-size: 1.5rem;
}
.dgf-checkbox-grid {
grid-template-columns: 1fr;
}
.dgf-finder-actions {
flex-direction: column;
}
.dgf-btn-primary,
.dgf-btn-secondary {
width: 100%;
}
.dgf-results-grid {
grid-template-columns: 1fr;
gap: 20px;
}
}
@media (max-width: 480px) {
.dgf-finder-title {
font-size: 1.5rem;
}
.dgf-progress-steps {
max-width: 300px;
}
.dgf-step {
width: 35px;
height: 35px;
font-size: 0.9rem;
}
}