/* =============================================
   GLOBAL STYLES & RESET
   ============================================= */

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #f2f2f1;
    color: #1d1c1c;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== UTILITY CLASSES ===== */
.page-width {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== TYPOGRAPHY & FONTS ===== */
@font-face {
    font-family: 'PT Sans';
    src: url('fonts/PTSans-Regular.woff2') format('woff2'),
         url('fonts/PTSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Sans';
    src: url('fonts/PTSans-Bold.woff2') format('woff2'),
         url('fonts/PTSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


        .admin-panel {
            background: #f8f9fa;
            padding: 20px;
            margin: 20px 0;
            border-radius: 10px;
            border: 2px solid #c5d6b8;
        }
        .admin-panel h2 {
          color: black;
        }
        .admin-form {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .admin-form input, .admin-form textarea {
            width: 100%;
            padding: 10px;
            margin: 5px 0;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .admin-btn {
            background: #c5d6b8;
            color: #333;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin: 5px;
        }
        .admin-btn.delete {
            background: rgb(194 116 144) ;
            color: white;
        }
        .admin-btn:hover {
            opacity: 0.8;
        }
        .product-actions {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        
        .message-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            max-width: 400px;
        }
        .alert {
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            animation: slideIn 0.3s ease-out;
        }
        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }




        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #333;
            color: white;
            padding: 15px;
            z-index: 10000;
            display: none;
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        
        .cookie-content p {
            margin: 0;
            flex: 1;
        }
        
        .cookie-content a {
            color: #c27490;
            text-decoration: underline;
        }
        
        .cookie-btn {
            background: #c27490;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .cookie-btn:hover {
            background: #a85c7a;
        }
        
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }




           
        .blocked-message {
            background: #ffebee;
            border: 1px solid #f44336;
            color: #c62828;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: bold;
        }
        .attempts-warning {
            background: #fff3e0;
            border: 1px solid #ff9800;
            color: #e65100;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
            text-align: center;
        }
        .form-disabled {
            opacity: 0.6;
            pointer-events: none;
        }

/* =============================================
   LAYOUT COMPONENTS
   ============================================= */
/* ===== PROMO BANNER ===== */
/* ===== PROMO BANNER ===== */
.promo-banner {
    background-color: #222222;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 350;
    letter-spacing: 1px;
    font-size: 0.6rem;
    padding: 6px 0;
    margin: 0;
}

.promo-banner p {
    margin: 0;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: linear-gradient(135deg, rgb(194 116 144) 0%, #c5d6b8 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 0 15px 15px;
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

header .logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    flex-grow: 1;
}

header .logo a {
    color: white;
    text-decoration: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    transition: 0.3s;
    font-weight: 500;
    white-space: nowrap;
}

.desktop-nav ul li a:hover {
    background: rgb(194 116 144);
}

/* Cart styles */
.cart-count-bubble {
    background: rgb(194 116 144);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    font-weight: bold;
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-cart-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-cart-link:hover {
    background: rgb(194 116 144);
}

/* Кнопка меню */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
    transform-origin: center;
    width: 100%;
}

/* Burger menu animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay Menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.98);
    z-index: 1000;
}

.nav-overlay.active {
    display: block;
}

.nav-overlay-content {
    background: #0e0e0e;
    height: 100%;
    width: 300px;
    max-width: 90%;
    position: absolute;
    right: 0;
    overflow-y: auto;
}

.nav-overlay-header {
    background: rgba(194, 116, 144, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.nav-overlay-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-menu {
    background: none;
    border: none;
    color: rgba(194, 116, 144, 0.1);
    font-size: 0.1rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-overlay-links {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.nav-overlay-links li {
    margin: 0;
}

.nav-overlay-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 25px;
    display: block;
    transition: 0.3s;
}

.nav-overlay-links a:hover {
    color: rgb(194 116 144);
    background: rgba(194, 116, 144, 0.1);
}

.mobile-cart-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Media Queries */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    header .logo {
        font-size: 1.6rem;
        text-align: left;
        flex-grow: 0;
    }
}


/* ===== SECTIONS ===== */
section {
    padding: clamp(1rem, 4vw, 3.75rem);
    margin: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

section h2 {
    text-align: center;
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
}

section h3 {
    font-weight: 600;
}

section p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #c27490 0%, #c5d6b8 100%);
    padding: 30px 20px;
    text-align: left;
    color: #ffffff;
    border-radius: 15px 15px 0 0;
}

footer h2 {
    font-weight: 700;
}

/* =============================================
   PAGE SECTIONS
   ============================================= */

/* ===== ABOUT SECTION ===== */
#about {
    position: relative;
    color: #fff;
    padding: 60px 20px;
    border-radius: 10px;
    overflow: hidden;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('image/f3.jpg') center/cover no-repeat;
    z-index: 0;
    border-radius: 10px;
}

#about > * {
    position: relative;
    z-index: 1;
}
/* ===== Слайдер (Bouquets) ===== */
.slider-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.slider {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding: 10px;
}

.slider-item {
    position: relative;
    flex: 0 0 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    overflow: hidden;
    scroll-snap-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.slider-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.slider-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* ===== Прозрачный оверлей при наведении ===== */
.slider-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.slider-item:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.overlay .desc {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.overlay .price {
    font-weight: bold;
    margin-bottom: 15px;
}

.overlay .quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.overlay .quantity input {
    width: 60px;
    padding: 5px;
    border-radius: 5px;
    border: none;
    text-align: center;
}

/* ===== Кнопки (в стиле личного кабинета) ===== */
.overlay .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.overlay .btn {
    background: transparent;
    border: 2px solid #f2f2f1;
    color: #f2f2f1;
    padding: 5px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.overlay .btn:hover {
    background-color: #f2f2f1;
    color: #141414;
}

/* ===== Сообщение если букетов нет ===== */
.no-products {
    color: #555;
    font-size: 1.2rem;
    text-align: center;
    margin: 40px auto;
}
/* ===== FULLSCREEN CONTAINER ===== */
.fullscreen-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-container .auth-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== AUTHENTICATION FORMS ===== */

/* Fullscreen Auth Form */
.auth-form-fullscreen {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(3, 3, 3, 0.5), rgba(17, 17, 17, 0.5)), url('image/f12.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.auth-fullscreen-container {
    max-width: 500px;
    width: 90%;
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.auth-form-fullscreen .auth-form-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.auth-form-fullscreen h2 {
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
    font-size: 2.5rem;
 
}

.auth-form-fullscreen .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.auth-form-fullscreen .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.auth-form-fullscreen .form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    outline: none;
    transition: all 0.3s ease;
}

.auth-form-fullscreen .form-group input:focus {
    border-color: rgb(194 116 144);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(194, 116, 144, 0.2);
}

.auth-form-fullscreen .auth-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Register Page Styles */

.validation-status {
    font-size: 12px;
    margin-top: 5px;
    padding: 3px 0;
}

.status-checking {
    color: #666;
}

.status-success {
    color: #c5d6b8;
    font-weight: 500;
}

.status-error {
    color: rgb(194 116 144);
    font-weight: 500;
}

.form-group {
    position: relative;
}

.register-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.register-btn:disabled:hover {
    background-color: #ccc;
}



.register-page {
    background: linear-gradient(rgba(3, 3, 3, 0.6), rgba(17, 17, 17, 0.6)), url('image/f12.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.register-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.register-form-wrapper {
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    background: #5f645c;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.register-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(194 116 144), #c5d6b8);
}

.register-form-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.form-errors {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.form-errors p {
    margin: 8px 0;
    color: #ffebee;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    border-color: rgb(194 116 144);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(194, 116, 144, 0.25);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #999;
}



.auth-buttons p {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.auth-buttons a {
    color: rgb(194 116 144);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-buttons a:hover {
    color: #c5d6b8;
    text-decoration: underline;
}

.register-btn {
    text-align: center;
}
/* Адаптивность */
@media (max-width: 768px) {
    .register-container {
        padding: 20px 15px;
    }
    
    .register-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 20px 0;
    }
    
    .register-form-wrapper h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group input {
        padding: 12px 14px;
    }
    
    .register-btn {
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .register-form-wrapper {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .register-form-wrapper h2 {
        font-size: 1.6rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}
/* ===== DELIVERY SECTION ===== */
#otz {
    background: linear-gradient(15deg, rgb(194 116 144) 0%, #c5d6b8 100%);
    padding: 30px 20px;
    margin: 20px;
    border-radius: 12px;
    color: #1d1c1c;
    text-align: left;
    max-width: 600px;
}

#otz h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
}

#otz p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* =============================================
   CATALOG PAGE STYLES
   ============================================= */


        /* Category Filter */
        #catalog-page .category-filter {
            margin-bottom: 40px;
            padding: 0 20px;
            font-family: 'Inter', sans-serif;
        }

        #catalog-page .bbb {
            text-align: center;
            margin: 15px;
        }

        #catalog-page .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
            padding: 0;
            margin: 0;
            justify-content: center;
        }

        #catalog-page .category-list li a {
            display: block;
            color: #151515;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease, border-bottom 0.3s ease;
            font-size: 15px;
            border-bottom: 2px solid transparent;
            padding: 8px 5px;
        }

        #catalog-page .category-list li a:hover,
        #catalog-page .category-list li.active a {
            color: #c27492;
            border-bottom: 2px solid #c27492;
        }

        /* Category Section */
        #catalog-page .category-section {
            margin-bottom: 50px;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
        }

    #catalog-page h1 {
    
        text-align: center;
    }

        #catalog-page .category-section h2 {
            margin-bottom: 10px;
            font-size: 1.8rem;
            color: #2d2d2d;
            text-align: center;
            font-weight: 600;
        }

        #catalog-page .category-section h6 {
            margin-bottom: 10px;
            font-size: 1.1rem;
            color: #2d2d2d;
            text-align: center;
            font-weight: 600;
        }


        #catalog-page .category-section p {
            font-size: 1rem;
            text-align: center;
            color: #f1f1f1;
            max-width: 700px;
            margin: 0 auto 25px;
        }

        /* Slider Styles */
        #catalog-page .slider-wrapper {
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 15px 0;
            margin: 0 -10px;
        }

        #catalog-page .slider-container {
            display: flex;
            gap: 20px;
            scroll-snap-type: x mandatory;
            padding: 10px;
        }

        /* Product Cards - Unified Style */
        #catalog-page .product-item {
            position: relative;
            flex: 0 0 300px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,.08);
            overflow: hidden;
            scroll-snap-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        #catalog-page .product-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0,0,0,.18);
        }

        #catalog-page .product-item img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
            border-radius: 12px;
        }

        /* Overlay Styles */
        #catalog-page .product-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
            z-index: 2;
        }

        #catalog-page .product-item:hover .product-overlay {
            opacity: 1;
            visibility: visible;
        }

        #catalog-page .product-overlay h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        #catalog-page .product-overlay .desc {
            font-size: 0.95rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        #catalog-page .product-overlay .price {
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.2rem;
            color: #c5d6b8;
        }

        #catalog-page .product-overlay .quantity {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        #catalog-page .product-overlay .quantity input {
            width: 60px;
            padding: 5px;
            border-radius: 5px;
            border: none;
            text-align: center;
        }

        /* Buttons */
        #catalog-page .product-overlay .actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        #catalog-page .product-overlay .btn {
            background: transparent;
            border: 2px solid #f2f2f1;
            color: #f2f2f1;
            padding: 8px 20px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            text-decoration: none;
        }

        #catalog-page .product-overlay .btn:hover {
            background-color: #f2f2f1;
            color: #141414;
        }

        /* Assembly Grid */
        #catalog-page .assembly-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        #catalog-page .assembly-item {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        #catalog-page .assembly-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0,0,0,.18);
        }

        #catalog-page .assembly-item .image-wrapper {
            position: relative;
            overflow: hidden;
        }

        #catalog-page .assembly-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        #catalog-page .assembly-item .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
        }

        #catalog-page .assembly-item:hover .overlay {
            opacity: 1;
            visibility: visible;
        }

        #catalog-page .assembly-item .product-name {
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        #catalog-page .assembly-item .overlay-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        #catalog-page .assembly-item .quantity-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 12px;
            border-radius: 8px;
        }

        #catalog-page .assembly-item .quantity-controls button {
            background: transparent;
            border: 1px solid #f2f2f1;
            color: #f2f2f1;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        #catalog-page .assembly-item .quantity-controls button:hover {
            background: #f2f2f1;
            color: #141414;
        }

        #catalog-page .assembly-item .quantity {
            color: #f2f2f1;
            font-weight: 600;
            min-width: 30px;
            text-align: center;
        }

        #catalog-page .assembly-item .add-btn {
            background: transparent;
            border: 2px solid #f2f2f1;
            color: #f2f2f1;
            padding: 8px 20px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }

        #catalog-page .assembly-item .add-btn:hover {
            background-color: #f2f2f1;
            color: #141414;
        }

        #catalog-page .no-products {
            text-align: center;
            padding: 40px;
            color: #666;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Hide old navigation buttons */
        #catalog-page .slider-nav {
            display: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #catalog-page .category-filter {
                padding: 0 15px;
            }
            
            #catalog-page .category-list {
                gap: 10px;
            }
            
            #catalog-page .category-list li a {
                font-size: 14px;
                padding: 6px 4px;
            }
            
            #catalog-page .category-section {
                padding: 20px 15px;
                margin-bottom: 30px;
            }
            
            #catalog-page .category-section h2 {
                font-size: 1.5rem;
            }
            
            #catalog-page .product-item {
                flex: 0 0 280px;
            }
            
            #catalog-page .product-item img {
                height: 320px;
            }
            
            #catalog-page .assembly-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            #catalog-page .product-item {
                flex: 0 0 260px;
            }
            
            #catalog-page .product-item img {
                height: 280px;
            }
            
            #catalog-page .assembly-grid {
                grid-template-columns: 1fr;
            }
        }
   

