* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: rgb(253,242,242);
    color: #1d1d1f;
    line-height: 1.4;
}

.top-nav {
    border-bottom: 1px solid #b4b2b2a2;
    background: rgb(253,242,242);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-left {
    flex: 0 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Исправленный бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: #b33b3b;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Исправленная правая часть навигации */
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #b33b3b;
}

.cart-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.cart-link:hover {
    color: #b33b3b;
}

.cart-badge {
    background: #b33b3b;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 900px) {
    .burger-menu {
        display: flex !important;
    }
    
    .nav-left {
        order: 1;
    }
    
    .nav-menu {
        order: 2;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgb(253,242,242);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 100;
        padding: 80px 20px 30px;
        overflow-y: auto;
        display: block;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-right {
        order: 3;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
        border-bottom: 1px solid #f0e0d6;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 90;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
    }
    
    .contacts-container {
        padding: 30px 20px;
    }
    
    .contacts-map {
        height: 400px;
    }
}

/* Остальные стили остаются без изменений */
.hero-section {
    background: rgb(253,242,242);
    padding: 0 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 50px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2c2c2c;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-btn {
    display: inline-block;
    background: #b33b3b;
    color: white;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-btn:hover {
    background: #8f2f2f;
}

.hero-image {
    flex: 1.5;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    max-height: 720px;
    height: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.features-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.features-section h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c2c2c;
    text-align: center;
}

.features-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 10px;
}

.feature-card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 32px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-icon {
    font-size: 32px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.feature-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.products-section {
    width: 100%;
    background-color: #db646c;
    padding: 60px 0;
    margin: 60px 0;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-container h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image-slider {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-images img.active {
    opacity: 1;
    z-index: 1;
}

.product-image-slider .slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.product-image-slider .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.product-image-slider .dot.active {
    background: white;
    transform: scale(1.2);
}

.product-info {
    padding: 24px 20px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.product-desc {
    font-size: 14px;
    color: #6e6e6e;
    margin-bottom: 20px;
    line-height: 1.5;
    flex: 1;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #b33b3b;
    margin-bottom: 20px;
}

.product-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: auto;
}

.product-link {
    color: #b33b3b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.product-link:hover {
    border-bottom-color: #b33b3b;
}

.buy-btn {
    background: #b33b3b;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.buy-btn:hover {
    background: #8f2f2f;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
    height: 100%;
}

.product-card-link:hover {
    transform: translateY(-5px);
}

.custom-set-image {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: #faf3ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #b33b3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: 300;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 2;
    pointer-events: none;
}

.custom-set-card:hover .plus-circle {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #8f2f2f;
}

.order-info-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.order-info-container {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e0d6;
}

.order-info-container h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.order-info-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0e0d6;
}

.step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #b33b3b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.reviews-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.reviews-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #2c2c2c;
}

.reviews-slider {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.review-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.review-slide.active {
    display: block;
}

.review-bg-image {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.review-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.reviewer-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.reviewer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.review-text p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.reviews-slider .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.reviews-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.reviews-slider .dot.active {
    background: white;
    transform: scale(1.2);
}

.reviews-footer {
    text-align: center;
    margin-top: 30px;
}

.add-review-btn {
    background: #b33b3b;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(179, 59, 59, 0.3);
}

.add-review-btn:hover {
    background: #8f2f2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(179, 59, 59, 0.4);
}

.contacts-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.contacts-container {
    background: white;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e0d6;
}

.contacts-container h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
}

.contacts-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.contact-phone {
    background: #f9f5f0;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 1px solid #f0e0d6;
}

.phone-number {
    font-size: 32px;
    font-weight: 700;
    color: #b33b3b;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.telegram-link {
    display: inline-block;
    background: #0088cc;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 40px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #b33b3b;
}

.contact-form textarea.form-control {
    border-radius: 20px;
    resize: vertical;
    min-height: 100px;
}

.submit-contact-btn {
    background: #b33b3b;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.submit-contact-btn:hover {
    background: #8f2f2f;
}

.privacy-text {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

.contacts-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contacts-map iframe {
    display: block;
    width: 100%;
    flex: 1;
    min-height: 0;
    border: none;
}

.map-address {
    background: #f9f5f0;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-top: 1px solid #f0e0d6;
    flex-shrink: 0;
}

.footer-minimal {
    border-top: 1px solid #b4b2b2a2;
    padding: 20px 0;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
}

.footer-minimal .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-minimal .copyright {
    color: #666;
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(253,242,242);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    animation: preloaderSpin 2s linear infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@keyframes preloaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.review-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.review-modal.show {
    display: flex;
}

.review-modal-content {
    background: white;
    border-radius: 30px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #b33b3b;
}

.review-modal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.review-modal-content .form-group {
    margin-bottom: 20px;
}

.review-modal-content label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.review-modal-content .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 40px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.review-modal-content textarea.form-control {
    border-radius: 20px;
    resize: vertical;
}

.submit-review-btn {
    background: #b33b3b;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    margin-top: 10px;
}

.submit-review-btn:hover {
    background: #8f2f2f;
}

@media (max-width: 1000px) {
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .order-info-container {
        padding: 30px 20px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .plus-circle {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .contacts-container h2 {
        font-size: 28px;
    }
    
    .contacts-subtitle {
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .footer-minimal .copyright {
        font-size: 12px;
    }
    
    .preloader-logo {
        width: 120px;
        height: 120px;
    }
    
    .review-modal-content {
        padding: 30px 20px;
    }
}

.custom-alert {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.custom-alert.show {
    display: flex;
}

.custom-alert-content {
    background: white;
    border-radius: 30px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
}

.custom-alert-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.custom-alert-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.custom-alert-btn {
    background: #b33b3b;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    min-width: 120px;
}

.custom-alert-btn:hover {
    background: #8f2f2f;
}

.custom-alert-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.custom-alert-close:hover {
    color: #b33b3b;
}
/* Стили для отображения цены и количества */
.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #b33b3b;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.product-quantity {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-top: 4px;
}

.product-card-link .product-price {
    display: block;
}

@media (max-width: 600px) {
    .product-price {
        font-size: 22px;
    }
    
    .product-quantity {
        font-size: 13px;
    }
}

.phone-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.phone-link:hover {
    opacity: 0.8;
}

.phone-link:hover .phone-number {
    color: #8f2f2f;
}

.form-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 242, 242, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-preloader.show {
    opacity: 1;
    visibility: visible;
}

.form-preloader-content {
    text-align: center;
    max-width: 300px;
    padding: 30px;
}

.form-preloader-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    animation: formPreloaderSpin 1.5s linear infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

@keyframes formPreloaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-preloader-text {
    font-size: 18px;
    font-weight: 600;
    color: #b33b3b;
    margin-top: 15px;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.product-card-link-full {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.product-card-link-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card-link-full .product-card {
    height: 100%;
    transition: none;
    border: 1px solid #f0f0f0;
}

.product-card-link-full .product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-card-link-full .buy-btn {
    position: relative;
    z-index: 10;
}

.product-card-link-full .slider-dots .dot {
    position: relative;
    z-index: 10;
}