.ad-block {
    text-align: center;
    align-items: center;
    padding: 1rem;
    user-select: none;
    width: 70%;
    margin: 1.5rem auto;
    border-radius: 0.5rem;
}

.ad-block h2 {
    margin: 1rem;
}

.ad-block p {
    margin: 1rem;
}

.ad-block button {
    background-color: #ffc107;
    margin: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all ease .3s;
}

.ad-block button:hover {
    background-color: #e0a800;
}

.advantages-block {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    padding: 2rem 10rem;
    background-color: transparent;
}

.advantages-block ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    list-style: none;
    padding: 0;
    user-select: none;
}

.advantages-block ul li {   
    background-color: #222222;
    border-radius: 0.5rem;
    text-align: center;
    padding: 1.5rem 1rem;
    flex: 1;
    min-width: 200px;
    transition: all .3s ease;
}

.advantages-block ul li:hover {
    transform: translateY(-1rem);
    box-shadow: 0 1rem 0.5rem #131314;
}

.advantages-block ul li i {
    color: #FAD532;
    margin-bottom: 1rem;
    display: block;
}

.advantages-block ul li h3 {
    color: #FAD532;
    margin-bottom: 0.5rem;
}

.advantages-block ul li p {
    color: #fff;
    margin: 0;
}


@media (max-width: 1200px) {
    .advantages-block {
        padding: 0.5rem 5rem;
    }
}