/* =============================================
   ASSEMBLY SECTION
   ============================================= */
#assembly-section {
    margin-top: 60px;
    color: #c5d6b8;
}

.assembly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 25px;
    justify-items: center;
}

.assembly-item {
    position: relative;
    width: 230px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1b1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.assembly-item:hover {
    transform: translateY(-6px);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 27, 26, 0.8);
    color: #c5d6b8;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    text-align: center;
}

.assembly-item:hover .overlay {
    opacity: 1;
}

.overlay h3.product-name {
    font-size: 1.1rem;
    color: rgb(194 116 144);
    margin-bottom: 15px;
}

.overlay-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity {
    min-width: 24px;
    text-align: center;
    font-weight: bold;
    color: #282828;
}

/* =============================================
   CART STYLES
   ============================================= */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    color: #202020;
}

.cart-table th, .cart-table td {
    border-bottom: 1px solid rgb(194 116 144);
    padding: 12px;
    text-align: center;
}

.cart-table img {
    border-radius: 10px;
}

.cart-total {
    margin-top: 25px;
    text-align: right;
}

.remove-btn {
    color: #1f1f1f;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: rgb(194 116 144);
}

.quantity-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* =============================================
   USER PROFILE STYLES (Личный кабинет)
   ============================================= */
/* ==========================
   Личный кабинет (lich-page)
   ========================== */

/* Основной фон страницы */

body.lich-page {
    background-image: url('/image/f22.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    position: relative;
    display: flex;
    flex-direction: column; /* чтобы хедер и футер оставались */
}

/* Контейнер для формы — центрируем по вертикали и горизонтали */
.lich-page .auth-container {
    flex: 1; /* занимает всё пространство между хедером и футером */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
/* Основной блок профиля (прозрачный фон, стеклянный эффект) */
.lich-page .auth-form {
    background: rgba(255, 255, 255, 0.15); /* прозрачный белый */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 40px 30px;
    text-align: center;
}

/* Заголовок */
.lich-page h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #ededed;
    font-size: 28px;
    font-weight: 600;
}

/* Информация профиля */
.lich-page .profile-info {
    background: rgba(255, 255, 255, 0.25);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.4);
}

/* Поля профиля */
.lich-page .profile-field {
    margin: 18px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Кнопки профиля — равные отступы и адаптивность */
.lich-page .profile-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* расстояние между кнопками */
}

.lich-page .profile-actions .btn {
    background: transparent;
    border: 2px solid #f2f2f1;
    color: #f2f2f1;
    padding: 5px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.lich-page .profile-actions .btn:hover {
    background-color: #f2f2f1;
    color: #141414;
}

/* ==========================
   Адаптивность
   ========================== */
@media (max-width: 768px) {

.lich-page .auth-container{
        justify-content: center;
    align-items: center;
}

    .lich-page .auth-form {
        padding: 30px 20px;
        max-width: 90%;
    }

    .lich-page .profile-actions {
        flex-direction: column;
        gap: 10px;
    }

    .lich-page h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {

.lich-page .auth-container{
        justify-content: center;
    align-items: center;
} 
    .lich-page .auth-form {
        padding: 25px 15px;
    }

    .lich-page .profile-info {
        padding: 20px 15px;
    }

    .lich-page .profile-actions .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}


/* =============================================
   UI COMPONENTS
   ============================================= */

/* ===== BUTTONS ===== */
.catalog-btn,
.register-btn,
.login-btn,
.checkout-btn,
.add-btn,
#catalog-page .more-btn,
.quantity-controls button {
    background: transparent;
    border: 2px solid #f2f2f1;
    color: #f2f2f1;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.catalog-btn:hover,
.register-btn:hover,
.login-btn:hover,
.checkout-btn:hover,
.add-btn:hover,

#catalog-page .more-btn:hover,
.quantity-controls button:hover {
    background-color: #f2f2f1;
    color: #141414;
}

/* Button variations */
.quantity-controls button {
    padding: 8px 12px;
    font-size: 16px;
    width: auto;
}


/* Error Section */
.error .error-section {
    padding: 4rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    margin: 2rem auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(29, 28, 28, 0.1);
    max-width: 900px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 214, 184, 0.3);
}

.error .error-code {
    font-size: 8rem;
    font-weight: bold;
    background: linear-gradient(135deg, rgb(194, 116, 144), #c5d6b8);
   
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(29, 28, 28, 0.1);
}

.error .error-title {
    font-size: 2rem;
    color: #1d1c1c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.error .error-message {
    font-size: 1.2rem;
    color: #1d1c1c;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.8;
}

.error .action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.error .btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgb(194, 116, 144), #c5d6b8);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(194, 116, 144, 0.3);
    font-size: 1rem;
}

.error .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 116, 144, 0.4);
    background: linear-gradient(135deg, #c5d6b8, rgb(194, 116, 144));
    color: #1d1c1c;
}



.error .btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(194, 116, 144, 0.4);
    background: linear-gradient(135deg, rgb(194, 116, 144), #c5d6b8);
    color: #fff;
}
   


@media (max-width: 768px) {
    .error .error-code {
        font-size: 6rem;
    }

    .error .error-title {
        font-size: 1.75rem;
    }

    .error .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .error .btn {
        width: 220px;
        padding: 12px 24px;
    }

   

    .error .error-section
     {
        margin: 1rem;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .error .flowers-grid {
        grid-template-columns: 1fr;
    }
    
    .error .error-section {
        margin: 0.5rem;
        padding: 1.5rem 0.5rem;
    }
    
    .error .error-code {
        font-size: 5rem;
    }
    
  
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error .error-section {
    animation: fadeInUp 0.6s ease-out;
}


.error .flower-item {
    animation: fadeInUp 0.6s ease-out;
}

/* =============================================
   ANIMATIONS & EFFECTS
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* ===== LARGE SCREENS (≥1000px) ===== */
@media (min-width: 1000px) {
    .nav-overlay {
        display: none !important;
    }

    .desktop-nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .close-menu {
        display: none !important;
    }
}

/* ===== TABLETS (≤1000px) ===== */
@media (max-width: 1000px) {
    .jewelry-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        margin: 10px;
        padding: 40px 15px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        cursor: pointer;
    }

    .header-inner {
        justify-content: space-between;
        align-items: center;
    }

    header .logo {
        flex-grow: 0;
        margin: 0;
    }

    /* Catalog adjustments */
    #catalog-page .jewelry-item {
        flex: 0 0 350px;
        height: 500px;
    }
    
    #catalog-page .jewelry-info {
        height: 167px;
        padding: 20px 25px;
    }
    
    #catalog-page .slider-nav {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    #catalog-page .jewelry-info h3 {
        font-size: 1.4rem;
    }
    
    #catalog-page .jewelry-info .price {
        font-size: 1.6rem;
    }
}