@media (max-width: 992px) {
    .advantages-block {
        padding: 0.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .advantages-block {
        padding: 0.5rem 1rem;
        justify-content: center;
    }
    
    .advantages-block ul {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .advantages-block ul li {
        flex: 0 0 calc(50% - 0.8rem);
        min-width: calc(50% - 0.8rem);
        max-width: calc(50% - 0.8rem);
    }
    
    .ad-block {
        width: 90%;
        margin: 1rem auto;
    }
}

@media (max-width: 576px) {
    .advantages-block {
        padding: 0.5rem 0.5rem;
    }
    
    .advantages-block ul {
        gap: 0.5rem;
    }
    
    .advantages-block ul li {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .ad-block {
        width: 95%;
        padding: 0.8rem;
    }
    
    .ad-block h2 {
        font-size: 1.2rem;
        margin: 0.5rem;
    }
    
    .ad-block p {
        margin: 0.5rem;
    }
    
    .ad-block button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

.faq-section {
    padding: 1rem 0;
}

.faq-container {
    background-color: #222222;
    border-radius: 0.5rem;
    padding: 2rem;
    width: 70%;
    margin: 0 auto;
    color: white;
    user-select: none;
}

.faq-container h2 {
    color: #FAD532;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #333;
}

.faq-question {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #3a3a3a;
}

.faq-question span {
    color: #fff;
}

.faq-question i {
    color: #FAD532;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #2a2a2a;
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem;
    color: #ccc;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-container {
        width: 90%;
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 0.8rem 1rem;
    }
    
    .faq-answer p {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        width: 95%;
        padding: 1rem;
    }
    
    .faq-container h2 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
    }
    
    .faq-answer p {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

.reviews-container {
    border-radius: 0.5rem;
    padding: 1rem;
    width: 85%;
    margin: 0 auto;
    color: white;
    user-select: none;
}

.reviews-container h2 {
    color: #FAD532;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background-color: #333;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-card-image {
    object-fit: cover;
}

.review-stars {
    color: #FAD532;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #fff;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.review-author {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-tag {
    display: inline-block;
    background-color: #444;
    color: #FAD532;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

.viber-card {   
    background: linear-gradient(135deg, #f959e9, #65057d);
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
    margin-top: 0;
}

.viber-card:hover {
    transform: translateY(-5px);
}

.viber-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.viber-icon-link {
    font-size: 1rem;
}

.viber-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.viber-qr-container {
    background: transparent;
    padding: 0rem;
    border-radius: 0.5rem;
    margin: 0;
}

.viber-qr-code {
    width: 15rem;
    height: 15rem;
    border-radius: 0.25rem;
    object-fit: cover;
}

.viber-instruction {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.viber-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #7c3aed;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    margin-top: 0.5rem;
}

.viber-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    background: #f8f9fa;
    color: #7c3aed;
}

.viber-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.viber-button:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .reviews-container {
        width: 90%;
        padding: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .viber-qr-code {
        width: 15rem;
        height: 15rem;
    }
    
    .viber-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews-container {
        width: 95%;
        padding: 1rem;
    }
    
    .reviews-container h2 {
        font-size: 1.3rem;
    }
    
    .review-card,
    .viber-card {
        padding: 1rem;
    }

}

.reviews-controls {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.show-more-btn, .hide-all-btn {
    background: linear-gradient(135deg, #FAD532, #ff9800);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    user-select: none;
}

.show-more-btn:hover, .hide-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.hide-all-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.hide-all-btn:hover {
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

@media (max-width: 768px) {
    .reviews-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .show-more-btn, .hide-all-btn {
        width: 100%;
        max-width: 300px;
    }
}


.about-section {
    padding: 1rem 0;
}

.about-container {
    background-color: #222222;
    border-radius: 0.5rem;
    padding: 2rem;
    width: 70%;
    margin: 0 auto;
    color: white;
    user-select: none;
}

.about-container h2 {
    color: #FAD532;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ccc;
}

.about-intro {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff !important;
}

.brands-section {
    margin: 3rem 0;
}

.brands-section h3 {
    color: #FAD532;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.brands-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.brands-scroll {
    display: flex;
    animation: scrollBrands 20s linear infinite;
}

.brands-grid {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.brand-item {
    background: linear-gradient(135deg, #333, #2a2a2a);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.advantages-section h3 {
    color: #FAD532;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.advantage-item i {
    color: #FAD532;
    font-size: 1.5rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.advantage-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.advantage-item p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

.location-section {
    margin: 2rem 0;
}

.location-section h3 {
    color: #FAD532;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.map-placeholder {
    background-color: #333;
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 1.5rem;
    color: #ccc;
}

.map-placeholder i {
    font-size: 3rem;
    color: #FAD532;
    margin-bottom: 1rem;
    display: block;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    color: #888;
}

@media (max-width: 768px) {
    .about-container {
        width: 90%;
        padding: 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brands-grid {
        gap: 0.5rem;
    }
    
    .brand-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        width: 95%;
        padding: 1rem;
    }
    
    .about-container h2 {
        font-size: 1.5rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');
    
.hero-section {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
    min-height: 5rem;
    display: flex;
    align-items: center;
    user-select: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 50%;
    padding-left: 10%;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #FAD532;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.red {
    position: relative;
    color: #fa8232;
    margin: 0;
    top: -0.75rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-button {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #333;
    font-weight: bold;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.hero-button:hover::before {
    left: 100%;
}

.air-conditioners {
    position: absolute;
    right: 10%;
    top: 30%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
}

.ac-image {
    position: absolute;
    filter: 
        drop-shadow(0 10px 20px rgba(0,0,0,0.3)) 
        brightness(0.9)
        contrast(1.1)
        drop-shadow(0 0 5px rgba(255, 230, 0, 0.7))
        drop-shadow(0 0 15px rgba(255, 217, 0, 0.5))
        drop-shadow(0 0 25px rgba(255, 200, 0, 0.3));
    transition: transform 0.5s ease-out, filter 0.5s ease-out;
}

.ac-1 {
    width: 25rem;
    right: 25%;
    top: 25%;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite, neon-pulse 3s ease-in-out infinite;
    z-index: 2;
}

.ac-2 {
    width: 17rem;
    right: 0%;
    top: 55%;
    transform: rotate(8deg);
    animation: float 8s ease-in-out infinite 1s, neon-pulse 4s ease-in-out infinite 0.5s;
    z-index: 1;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(var(--rotation, 0deg)) scale(1);
    }
    33% { 
        transform: translateY(-10px) rotate(calc(var(--rotation, 0deg) - 1deg)) scale(1.02);
    }
    66% { 
        transform: translateY(5px) rotate(calc(var(--rotation, 0deg) + 1deg)) scale(0.98);
    }
}

@keyframes neon-pulse {
    0%, 100% {
        filter: 
            drop-shadow(0 10px 20px rgba(0,0,0,0.3))
            brightness(0.8)
            contrast(1.1)
            drop-shadow(0 0 5px rgba(255, 230, 0, 0.7))
            drop-shadow(0 0 15px rgba(255, 217, 0, 0.5))
            drop-shadow(0 0 25px rgba(255, 200, 0, 0.3));
    }
    50% {
        filter: 
            drop-shadow(0 10px 20px rgba(0,0,0,0.3))
            brightness(1.1)
            contrast(1.2)
            drop-shadow(0 0 10px rgba(255, 255, 0, 0.9))
            drop-shadow(0 0 25px rgba(255, 230, 0, 0.7))
            drop-shadow(0 0 40px rgba(255, 200, 0, 0.5))
            drop-shadow(0 0 60px rgba(255, 180, 0, 0.3));
    }
}

.ac-1 { --rotation: -5deg; }
.ac-2 { --rotation: 8deg; }

.ac-image:hover {
    filter: 
        drop-shadow(0 10px 20px rgba(0,0,0,0.3))
        brightness(1.2)
        contrast(1.3)
        drop-shadow(0 0 15px rgba(255, 255, 0, 1))
        drop-shadow(0 0 30px rgba(255, 230, 0, 0.8))
        drop-shadow(0 0 50px rgba(255, 200, 0, 0.6))
        drop-shadow(0 0 70px rgba(255, 180, 0, 0.4));
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .hero-content {
        width: 60%;
        padding-left: 5%;
    }
    
    .air-conditioners {
        width: 40%;
    }
    
    .ac-1 {
        width: 220px;
        right: 10%;
    }
    
    .ac-2 {
        width: 150px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        min-height: 400px;
    }
    
    .hero-content {
        width: 100%;
        padding: 0 5%;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .air-conditioners {
        position: relative;
        width: 100%;
        height: 250px;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 1rem;
    }
    
    .ac-1 {
        width: 180px;
        right: 50%;
        transform: translateX(60%) rotate(-5deg) !important;
        top: 20%;
    }
    
    .ac-2 {
        width: 120px;
        right: 30%;
        transform: translateX(50%) rotate(8deg) !important;
        top: 50%;
    }
}
@media (max-width: 480px) {
    .ac-1 {
        width: 150px;
        right: 55%;
    }
    
    .ac-2 {
        width: 100px;
        right: 25%;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

.best-sellers-section {
    margin-top: 2rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2d 100%);
}

.best-sellers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FAD532;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    user-select: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin: 0;
    user-select: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: linear-gradient(135deg, #222222 0%, #2a2a2a 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #FAD532;
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    user-select: none;
    z-index: 3;
}

.product-image {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-image img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 0.5rem;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: 
        drop-shadow(0 0 5px rgba(255, 230, 0, 0.7))
        drop-shadow(0 0 15px rgba(255, 217, 0, 0.5))
        drop-shadow(0 0 25px rgba(255, 200, 0, 0.3));
}

.product-card:hover .product-image img {
    transform: scale(1.025);
    filter: 
        drop-shadow(0 0 10px rgba(213, 213, 0, 0.9))
        drop-shadow(0 0 25px rgba(255, 230, 0, 0.7))
        drop-shadow(0 0 40px rgba(255, 200, 0, 0.5))
        drop-shadow(0 0 60px rgba(255, 180, 0, 0.3));
}

.product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
    animation: neon-pulse 3s ease-in-out infinite;
}

.product-card:hover .product-image::before {
    opacity: 0.6;
    width: 250px;
    height: 250px;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 230, 0, 0.1) 0%, transparent 70%);
    border-radius: 0.5rem;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-info {
    text-align: center;
    user-select: none;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    user-select: none;
}


@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image::before {
        width: 150px;
        height: 150px;
    }
    
    .product-card:hover .product-image::before {
        width: 180px;
        height: 180px;
    }
}

.product-model {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #FAD532;
    border: 1px solid rgba(255, 255, 255, 0.2);
    user-select: none;
}

.product-price {
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FAD532;
}

.product-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.buy-button {
    background: linear-gradient(135deg, #FAD532, #ff9800);
    color: #333;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    user-select: none;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.view-all-container {
    text-align: center;
}

.view-all-button {
    display: inline-block;
    background: linear-gradient(135deg, #FAD532, #ff9800);
    color: #333;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    user-select: none;
}

.view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    color: #333;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .buy-button,
    .details-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .best-sellers-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .view-all-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.delivery-section {
    margin-top: 1rem;
    user-select: none;
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.delivery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.delivery-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FAD532;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.delivery-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.delivery-content {
    background: #222222;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.delivery-methods {
    margin-bottom: 3rem;
}

.delivery-methods h3 {
    color: #FAD532;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.method-card {
    background: linear-gradient(135deg, #2a2a2a, #333);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: #FAD532;
}

.method-card i {
    font-size: 3rem;
    color: #FAD532;
    margin-bottom: 1rem;
    display: block;
}

.method-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-price {
    color: #FAD532;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.free-delivery {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.free-delivery i {
    font-size: 1.5rem;
}

.delivery-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-column h3 {
    color: #FAD532;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.delivery-list {
    list-style: none;
    padding: 0;
}

.delivery-list li {
    color: #ccc;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.5;
}

.delivery-list li i {
    color: #25D366;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-column p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.important-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #FAD532;
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.important-note i {
    color: #FAD532;
    margin-right: 0.5rem;
}

.important-note p {
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 968px) {
    .delivery-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .delivery-title {
        font-size: 2rem;
    }
    
    .delivery-subtitle {
        font-size: 1.1rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-content {
        padding: 1.5rem;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .free-delivery {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .delivery-section {
        padding: 2rem 0;
    }
    
    .delivery-title {
        font-size: 1.8rem;
    }
    
    .delivery-subtitle {
        font-size: 1rem;
    }
    
    .method-card i {
        font-size: 2.5rem;
    }
    
    .method-card h4 {
        font-size: 1.1rem;
    }
    
    .method-price {
        font-size: 1rem;
    }
}

.payment-section {
    margin: 1rem;
    user-select: none;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FAD532;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.payment-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.payment-content {
    background: #222222;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.payment-methods {
    margin-bottom: 3rem;
}

.payment-method {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2a2a2a, #333);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-3px);
    border-color: #FAD532;
}

.method-icon {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FAD532, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 2rem;
    color: #333;
}

.method-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #25D366;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.method-info {
    flex: 1;
}

.method-info h3 {
    color: #FAD532;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.method-info ul {
    color: #ccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.method-info li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.method-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #FAD532;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-style: italic;
}

.card-types {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.card-type {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-type.visa {
    background: linear-gradient(135deg, #1a1f71, #faa61a);
    color: white;
}

.card-type.mastercard {
    background: linear-gradient(135deg, #ff5f00, #eb001b);
    color: white;
}

.card-type.mir {
    background: linear-gradient(135deg, #4dbd45, #00a0e3);
    color: white;
}

.advantages {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(37, 211, 102, 0.1);
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.advantages i {
    color: #25D366;
    font-size: 1.2rem;
}

.advantages span {
    color: #ccc;
    font-weight: 500;
}

.security-note {
    background: rgba(0, 123, 255, 0.1);
    border-left: 4px solid #007bff;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    color: #ccc;
    font-size: 0.9rem;
}

.warning-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.warning-note i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.warning-note p {
    margin: 0;
    color: #ffc107;
}

.payment-support {
    display: block;
    justify-content: center;
}

.support-card {
    background: linear-gradient(135deg, #2a2a2a, #333);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-card h3, .security-card h3 {
    color: #FAD532;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #FAD532;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0 0 0.3rem 0;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-link {
    color: #FAD532;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-info {
    color: #ccc;
    font-size: 0.9rem;
}

.security-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-content i {
    color: #007bff;
    font-size: 2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.security-content p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .payment-support {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .payment-title {
        font-size: 2rem;
    }
    
    .payment-subtitle {
        font-size: 1.1rem;
    }
    
    .payment-content {
        padding: 1.5rem;
    }
    
    .payment-method {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .card-types {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .support-card, .security-card {
        padding: 1.5rem;
    }
    
    .security-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .payment-section {
        padding: 2rem 0;
    }
    
    .payment-title {
        font-size: 1.8rem;
    }
    
    .payment-subtitle {
        font-size: 1rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 1.5rem;
    }
    
    .method-number {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .method-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin: 0 auto;
    }
}

.contacts-section {
    padding: 1rem 0;
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contacts-header {
    text-align: center;
    margin-bottom: 3rem;
    user-select: none;
}

.contacts-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FAD532;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contacts-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contacts-content {
    background: #222222;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-methods h3,
.working-hours h3,
.requisites h3 {
    color: #FAD532;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #2a2a2a, #333);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    border-color: #FAD532;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FAD532, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.2rem;
    color: #333;
}

.method-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-link {
    color: #FAD532;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.method-note {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

.messenger-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.messenger-btn {
    padding: 0.6rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.messenger-btn:hover {
    transform: translateY(-2px);
}

.messenger-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #00a8e8);
    color: white;
}

.messenger-btn.viber {
    background: linear-gradient(135deg, #f959e9, #65057d);
    color: white;
}

.messenger-btn.instagram {
    background: linear-gradient(135deg, #f9f959, #ad1ed0);
    color: white;
}

.working-hours {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.schedule {
    margin-bottom: 1.5rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item:last-child {
    border-bottom: none;
}

.days {
    color: #ccc;
    font-weight: 500;
}

.time {
    color: #FAD532;
    font-weight: 600;
}

.round-the-clock {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(37, 211, 102, 0.1);
    padding: 1rem;
    border-radius: 8px;
    color: #25D366;
    font-weight: 600;
}

.round-the-clock i {
    font-size: 1.2rem;
}

.requisites-info {
    background: linear-gradient(135deg, #2a2a2a, #333);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.requisite-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requisite-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.requisite-label {
    color: #888;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.requisite-value {
    color: #ccc;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.availability-note {
    background: linear-gradient(135deg, #2a2a2a, #333);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.availability-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.availability-content i {
    font-size: 2.5rem;
    color: #FAD532;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.availability-content h4 {
    color: #FAD532;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.availability-content p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .working-hours {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .contacts-title {
        font-size: 2rem;
    }
    
    .contacts-subtitle {
        font-size: 1.1rem;
    }
    
    .contacts-content {
        padding: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .availability-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .messenger-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .requisites-info {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .requisite-item {
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contacts-section {
        padding: 2rem 0;
    }
    
    .contacts-title {
        font-size: 1.8rem;
    }
    
    .contacts-subtitle {
        font-size: 1rem;
    }
    
    .contact-methods h3,
    .working-hours h3,
    .requisites h3 {
        font-size: 1.3rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
    }
    
    .method-icon i {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
    
    .requisite-item {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
    
    .requisite-label {
        min-width: auto;
    }
}



/* modal quiz */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 50vw;
    max-height: 100vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FAD532, #ff9800);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    color: #FAD532;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 40px;
}

.quiz-content {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 70px;
    scrollbar-width: thin;
    scrollbar-color: #FAD532 rgba(255, 255, 255, 0.1);
}

.quiz-content::-webkit-scrollbar {
    width: 6px;
}

.quiz-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.quiz-content::-webkit-scrollbar-thumb {
    background: #FAD532;
    border-radius: 3px;
}

.quiz-page {
    display: none;
    animation: fadeIn 0.3s ease;
    overflow-y: hidden;
}

.quiz-page.active {
    display: block;
    overflow-y: hidden;
}

.quiz-page h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.4;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    margin-top: 1rem;
    overflow: hidden;
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FAD532;
    transform: translateY(-2px);
    overflow: hidden;
}

.quiz-option input[type="radio"],
.quiz-option input[type="checkbox"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #FAD532;
}

.quiz-option span {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
}

.results-content {
    text-align: center;
    justify-content: center
}

.results-content h2 {
    color: #FAD532;
    margin-bottom: 15px;
    user-select: none;
}

.results-description {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.5;
    user-select: none;
}

.recommended-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 25px 0;
    user-select: none;
}

.recommended-product {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.recommended-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #FAD532;
}

.product-image {
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.product-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-info p {
    margin: 4px 0;
    font-size: 0.85rem;
    color: #ccc;
}

.product-price {
    color: #FAD532 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin: 8px 0 !important;
}

.product-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FAD532, #ff9800);
    color: #333 !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.phone-section {
    margin-top: 25px;
    padding-top: 25px;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-section p {
    color: #ccc;
    margin-bottom: 15px;
    user-select: none;
}

.phone-input {
    margin-bottom: 20px;
    max-width: 15vw;
    margin: auto;
}

.phone-input input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.phone-input input:focus {
    outline: none;
    border-color: #FAD532;
    background: rgba(255, 255, 255, 0.1);
}

.phone-input input::placeholder {
    color: #888;
}

.send-button {
    width: 100%;
    max-width: 20vw;
    padding: 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    margin-top: 1rem;
    user-select: none;
}

.send-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.send-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.privacy-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    line-height: 1.4;
    user-select: none;
}

.quiz-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(transparent, #1a1a1a 50%);
    display: flex;
    justify-content: space-between;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.quiz-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.prev-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.prev-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.next-btn {
    background: linear-gradient(135deg, #FAD532, #ff9800);
    color: #333;
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.loading-spinner {
    text-align: center;
    padding: 40px 20px;
    color: #FAD532;
}

.loading-spinner .fa-spinner {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.loading-spinner p {
    color: #ccc;
    font-size: 1rem;
}

.no-products, .error-message {
    text-align: center;
    padding: 30px 20px;
    color: #ccc;
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .modal-container {
        padding: 20px;
        max-height: 95vh;
        margin: 10px;
        max-width: 80vw;
    }
    
    .quiz-page h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .quiz-option {
        padding: 14px 16px;
    }
    
    .quiz-option span {
        font-size: 0.95rem;
    }
    
    .recommended-products {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .recommended-product {
        padding: 15px;
    }
    
    .product-image {
        height: 80px;
    }
    
    .quiz-navigation {
        padding: 15px 20px;
    }
    
    .quiz-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-container {
        padding: 15px;
        border-radius: 15px;
    }
    
    .quiz-page h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .quiz-option {
        padding: 12px 14px;
    }
    
    .quiz-option span {
        font-size: 0.9rem;
    }
    
    .quiz-option input[type="radio"],
    .quiz-option input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 12px;
    }
    
    .quiz-navigation {
        padding: 12px 15px;
    }
    
    .quiz-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .phone-input {

        justify-content: center;
        text-align: center;
        align-items: center;
        margin: auto;
        min-width: 50vw;
    }
    
    .phone-input input {
        padding: 12px 16px;
        font-size: 0.95rem;
        min-width: 50vw;
        margin: auto;
        margin-right: 20rem;
    }
    
    .send-button {
        padding: 14px;
        font-size: 1rem;
        min-width: 50vw;
    }
}

.quiz-content {
    overflow-y: auto;
    max-height: calc(90vh - 150px);
}

.recommended-products {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

.recommended-products::-webkit-scrollbar {
    width: 4px;
}

.recommended-products::-webkit-scrollbar-thumb {
    background: #FAD532;
    border-radius: 2px;
}

/* return modal */

.return-modal {
    max-width: 40vw;
    max-height: 90vh;
}

.return-modal-content {
    text-align: center;
    padding: 1rem 0;
}

.return-modal-icon {
    font-size: 4rem;
    color: #FAD532;
    margin-bottom: 1rem;
    user-select: none;
}

.return-modal h2 {
    color: #FAD532;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    user-select: none;
}

.return-modal-text {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    user-select: none;
}

.return-modal-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group {
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #FAD532;
    background: rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: #888;
}

.return-modal-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FAD532, #ff9800);
    color: #333;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    user-select: none;
}

.return-modal-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.return-modal-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.return-modal-note {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
    user-select: none;
}

@media (max-width: 768px) {
    .return-modal {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .return-modal-icon {
        font-size: 3rem;
    }
    
    .return-modal h2 {
        font-size: 1.5rem;
    }
    
    .return-modal-text {
        font-size: 1rem;
    }
    
    .return-modal-button {
        padding: 16px;
        font-size: 1.1rem;
    }
}