/* ===== SMALL TABLETS (≤768px) ===== */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

 

    
    .register-page .auth-container {
        padding: 1.5rem;
        max-width: 90%;
    }

    /* Button adjustments */
    .catalog-btn,
    .register-btn,
    .login-btn,
    .checkout-btn,
    .add-btn,
    .lich-page .profile-actions .btn,
    #catalog-page .more-btn,
    .quantity-controls button {
        padding: 12px 20px;
        font-size: 16px;
    }

    /* Fullscreen auth form */
    .auth-form-fullscreen {
        height: 100vh;
        padding: 20px;
    }
    
    .auth-fullscreen-container {
        padding: 2rem;
        width: 95%;
    }
    
    .auth-form-fullscreen h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .auth-form-fullscreen .form-group input {
        padding: 0.8rem;
    }

    /* Catalog adjustments */
    #catalog-page .container1 {
        padding: 15px;
    }
    

     #catalog-page .container1 h1{
       text-align: center;
    }
    #catalog-page h1 {
        font-size: 2.2rem;
        margin-bottom: 40px;
        text-align: center;
    }
    
    #catalog-page .category-section {
        padding: 30px;
        margin-bottom: 60px;
    }
    
    #catalog-page .category-section h2 {
        font-size: 2rem;
    }
    
    #catalog-page .category-section p {
        font-size: 1.1rem;
    }
    
    #catalog-page .jewelry-item {
        flex: 0 0 320px;
        height: 450px;
    }
    
    #catalog-page .jewelry-info {
        height: 150px;
        padding: 18px 20px;
    }
    
    #catalog-page .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    #catalog-page .slider-nav.prev {
        left: 10px;
    }
    
    #catalog-page .slider-nav.next {
        right: 10px;
    }
    
    #catalog-page .jewelry-info h3 {
        font-size: 1.3rem;
    }
    
    #catalog-page .jewelry-info .price {
        font-size: 1.4rem;
    }
    
    #catalog-page .jewelry-info .composition {
        font-size: 0.9rem;
    }

    /* Category filter adjustments */
    #catalog-page .category-filter {
        padding: 0 20px;
        justify-content: center;
    }
}

/* ===== MOBILE (≤480px) ===== */
@media (max-width: 480px) {
    /* Header adjustments */
    header {
        padding: 0.8rem 1rem;
    }

    header .logo {
        font-size: 1.7rem;
    }

    .nav-overlay ul li a {
        font-size: 1.3rem;
    }

    .nav-overlay ul li {
        margin: 20px 0;
    }

    /* Layout adjustments */
    .jewelry-gallery {
        grid-template-columns: 1fr;
    }

    .slider-item {
        flex: 0 0 85%;
    }

    .slider-item img {
        aspect-ratio: 2 / 3;
    }

    .item-info {
        padding: 8px;
    }

    .item-info h3 {
        font-size: 0.9rem;
    }

    .item-info p {
        font-size: 0.85rem;
    }

    section {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 0.75rem;
    }

    section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    section p {
        font-size: 0.95rem;
    }

    /* Button adjustments */
    .catalog-btn,
    .register-btn,
    .login-btn,
    .checkout-btn,
    .add-btn,
    .lich-page .profile-actions .btn,
    #catalog-page .more-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .auth-buttons {
        gap: 10px;
        margin-top: 1rem;
    }

    /* Fullscreen auth form */
    .auth-form-fullscreen {
        height: 100vh;
        padding: 10px;
    }
    
    .auth-fullscreen-container {
        padding: 1.5rem;
    }
    
    .auth-form-fullscreen h2 {
        font-size: 1.8rem;
    }
    
    .auth-form-fullscreen .auth-buttons {
        gap: 10px;
    }

    /* Personal account */
    .lich-page .auth-container {
        padding: 20px 10px;
    }

    .lich-page .auth-form {
        padding: 15px;
        border-radius: 10px;
    }

    .lich-page h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .lich-page .profile-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .lich-page .profile-info p {
        font-size: 14px;
        margin: 8px 0;
    }

    .lich-page .profile-actions {
        flex-direction: column;
        gap: 8px;
    }

    .lich-page .profile-actions .btn {
        flex: 100%;
        padding: 10px 0;
        font-size: 14px;
    }

    .lich-page .message.success {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Delivery section */
    #otz {
        padding: 20px 15px;
        margin: 15px 10px;
        max-width: 100%;
        font-size: 14px;
    }

    #otz h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    #otz p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    /* Catalog adjustments */
    #catalog-page .container1 {
        padding: 10px;
    }

    #catalog-page h1 {
        font-size: 1.8rem;
        margin-left: 15px;
    }

    #catalog-page .category-filter {
        margin-left: 15px;
    }

    #catalog-page .slider-container {
        gap: 18px;
    }

    #catalog-page .jewelry-item {
        flex: 0 0 240px;
        height: 380px;
    }

    #catalog-page .jewelry-info {
        height: 120px;
        padding: 12px 15px;
    }

    #catalog-page .category-section {
        padding: 20px;
        margin-bottom: 40px;
    }

    #catalog-page .jewelry-info h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    #catalog-page .jewelry-info .price {
        font-size: 1.2rem;
        margin: 5px 0;
    }

    #catalog-page .jewelry-info .composition {
        font-size: 0.8rem;
        margin: 3px 0;
    }

    /* Category list adjustments */
    #catalog-page .category-list {
        justify-content: center;
        gap: 10px;
    }

    #catalog-page .category-list li a {
        font-size: 14px;
    }
}

/* ===== VERY SMALL SCREENS (≤360px) ===== */
@media (max-width: 360px) {
    .slider {
        gap: 15px;
    }

    .slider-item {
        min-width: 220px;
        border-radius: 12px;
    }

    .slider-item img {
        height: 180px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .item-info {
        padding: 10px;
        text-align: center;
    }

    .item-info h3 {
        font-size: 1rem;
        margin: 8px 0 5px 0;
    }

    .item-info p {
        font-size: 0.95rem;
    }

    /* Button adjustments */
    .catalog-btn,
    .register-btn,
    .login-btn,
    .checkout-btn,
    .add-btn,
    .lich-page .profile-actions .btn,
    #catalog-page .more-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ===== ADDITIONAL BREAKPOINTS ===== */
@media (max-width: 1200px) {
    #catalog-page .category-filter {
        padding: 0 30px;
    }

    #catalog-page .container1 {
        padding: 0 40px;
    }

    #catalog-page .jewelry-item {
        flex: 0 0 400px;
        height: 520px;
    }

    #catalog-page .jewelry-info {
        padding: 25px 30px;
    }

    #catalog-page .jewelry-info h3 {
        font-size: 1.4rem;
    }

    #catalog-page .jewelry-info .price {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    #catalog-page .slider-container {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    #catalog-page .jewelry-item {
        flex: 0 0 360px;
        height: 480px;
    }

    #catalog-page .jewelry-info {
        padding: 22px 28px;
    }

    #catalog-page .jewelry-info h3 {
        font-size: 1.3rem;
    }

    #catalog-page .jewelry-info .price {
        font-size: 1.2rem;
    }

    #catalog-page .more-btn {
        font-size: 14px;
        padding: 9px 0;
    }
}