/* Gallery and fancybox styles moved to HTML head */

/* Disable zoom on iOS devices */
@supports (-webkit-touch-callout: none) {
    html {
        -webkit-text-size-adjust: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        touch-action: manipulation;
    }
    
    input, textarea, select {
        -webkit-user-select: auto;
        user-select: auto;
    }
    
    * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    input, textarea, select, a, button {
        -webkit-user-select: auto;
        user-select: auto;
    }
}

/* Global styles for em elements - iOS italic fix */
em {
    font-style: italic;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* iOS Safari italic fix */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    @supports (-webkit-touch-callout: none) {
        em {
            font-style: normal !important;
            transform: skewX(-12deg) !important;
            font-weight: 400 !important;
            display: inline-block !important;
            -webkit-transform: skewX(-12deg) !important;
        }
    }
}

/* Product card link styles */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-card .old-price {
    font-size: 0.8125rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
    display: inline;
}

/* Categories Section Styles */
.categories-section {
    margin: 2rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.category-card {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(76, 175, 80, 0.1);
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.category-image {
    width: 100%;
    height: 14rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(33, 150, 243, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image::before {
    opacity: 1;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-card:hover .category-title {
    color: var(--bg-color);
}

.category-card:hover .category-description {
    color: #495057;
}

.category-info {
    padding: 2rem;
    background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
    position: relative;
}

.category-info::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-color), transparent);
    opacity: 0.1;
    border-radius: 0 0 0 60px;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-info::after {
    opacity: 0.2;
}

.category-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    padding: 15px 1.5rem;
    border-radius: 0.3750rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.category-link:hover {
    background: var(--primary-brown);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-0.0625rem);
}

.category-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.category-link:hover::after {
    transform: translateX(3px);
}

.products-section {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
        margin-top: 2rem;
    }
    
    .category-card {
        margin-bottom: 0;
    }
    
    .category-image {
        height: 12rem;
    }
    
    .category-info {
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .category-description {
        font-size: 0.9375rem;
    }
    
    .category-info::after {
        width: 40px;
        height: 40px;
        border-radius: 0 0 0 40px;
    }
}

/* Category Pages Styles */
.category-page {
    margin: 2rem 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 0.0625rem solid #e0e0e0;
}

.category-header .category-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-header .category-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.6;
}

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

.product-card {
    background: var(--white);
    border-radius: 0.7500rem;
    box-shadow: 0 0.2500rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 0.0625rem solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5000rem 1.5625rem rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 12.5000rem;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.spec {
    font-size: 0.875rem;
    color: #888;
    background: #f8f8f8;
    padding: 0.25rem 0.5rem;
    border-radius: 0.2500rem;
    border-left: 3px solid var(--primary-peach);
}

.product-bottom {
    display: block;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.product-bottom .add-to-cart-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Общие стили для всех product-info независимо от контекста */
.product-card .product-info {
    padding: 1.5rem 1.5rem 0 1.5rem !important;
}

.product-card .product-bottom {
    padding: 0 1.5rem 1.5rem 1.5rem !important;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-brown);
    text-align: left !important;
    justify-content: flex-start !important;
}

.add-to-cart-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.9375rem 1.5rem;
    border-radius: 0.3750rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.add-to-cart-btn:hover {
    background: var(--primary-brown);
}

.category-info-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 0.0625rem solid #e0e0e0;
}

.category-info-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.6250rem, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 0.5000rem;
}

.info-item h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .category-header .category-title {
        font-size: 2rem;
    }
    
    .category-header .category-description {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-bottom .add-to-cart-btn {
        margin-top: 1rem;
    }
    
    .add-to-cart-btn {
        width: 100%;
        text-align: center;
    }
}

/* Corporate Color Variables */
:root {
    --primary-blue: #0A2647;     /* темно-синий */
    --primary-brown: #3F2E37;    /* темно-коричневый */
    --primary-gray: #21212D;     /* темно-серый */
    --primary-peach: #FFCF9D;    /* светло-персиковый */
    --white: #ffffff;
    --main-text-color: #121212;
    --base-font-size: 1.125rem;
    
    /* Bootstrap navigation overrides */
    --bs-nav-link-hover-color: #ffcf9d;
    
    /* Legacy variables for compatibility */
    --bg-color: var(--primary-blue);
    --element-color-1: var(--primary-brown);
    --element-color-2: var(--primary-gray);
    --border-heading-color: var(--primary-peach);
}

/* Font imports moved to HTML head */

/* Custom font face for Novelist */
@font-face {
    font-family: 'Novelist';
    src: url('../fonts/Novelist_free.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom font face for Miama Nueva */
@font-face {
    font-family: 'Miama Nueva';
    src: url('../fonts/miama-nueva.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Responsive font sizing */
html {
    font-size: var(--base-font-size);
}

@media (min-width: 992px) {
    html,body {
        font-size: 0.975vw !important; /* 1.1250rem на 1920px  */
        min-height: 100vh;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 0.875rem;
    }
    
    .header {
        height: 83px;
    }
    
    body {
        padding-top: 83px;
    }
    
}

@media (max-width: 320px) {
    html {
        font-size: 0.875rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 300;
    background-color: var(--white);
    color: var(--main-text-color);
    line-height: 1.6;
}

/* HTML Header Element Styles */
@media (max-width: 991px) {
    header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1001;
        background-color: var(--bg-color);
        box-shadow: 0 0.1250rem 0.6250rem rgba(0, 0, 0, 0.15);
        padding: 15px 0;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

h2, h3, h4, h5, h6 {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Improved spacing for consecutive headings */
h1 + h2, h2 + h3, h3 + h4, h4 + h5, h5 + h6 {
    margin-top: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-family: 'Novelist', serif;
    font-weight: normal;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

h1:first-child {
    margin-top: 0;
}

h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3:first-child {
    margin-top: 0;
}

h4 {
    font-size: 1.25rem;
    color: var(--primary-brown);
    margin-top: 1.5rem;
    margin-bottom: 15px;
}

h5 {
    font-size: 1.125rem;
    color: var(--primary-gray);
    margin-top: 1.25rem;
    margin-bottom: 15px;
}

h6 {
    font-size: 1rem;
    color: var(--primary-gray);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Links */
a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-brown);
    text-decoration: none;
}

/* Accent text */
.accent-text {
    color: var(--primary-peach);
}

.text-primary {
    color: var(--primary-blue);
}

.text-secondary {
    color: var(--primary-brown);
}

.text-muted {
    color: var(--primary-gray);
}

/* Paragraph and content spacing */
p {
    margin-top: 0;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Last paragraph in a container shouldn't have bottom margin */
p:last-child {
    margin-bottom: 0;
}

/* Lists spacing */
ul, ol {
    margin-top: 0;
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

ul:last-child, ol:last-child {
    margin-bottom: 0;
}

li {
    margin-bottom: 0.5rem;
}

li:last-child {
    margin-bottom: 0;
}

/* Nested lists */
li ul, li ol {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Content sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

/* Improved spacing for specific elements */
blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 0.25rem solid var(--primary-peach);
    background-color: rgba(255, 207, 157, 0.15);
}

/* Tables */
table {
    margin: 1.5rem 0;
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    border-bottom: 0.0625rem solid rgba(10, 38, 71, 0.1);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Button styles - Bootstrap overrides with brand colors */
.btn-primary {
    /* Bootstrap CSS переменные с фирменными цветами LinumSerenum */
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-blue, #0A2647);
    --bs-btn-border-color: var(--primary-blue, #0A2647);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-brown, #3F2E37);
    --bs-btn-hover-border-color: var(--primary-brown, #3F2E37);
    --bs-btn-focus-shadow-rgb: 10, 38, 71; /* primary-blue в RGB */
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #2a1f25; /* Более темный оттенок primary-brown */
    --bs-btn-active-border-color: #2a1f25;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
    
    /* Дополнительные стили для совместимости */
    background-color: var(--primary-blue);
    color: var(--white);
    border: 0.125rem solid var(--primary-blue);
    padding: 15px 1.5rem;
    border-radius: 0.3125rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 0.125rem solid var(--primary-blue);
    padding: 15px 1.5rem;
    border-radius: 0.3125rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-accent {
    background-color: var(--primary-peach);
    color: var(--primary-blue);
    border: 0.125rem solid var(--primary-peach);
    padding: 15px 1.5rem;
    border-radius: 0.3125rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
    color: var(--white);
}

/* Fix Bootstrap button active states - use brand colors instead of bright blue */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: var(--white) !important;
    box-shadow: inset 0 3px 5px rgba(10, 38, 71, 0.125) !important;
}

/* Active states for secondary buttons */
.btn-secondary.active,
.btn-secondary:active,
.btn-check:checked+.btn-secondary {
    background-color: var(--primary-brown) !important;
    border-color: var(--primary-brown) !important;
    color: var(--white) !important;
}

/* Active states for accent buttons */
.btn-accent.active,
.btn-accent:active,
.btn-check:checked+.btn-accent {
    background-color: var(--primary-brown) !important;
    border-color: var(--primary-brown) !important;
    color: var(--white) !important;
}

.hero-title,
.banner-title {
    font-family: 'Miama Nueva', sans-serif;
    font-weight: normal;
}

.page-title {
    font-family: 'Novelist', serif;
    font-weight: normal;
}

.page-description, .page-description * {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Responsive page-description styles */
@media (max-width: 768px) {
    .page-description, .page-description * {
        font-size: 1rem;
    }
}

/* Body scroll lock when dropdown is open */
body.dropdown-open {
    overflow: hidden !important;
}

body.dropdown-open .header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

/* Header Styles */
.header {
    background-color: var(--bg-color);
    padding: 5px 0;
    box-shadow: 0 0.125rem 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 999;
}

/* Bootstrap override for container */
.container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto;
}

/* Desktop container padding in rem */
@media (min-width: 992px) {
    .container {
        padding-left: 8rem !important; /* 9rem / 1.1250rem = 8rem */
        padding-right: 8rem !important; /* 9rem / 1.1250rem = 8rem */
    }
}

/* Remove side padding from nested containers */
.container .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Remove side padding from nested containers on mobile */
    .container .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .page-header {
        margin-bottom: 0;
    }
}

.main-content {
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 !important;
    position: relative;
}

.header-left {
    flex-shrink: 0;
}

.logo-image {
    height: 5rem;
    width: auto;
    display: block;
}

/* Desktop logo height */
@media (min-width: 992px) {
    .logo-image {
        height: 12.67rem; /* 14.2500rem / 1.1250rem = 12.67rem */
    }
}

/* Large desktop optimizations */
@media (min-width: 1440px) {
    .header-container {
        gap: 3rem;
        padding: 2rem 0;
    }
    
    .header-top {
        gap: 3rem;
        padding: 1rem 0;
    }
    
    .main-nav {
        gap: 3rem;
        padding: 1.5rem 0 15px 0;
    }
    
    .search-container {
        max-width: 480px;
    }
    
    .header-btn {
        padding: 0.8rem;
    }
    
    .header-btn .icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .header-phone {
        font-size: 1.3rem;
    }
    
    .header-callback-btn {
        padding: 0.8125rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Ultra-wide displays */
@media (min-width: 1920px) {
    .header-container {
        gap: 4rem;
        padding: 2.5rem 0;
    }
    
    .header-top {
        gap: 4rem;
    }
    
    .main-nav {
        gap: 4rem;
    }
    
    .search-container {
        max-width: 35rem;
    }
}

.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.111rem;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.header-top .header-contact {
    order: 2;
}

.header-top .user-actions {
    order: 3;
}

.header-top .search-container {
    order: 1;
    flex: 1;
    margin-right: auto;
}

.search-container {
    flex: 1;
    max-width: 25rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.667rem 2.778rem 0.667rem 0.889rem;
    border: 0.111rem solid var(--border-heading-color);
    border-radius: 1.389rem;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--main-text-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-brown);
}

.search-button {
    position: absolute;
    right: 0.444rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--primary-brown);
    border-radius: 50%;
    transition: background-color 0.3s ease;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background-color: var(--primary-peach);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.05);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--primary-peach);
}

@media (min-width: 992px) {
    .header-phone .icon.icon-phone.white {
        font-size: 1rem;
        align-self: flex-end;
        margin-bottom: 0.4rem;
    }
}

@media (max-width: 991px) {
    .header-phone .icon {
        font-size: 1rem;
        align-self: flex-end;
    }
}

.header-phone:hover .icon {
    filter: brightness(0) saturate(100%) invert(1);
}

.header-callback-btn {
    background: var(--primary-peach);
    color: var(--primary-blue);
    border: none !important;
    outline: none !important;
    padding: 0.9375rem 1.5rem;
    border-radius: 1.389rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: fit-content;
    box-sizing: border-box;
    box-shadow: none !important;
}

.header-callback-btn:hover {
    background: var(--white);
    border: none !important;
    outline: none !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6) !important;
}

.header-callback-btn:focus {
    background: var(--white);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.header-callback-btn:active {
    background: var(--white);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 767px) {
    .header-contact {
        display: none;
    }
}

.user-actions {
    display: flex;
    gap: 0.833rem;
}

.user-button,
.cart-button,
.header-btn {
    background: none;
    border: 0.111rem solid var(--border-heading-color);
    border-radius: 50%;
    padding: 0.667rem;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-button:hover,
.cart-button:hover,
.header-btn:hover {
    background-color: var(--primary-peach);
    color: var(--primary-blue);
    border-color: var(--primary-peach);
    transform: scale(1.05);
    box-shadow: 0 0.1250rem 0.5000rem rgba(255, 207, 157, 0.5);
}

.header-btn:hover .icon.white {
    filter: brightness(0) saturate(100%) invert(0.2);
}

/* Disable scale effect for catalog button */
.nav-link.catalog-link:hover .icon,
.nav-link.catalog-link:hover .icon-catalog,
.catalog-link:hover .icon,
.catalog-link:hover .icon-catalog {
    transform: none !important;
}

/* Navigation Styles */
.main-nav {
    border-top: 0.056rem solid rgba(255, 207, 157, 0.5);
    padding: 15px 0 0.25rem 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.catalog-dropdown-wrapper {
    position: relative;
}

.catalog-link {
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 29px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.556rem 0;
    display: flex;
    align-items: center;
    gap: 0.444rem;
    transition: color 0.3s ease;
    font-size: 1.2rem;
    letter-spacing: 0.0187rem;
}

.nav-link:hover {
    color: var(--primary-peach);
}

.nav-link.active {
    color: var(--primary-peach);
    font-weight: 500;
}

/* Icon styles */
.icon {
    display: inline-block;
    width: 1.111rem;
    height: 1.111rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    vertical-align: middle;
}

.icon.white {
    filter: brightness(0) saturate(100%) invert(1);
    margin-top: -0.055rem;
}

.icon.white:hover {
    filter: brightness(0) saturate(100%) invert(1);
}

.icon.brown {
    filter: brightness(0) saturate(100%) invert(35%) sepia(12%) saturate(1234%) hue-rotate(314deg) brightness(90%) contrast(91%);
}

.icon.peach {
    filter: brightness(0) saturate(100%) invert(91%) sepia(58%) saturate(472%) hue-rotate(313deg) brightness(103%) contrast(102%);
}

/* Search icon */
.icon-search {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
}

/* User icon */
.icon-user {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}

/* Cart icon */
.icon-cart {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'%3E%3C/circle%3E%3Ccircle cx='20' cy='21' r='1'%3E%3C/circle%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'%3E%3C/path%3E%3C/svg%3E");
}

/* Heart icon */
.icon-heart {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'%3E%3C/path%3E%3C/svg%3E");
}

/* Catalog icon (4 transparent rectangles) */
.icon-catalog {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='3' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3C/svg%3E");
}

/* Catalog close icon (X) */
.icon-catalog-close {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

/* Arrow icons */
.icon-arrow-right {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9,18 15,12 9,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-arrow-left {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15,18 9,12 15,6'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Phone icon */
.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

/* Email icon */
.icon-email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}


/* Social media icons */
.icon-vk {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12.785 16.241s.288-.032.436-.194c.136-.149.131-.427.131-.427s-.019-1.307.587-1.5c.595-.189 1.359 1.264 2.169 1.824.612.424 1.077.331 1.077.331l2.159-.03s1.129-.07.594-.958c-.044-.072-.31-.653-1.597-1.847-1.347-1.25-1.167-.995.456-3.051.988-1.25 1.382-2.013 1.259-2.34-.118-.313-.843-.23-.843-.23l-2.432.015s-.18-.025-.314.055c-.13.08-.214.267-.214.267s-.383 1.02-.894 1.889c-1.077 1.834-1.508 1.931-1.685 1.816-.41-.267-.308-1.073-.308-1.646 0-1.789.271-2.537-.529-2.729-.265-.064-.459-.106-1.136-.113-.869-.009-1.605.003-2.021.206-.277.135-.491.436-.361.453.161.021.526.099.72.363.25.34.24 1.104.24 1.104s.143 2.105-.334 2.365c-.328.179-.777-.186-1.741-1.851-.494-.842-.867-1.775-.867-1.775s-.072-.176-.2-.27c-.155-.114-.372-.15-.372-.15l-2.31.015s-.347.01-.474.16c-.113.134-.009.41-.009.41s1.804 4.225 3.845 6.35c1.872 1.948 3.998 1.821 3.998 1.821h.964z'/%3E%3C/svg%3E");
}

.icon-telegram {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black'%3E%3Cpath d='m9.417 15.181-.397 5.584c.568 0 .814-.244 1.109-.537l2.663-2.545 5.518 4.041c1.012.564 1.725.267 1.998-.931L23.93 3.821l.001-.001c.321-1.496-.541-2.081-1.527-1.714l-21.29 8.151c-1.453.564-1.431 1.374-.247 1.741l5.443 1.693L18.953 5.78c.595-.394 1.136-.176.691.218z'/%3E%3C/svg%3E");
}

.icon-youtube {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

/* Icon sizing for different contexts */
.search-button .icon {
    width: 1.111rem;
    height: 1.111rem;
}

.header-btn .icon {
    width: 1.111rem;
    height: 1.111rem;
}

/* Keep proportions on larger screens - no changes to header elements */

/* Cart button styling */
.cart-btn {
    background: none;
    border: 0.111rem solid var(--border-heading-color);
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-btn:hover {
    background-color: var(--primary-peach);
    color: var(--primary-blue);
    border-color: var(--primary-peach);
}

.cart-count {
    position: absolute;
    top: -0.7500rem;
    right: -0.7500rem;
    background: linear-gradient(135deg, var(--primary-peach) 0%, #FFB875 100%);
    color: var(--primary-blue);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 0.25rem 0.7500rem rgba(0, 0, 0, 0.35), 
                0 0.1250rem 5px rgba(0, 0, 0, 0.25),
                inset 0 0.0625rem 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 2s infinite;
    z-index: 10;
    min-width: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0.25rem 0.7500rem rgba(0, 0, 0, 0.35), 
                    0 0.1250rem 5px rgba(0, 0, 0, 0.25),
                    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(255, 207, 157, 0.6), 
                    0 3px 0.5rem rgba(0, 0, 0, 0.2),
                    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0.25rem 0.7500rem rgba(0, 0, 0, 0.35), 
                    0 0.1250rem 5px rgba(0, 0, 0, 0.25),
                    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.3);
    }
}

/* Cart button hover effect with count */
.cart-btn:hover .cart-count {
    transform: scale(1.15);
    box-shadow: 0 5px 1.2500rem rgba(255, 207, 157, 0.8), 
                0 3px 0.6250rem rgba(0, 0, 0, 0.3),
                inset 0 0.0625rem 0 rgba(255, 255, 255, 0.5);
    animation: none;
}

@media (min-width: 992px) {
    .catalog-link .icon {
        width: 1.3rem;
        height: 1.03rem;
        filter: brightness(0) saturate(100%) invert(1);
        margin-top: -0.055rem;
    }
}

@media (max-width: 991px) {
    .catalog-link .icon {
        width: 0.889rem;
        height: 0.889rem;
        filter: brightness(0) saturate(100%) invert(1);
        margin-top: -0.055rem;
    }
}

.social-link .icon {
    width: 1.333rem;
    height: 1.333rem;
    filter: brightness(0) saturate(100%) invert(1) opacity(0.7);
}


@media (max-width: 991px) {
    .catalog-link .icon {
        width: 0.889rem;
        height: 0.889rem;
        filter: brightness(0) saturate(100%) invert(1);
        margin-top: -0.055rem;
    }
}

.social-link .icon {
    width: 1.333rem;
    height: 1.333rem;
    filter: brightness(0) saturate(100%) invert(1) opacity(0.7);
}

/* Catalog Dropdown */
.catalog-dropdown {
    position: fixed;
    top: 100%;
    left: 50%;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: none;
    border-radius: 0 0 1.111rem 1.111rem;
    box-shadow: 0 0.778rem 2.333rem rgba(10, 38, 71, 0.105), 
                0 0.389rem 1.167rem rgba(10, 38, 71, 0.07),
                0 0.194rem 0.583rem rgba(10, 38, 71, 0.035);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-1.111rem) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    width: 100vw;
    max-width: 1200px;
    max-height: 80vh;
    min-height: 25rem;
    backdrop-filter: blur(0.556rem);
    border-top: 0.167rem solid var(--primary-peach);
    overflow-y: auto;
}

/* Removed hover effects - dropdown now controlled by jQuery click */

.catalog-dropdown .container {
    padding: 0;
    background: white;
}

@media (min-width: 992px) {
    .catalog-dropdown {
        max-width: 100%;
        width: calc(100% - 16rem) !important;
        height: 70vh;
    }

    .catalog-dropdown .container {
		height:100%;
        padding: 0;
    }
}

.dropdown-container {
	height:100%;
    display: grid;
    grid-template-columns: 15.6250rem 1fr;
    gap: 0;
    min-height: 25rem;
    padding: 0;
}

.categories-list {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-gray) 100%);
    padding: 1.667rem 0;
    border-radius: 0 0 0 1.111rem;
    overflow-y: auto;
}

.category-item {
    margin: 0.25rem 1.111rem;
    padding: 0.5rem 0;
    cursor: pointer;
    border-radius: 0.667rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.category-item:hover {
    background: var(--primary-peach);
    transform: translateX(0);
    box-shadow: 0 0.311rem 0.972rem rgba(255, 207, 157, 0.4);
}

.category-item::after {
    content: '→';
    position: absolute;
    right: 0.8rem;
    top: 49%;
    transform: translateY(-49%) translateX(0.6250rem);
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2em;
	line-height:0.8rem;
}

.category-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    color: var(--primary-blue);
}

.category-item.active {
    background: var(--primary-peach);
    box-shadow: 0 0.311rem 0.972rem rgba(255, 207, 157, 0.4);
}

.category-item.active::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    color: var(--primary-blue);
}

.category-item.active a {
    color: var(--primary-blue);
}

.category-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.667rem;
    position: relative;
    z-index: 2;
}

.category-item:hover a {
    color: var(--primary-blue);
}

/* Desktop styles for category items */
@media (min-width: 992px) {
    .category-item {
        padding: 0.9rem 0;
		margin: 0.15rem 1.111rem;
    }
    .category-item a {
		line-height:0.8rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.products-area {
    padding: 1.667rem;
    background: var(--white);
    border-radius: 0 0 1.111rem 0;
    overflow-y: auto;
}

.category-products {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    animation: fadeInUp 0.4s ease-out;
}

@media (max-width: 1200px) and (min-width: 992px) {
    .category-products {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .category-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 767px) {
    .category-products {
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
        gap: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.111rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-products.active {
    display: grid !important;
}

.product-tile {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 0.056rem solid rgba(255, 207, 157, 0.4);
    border-radius: 0.667rem;
    padding: 0.833rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .product-tile {
        padding: 0.667rem;
        border-radius: 0.556rem;
    }
}

.product-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 207, 157, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-tile:hover {
    box-shadow: 0 0.444rem 1.111rem rgba(10, 38, 71, 0.105);
    border-color: var(--primary-peach);
}

.product-tile:hover::before {
    opacity: 1;
}

.product-tile img {
    width: 100%;
    height: 5rem;
    object-fit: cover;
    border-radius: 0.444rem;
    margin-bottom: 0.556rem;
    background-color: #f0f0f0;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .product-tile img {
        height: 4.444rem;
        margin-bottom: 0.444rem;
    }
}


.product-tile span {
    font-size: 0.875rem;
    color: var(--main-text-color);
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

@media (min-width: 992px) {
    .product-tile span {
        font-size: 0.8125rem;
    }
}

.product-tile:hover span {
    color: var(--primary-blue);
}

/* Subcategories Area - Professional Styling */
.subcategories-area {
    padding: 0.8rem;
    background: var(--white);
    border-radius: 0 0 1.111rem 0;
    overflow-y: auto;
}

.category-subcategories {
    display: none;
    animation: fadeInUp 0.4s ease-out;
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.category-subcategories.active {
    display: block !important;
}

.subcategory-tile {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 0.056rem solid rgba(255, 207, 157, 0.4);
    border-radius: 0.889rem;
    padding: 1.2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subcategory-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 207, 157, 0.25), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 0.889rem;
}

.subcategory-tile:hover {
    transform: translateY(-0.222rem);
    box-shadow: 0 0.667rem 1.667rem rgba(10, 38, 71, 0.12);
    border-color: var(--primary-peach);
}

.subcategory-tile:hover::before {
    opacity: 1;
}

.subcategory-link.card {
    text-decoration: none;
    color: var(--bg-color);
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 1px solid rgba(255, 207, 157, 0.3);
    border-radius: 0.75rem !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    min-height: 90px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.85rem;
    font-weight: 600;
}

.subcategory-link.card:hover {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 207, 157, 0.05) 100%);
    border-color: var(--border-heading-color) !important;
    color: var(--text-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.subcategory-link.card:hover .subcategory-name {
    color: var(--text-color) !important;
}

.subcategory-image {
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(var(--border-heading-color-rgb, 255, 207, 157), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.subcategory-link:hover .subcategory-image img {
    transform: scale(1.05);
}

/* Moved to catalog.css to avoid duplication */


.subcategory-tile img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    margin-bottom: 0.889rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0.111rem 0.333rem rgba(10, 38, 71, 0.1));
}

.subcategory-tile:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0.222rem 0.667rem rgba(10, 38, 71, 0.15));
}

.subcategory-tile span {
    font-size: 0.875rem;
    color: var(--main-text-color);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
    max-width: 100%;
    word-wrap: break-word;
}

.subcategory-tile:hover span {
    color: var(--primary-blue);
}

/* Desktop styles for subcategories */
@media (min-width: 1200px) {
    .category-subcategories {
        height: 100%;
        max-height: none;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .category-subcategories.active {
        display: flex !important;
    }
    
    .subcategories-area {
        overflow: hidden;
    }
    
    /* Optimized subcategory card for desktop */
    .subcategory-link.card {
        min-height: 50px !important;
        padding: 0.375rem 0.5rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .subcategory-image {
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0;
    }
    
    .subcategory-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.25rem;
    }
    
    /* Moved to catalog.css */
    
    .subcategory-link.card:hover .subcategory-name {
        color: var(--text-color) !important;
    }
    
    /* Hide description on desktop for compactness */
    .subcategory-desc {
        display: none !important;
    }
}

/* Desktop medium styles for subcategories */
@media (min-width: 992px) {
    .category-subcategories {
        overflow-x: hidden;
    }
    
    .subcategory-image {
        width: 5rem !important;
        height: 5rem !important;
    }
    
    /* Moved to catalog.css */
    
    
    .subcategory-content {
        text-align: center;
    }
}

/* Responsive adjustments for subcategories */
@media (max-width: 1200px) and (min-width: 992px) {
    .category-subcategories {
        padding: 0.375rem;
    }
    
    .subcategory-image {
        width: 36px;
        height: 36px;
    }
    
    /* Moved to catalog.css */
    
    .subcategory-tile img {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 0.7rem;
    }
    
    .subcategory-tile span {
        font-size: 0.8125rem;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .category-subcategories {
        padding: 0.375rem;
    }
    
    .subcategory-image {
        width: 36px;
        height: 36px;
    }
    
    /* Moved to catalog.css */
}

@media (max-width: 767px) {
    .category-subcategories {
        padding: 0.25rem;
    }
    
    .subcategory-link {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .subcategory-image {
        width: 32px;
        height: 32px;
    }
    
    /* Moved to catalog.css */
}

/* Subcategories slider styles moved to catalog.css */


/* Breadcrumbs - Designer Modern Styling */
.breadcrumbs {
    padding: 1.5rem 0 1.5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(10, 38, 71, 0.04),
                0 2px 8px rgba(10, 38, 71, 0.02);
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.875rem;
    position: relative;
    padding: 0 1.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0.625rem 1rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 207, 157, 0.35);
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.breadcrumb-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-peach) 0%, rgba(255, 207, 157, 0.8) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2rem;
    transform: scale(0.8);
}

.breadcrumb-item a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(10, 38, 71, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 207, 157, 0.5),
                0 3px 10px rgba(10, 38, 71, 0.1);
    border-color: var(--primary-peach);
}

.breadcrumb-item a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.breadcrumb-item a:hover::after {
    width: 100%;
    height: 100%;
}

.breadcrumb-item.current {
    color: var(--primary-blue);
    font-weight: 700;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    color: white;
    border-radius: 2rem;
    box-shadow: 0 4px 15px rgba(10, 38, 71, 0.2),
                0 2px 6px rgba(10, 38, 71, 0.1);
    position: relative;
    overflow: hidden;
}

.breadcrumb-item.current::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    animation: shimmer 2s infinite;
}

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

.breadcrumb-separator {
    color: rgba(100, 116, 139, 0.4);
    font-size: 1rem;
    margin: 0 0.5rem;
    font-weight: 300;
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.breadcrumb-separator::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-peach) 0%, rgba(255, 207, 157, 0.6) 100%);
    border-radius: 50%;
    opacity: 0.6;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(255, 207, 157, 0.5);
}

.breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-peach) 0%, rgba(255, 207, 157, 0.8) 100%);
    color: var(--primary-blue);
    padding: 0.625rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 207, 157, 0.3),
                0 2px 6px rgba(255, 207, 157, 0.4);
    transition: all 0.3s ease;
}

.breadcrumb-home:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 207, 157, 0.4),
                0 4px 12px rgba(255, 207, 157, 0.3);
}

.breadcrumb-home .icon {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) saturate(100%) invert(21%) sepia(61%) saturate(1134%) hue-rotate(201deg) brightness(95%) contrast(101%);
}

/* Home icon for breadcrumbs */
.icon-home {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9,22 9,12 15,12 15,22'%3E%3C/polyline%3E%3C/svg%3E");
    width: 1rem;
    height: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
}

/* Responsive breadcrumbs */
@media (max-width: 991px) {
    .breadcrumbs {
        padding: 1rem 0 1.5rem 0;
        margin-bottom: 1rem;
        border-radius: 0.75rem;
    }
    
    .breadcrumb-container {
        padding: 0 1rem;
        gap: 0.125rem;
    }
    
    .breadcrumb-item a,
    .breadcrumb-home {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .breadcrumb-item.current {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 767px) {
    .breadcrumbs {
        padding: 0.75rem 0 1rem 0;
        margin-bottom: 0.75rem;
        border-radius: 0.5rem;
        box-shadow: 0 2px 10px rgba(10, 38, 71, 0.03),
                    0 1px 4px rgba(10, 38, 71, 0.02);
    }
    
    .breadcrumb-container {
        padding: 0 0.75rem;
        font-size: 0.875rem;
    }
    
    .breadcrumb-item a,
    .breadcrumb-home {
        padding: 0.375rem 0.625rem;
        font-size: 0.875rem;
        border-radius: 1.5rem;
    }
    
    .breadcrumb-item.current {
        padding: 0.375rem 0.625rem;
        font-size: 0.875rem;
    }
    
    .breadcrumb-separator {
        margin: 0 0.25rem;
        width: 1rem;
        height: 1rem;
    }
    
    .breadcrumb-separator::before {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-container {
        flex-wrap: wrap;
        gap: 0.25rem 0.125rem;
    }
    
    .breadcrumb-item {
        margin-bottom: 0.25rem;
    }
}

/* Main Content */
.main-content {
    padding: 2.222rem 0;
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    margin-bottom: 2.222rem;
    position: relative;
    padding-bottom: 3rem;
}

.hero-slider .swiper {
    border-radius: 0.833rem;
    overflow: hidden;
    box-shadow: 0 0.556rem 2.222rem rgba(10, 38, 71, 0.15);
    height: 31.2500rem;
}

/* Hero slider navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--primary-blue) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    width: 3rem !important;
    height: 3rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: 2px solid var(--primary-blue) !important;
    border-radius: 50% !important;
    transition: background-color 0.3s ease !important;
    z-index: 15 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-slider .swiper-button-next {
    right: 1rem !important;
}

.hero-slider .swiper-button-prev {
    left: 1rem !important;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.7) !important;
    transform: translateY(-50%) !important;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    content: '' !important;
    font-size: 0 !important;
}

.hero-slider .swiper-button-next::before {
    content: '→';
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    top: -1px; /* Fine-tune vertical centering for arrow symbols */
}

.hero-slider .swiper-button-prev::before {
    content: '←';
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    top: -1px; /* Fine-tune vertical centering for arrow symbols */
}

/* Desktop-specific positioning for hero slider navigation buttons */
@media (min-width: 992px) {
    .hero-slider .swiper-button-prev::before,
    .hero-slider .swiper-button-next::before {
        top:0;
    }
}

/* Hero slider pagination */
.hero-slider .swiper-pagination {
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    z-index: 20 !important;
    pointer-events: auto !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    background: rgba(10, 38, 71, 0.5) !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.hero-slider .swiper-pagination-bullet:hover {
    background: rgba(10, 38, 71, 0.8) !important;
    transform: scale(1.1) !important;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-peach) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 207, 157, 0.3) !important;
}

/* Ensure hero slider active bullets always override Swiper.js defaults */
.hero-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #FFCF9D !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 207, 157, 0.3) !important;
}

/* Hide navigation arrows on mobile for all sliders */
@media (max-width: 991px) {
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev,
    .products-slider .products-next,
    .products-slider .products-prev,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Fallback styles if Swiper CSS doesn't load */
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-gray) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-slider .swiper-slide {
    height: 100%;
    min-height: 31.2500rem;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 50rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: auto;
    height: 100%;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    transition: opacity 0.3s ease;
    background-color: var(--primary-gray); /* Fallback color */
}

/* Removed data-bg styles - using direct background-image now */

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 38, 71, 0.8) 0%, 
        rgba(33, 33, 45, 0.6) 50%, 
        rgba(63, 46, 55, 0.8) 100%);
    z-index: 1;
}

.slide-title {
    font-family: 'Novelist', serif;
    font-size: 3rem;
    font-weight: normal;
    color: var(--primary-peach);
    margin-bottom: 1.5rem;
    text-shadow: 0 0.111rem 0.333rem rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out;
}

.slide-subtitle {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.slide-cta {
    display: inline-flex;
    gap: 1rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.slide-btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 0.125rem solid transparent;
}

.slide-btn-primary {
    background: var(--primary-peach);
    color: var(--primary-blue);
    border-color: var(--primary-peach);
}

.slide-btn-primary:hover {
    background: transparent;
    color: var(--primary-peach);
    border-color: var(--primary-peach);
    transform: translateY(-0.1250rem);
    box-shadow: 0 0.444rem 1.111rem rgba(255, 207, 157, 0.5);
}

.slide-btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.slide-btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-0.1250rem);
    box-shadow: 0 0.444rem 1.111rem rgba(255, 255, 255, 0.2);
}

/* Completely disable swiper-icons font to prevent CSP issues */
@font-face {
    font-family: 'swiper-icons';
    src: url('data:font/woff2;base64,') format('woff2');
    font-display: block;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: inherit !important;
    content: '' !important;
    display: none !important;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-peach) !important;
    background: none !important;
    width: 2.5000rem !important;
    height: 2.5000rem !important;
    margin-top: -1.2500rem !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next {
    right: -3.7500rem !important;
}

.swiper-button-prev {
    left: -3.7500rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--primary-blue) !important;
    transform: scale(1.2) !important;
}


.swiper-button-next::before {
    content: '→';
    font-size: 2rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.swiper-button-prev::before {
    content: '←';
    font-size: 2rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}


/* Swiper Pagination */
.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 1rem;
    display: block !important;
    visibility: visible !important;
    text-align: center;
}

.swiper-pagination-bullet {
    background: rgba(10, 38, 71, 0.5) !important;
    opacity: 1 !important;
    width: 0.7500rem !important;
    height: 0.7500rem !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-peach) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 207, 157, 0.3) !important;
}

/* High specificity override for all general pagination active bullets */
.swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #FFCF9D !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 207, 157, 0.3) !important;
}

@media (max-width: 767px) {
    .swiper-pagination {
        margin-top: 1.5rem;
        position: relative;
        bottom: 0;
        text-align: center;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .swiper-pagination {
        margin-top: 1.5rem;
        position: relative;
        bottom: 0;
        text-align: center;
    }
}

/* Slide Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(1.8750rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for mobile devices up to 991px */
@media (max-width: 991px) {
    .swiper {
        height: auto;
    }
    
    .slide-content {
        padding: 2rem 1.5rem;
    }
    
    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .slide-cta {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }
    
    .slide-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        max-width: 17.5000rem;
        white-space: nowrap;
    }
}

/* Further optimization for smaller screens */
@media (max-width: 767px) {
    .swiper {
        height: auto;
    }
    
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        max-width: 15.6250rem;
    }
    
}

/* FAQ Section styles moved to components/faq-common.css */

/* Accordion Styles */
.accordion {
    max-width: 56.2500rem;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border: 0.0625rem solid var(--primary-peach);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(10, 38, 71, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 0.5rem 2rem rgba(10, 38, 71, 0.15);
    transform: translateY(-0.1250rem);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: left;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: none;
    border-radius: 0;
    overflow-anchor: none;
    transition: all 0.3s ease;
    font-family: 'Alegreya Sans', sans-serif;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-brown);
    background: linear-gradient(135deg, var(--primary-peach) 0%, #f0c088 100%);
    box-shadow: inset 0 calc(-1 * 0.0625rem) 0 var(--primary-peach);
}

.accordion-button:hover {
    background: linear-gradient(135deg, var(--primary-peach) 0%, #f0c088 100%);
    color: var(--primary-brown);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: '';
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-collapse {
    border-top: 0.0625rem solid var(--primary-peach) !important;
}

.accordion-item .accordion-collapse {
    border-top: 0.0625rem solid var(--primary-peach) !important;
    border-color: var(--primary-peach) !important;
}

.accordion-button:not(.collapsed) {
    border-bottom: 0.0625rem solid var(--primary-peach) !important;
}

.accordion-button {
    --bs-accordion-btn-focus-border-color: var(--primary-peach);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 207, 157, 0.45);
}

.accordion-body {
    padding: 1.5rem 2rem;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    background: var(--white);
}

/* Mobile Accordion */
@media (max-width: 767px) {
    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.2rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Banner styles */
.banner {
    font-family: 'Miama Nueva', 'Roboto', sans-serif;
}

/* Large headings */
h2, h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
}

/* Regular text */
p, span, div {
    color: var(--main-text-color);
}

/* Catalog Styles */
.catalog-header {
    text-align: center;
    margin-bottom: 2.222rem;
}

.catalog-title {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 2.5rem;
    color: var(--border-heading-color);
    margin-bottom: 1.111rem;
}

.catalog-filters {
    display: flex;
    gap: 1.111rem;
    justify-content: center;
    margin-top: 1.111rem;
}

.filter-select {
    padding: 0.556rem 0.833rem;
    border: 0.111rem solid var(--border-heading-color);
    border-radius: 0.444rem;
    background-color: var(--white);
    color: var(--main-text-color);
    font-size: 0.875rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    border-color: var(--element-color-1);
}

/* Section Title */
.section-title {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.6250rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(135deg, var(--primary-peach) 0%, #f0c088 100%);
    border-radius: 0.1250rem;
}


/* Products Slider */
.products-slider {
    position: relative;
    margin-top: 2rem;
    background: var(--white);
    padding: 2rem 5rem 4rem 5rem;
    border-radius: 0.5rem;
}

.products-swiper {
    overflow: hidden;
    padding: 0 0.125rem;
    position: relative;
}

.products-swiper .swiper-slide {
    height: auto;
    display: flex;
    background: var(--white);
    padding: 1rem 0;
}

.products-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.products-swiper .product-card {
    width: 100%;
    height: 100%;
    margin: 1rem 0.0625rem 0 0.0625rem;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
}

.products-swiper .product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
    text-align: left;
    align-items: flex-start;
}

.products-swiper .product-title {
    height: 4.2rem;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: auto;
}

.products-swiper .product-stock-status {
    margin-bottom: 1rem;
}

.products-swiper .product-price {
    margin-bottom: 1rem;
    text-align: left;
}

.products-swiper .add-to-cart-btn {
    width: 100% !important;
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.product-stock-status {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-card .product-stock-status.in-stock,
.product-stock-status.in-stock {
    color: #22c55e !important;
}

/* Дополнительная специфичность для статуса наличия */
.catalog-products-grid .product-stock-status.in-stock,
.products-section .product-stock-status.in-stock {
    color: #22c55e !important;
}

.product-stock-status.out-of-stock {
    color: #ef4444;
}

/* Products Navigation */
.products-slider {
    position: relative;
    overflow: visible;
}

.products-slider .products-next,
.products-slider .products-prev {
    color: var(--primary-blue) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    width: 3rem !important;
    height: 3rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: 2px solid var(--primary-blue) !important;
    border-radius: 50% !important;
    transition: background-color 0.3s ease !important;
    position: absolute !important;
    z-index: 15 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.products-slider .products-next {
    right: -1.5rem !important;
}

.products-slider .products-prev {
    left: -1.5rem !important;
}

.products-slider .products-next:hover,
.products-slider .products-prev:hover {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
}

.products-slider .products-next::after {
    content: '' !important;
    font-size: 0 !important;
}

.products-slider .products-prev::after {
    content: '' !important;
    font-size: 0 !important;
}

.products-slider .products-next::before {
    content: '→';
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.products-slider .products-prev::before {
    content: '←';
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Desktop positioning for products navigation buttons */
@media (min-width: 992px) {
    .products-slider .products-next::before,
    .products-slider .products-prev::before {
        top: 0;
    }
}

/* Products Pagination */
.products-pagination {
    position: static !important;
    margin-top: 2rem;
    text-align: center;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
}

@media (max-width: 767px) {
    .products-pagination {
        margin-top: 1rem;
        position: relative;
        bottom: 0;
    }
    
    .products-next,
    .products-prev {
        display: none !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .products-slider {
        padding: 2rem 0.5rem 3rem 0.5rem;
    }
    
    .products-swiper {
        padding: 0 0.6250rem;
    }
}

@media (max-width: 991px) {
    .products-slider {
        padding: 2rem 0.5rem 4rem 0.5rem;
    }
}

@media (max-width: 570px) {
    .products-pagination {
        margin-top: 0.5rem;
    }
    
    .products-slider {
        padding: 1.5rem 0.25rem 3rem 0.25rem;
    }
    
    .products-swiper {
        padding: 0 0.3125rem;
    }
}

.products-pagination .swiper-pagination-bullet {
    background: rgba(10, 38, 71, 0.5) !important;
    opacity: 1 !important;
    width: 0.7500rem !important;
    height: 0.7500rem !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.products-pagination .swiper-pagination-bullet-active {
    background: var(--primary-peach) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 207, 157, 0.3) !important;
}

/* Ensure products slider active bullets always override Swiper.js defaults */
.products-pagination .swiper-pagination .swiper-pagination-bullet-active {
    background: #FFCF9D !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 207, 157, 0.3) !important;
}

/* Products Grid (legacy) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.6250rem, 1fr));
    gap: 1.667rem;
    margin-top: 2.222rem;
}

.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 0.125rem solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.product-card:hover {
    transform: translateY(-0.25rem);
    border-color: var(--primary-peach);
}


.product-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        transparent 0%, 
        transparent 60%, 
        rgba(10, 38, 71, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

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

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-title {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: block;
    overflow: visible;
}

.product-card:hover .product-title {
    color: var(--primary-brown);
}

.product-description {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    flex-grow: 1;
}

.products-swiper .product-bottom {
    margin-top: auto;
    width: 100%;
    padding: 0 !important;
}

.product-bottom .add-to-cart-btn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-price {
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 1.6rem;
    color: var(--primary-brown);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8125rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-peach) 0%, #f0c088 100%);
    color: var(--primary-blue);
    border: 0.125rem solid var(--primary-peach);
    border-radius: 0.9375rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Alegreya Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    display: block !important;
    visibility: visible !important;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-gray) 100%);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0.5rem 1.5rem rgba(10, 38, 71, 0.25);
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:active {
    box-shadow: 0 0.25rem 15px rgba(10, 38, 71, 0.15);
}

.add-to-cart-btn.in-cart {
    background: var(--white) !important;
    border-color: var(--primary-blue) !important;
    color: var(--primary-blue) !important;
    cursor: pointer;
    text-decoration: none;
}

.add-to-cart-btn.in-cart:hover {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    box-shadow: 0 0.25rem 15px rgba(10, 38, 71, 0.15) !important;
}

.product-card.hidden {
    display: none;
}

/* Product Card Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-peach) 0%, #f0c088 100%);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    z-index: 3;
    box-shadow: 0 0.125rem 0.5rem rgba(255, 207, 157, 0.4);
    backdrop-filter: blur(0.25rem);
}

/* Product Card Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 15px;
}

.product-stars {
    display: flex;
    gap: 0.125rem;
}

.product-star {
    width: 1rem;
    height: 1rem;
    background: var(--primary-peach);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    transition: all 0.2s ease;
}

.product-star.empty {
    background: #e5e7eb;
}

.product-rating-text {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

/* Product Card Actions */
.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.product-action-btn {
    flex: 1;
    padding: 15px;
    border: 0.125rem solid var(--primary-peach);
    border-radius: 0.5rem;
    background: transparent;
    color: var(--primary-peach);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product-action-btn:hover {
    background: var(--primary-peach);
    color: var(--primary-blue);
    transform: translateY(-0.0625rem);
}

.product-action-btn.secondary {
    border-color: #e5e7eb;
    color: #6b7280;
}

.product-action-btn.secondary:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: var(--primary-blue);
}

/* Mobile product cards optimization - 991px and below */
@media (max-width: 991px) {
    .product-card {
        border-radius: 1.2rem;
        box-shadow: 0 0.2500rem 0.7500rem rgba(10, 38, 71, 0.1);
        transition: all 0.3s ease;
    }
    
    .product-card:hover {
        transform: translateY(-0.2500rem);
        box-shadow: 0 0.5000rem 1.5000rem rgba(10, 38, 71, 0.15);
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-title {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .product-description {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .product-price {
        font-size: 1.4rem;
        font-weight: 600;
    }
    
    .add-to-cart-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 2.7500rem;
        border-radius: 0.5000rem;
        width: 100%;
    }
    
    .product-bottom .add-to-cart-btn {
        margin-top: 15px;
    }
}

/* Further optimization for smaller screens */
@media (max-width: 767px) {
    .product-card {
        border-radius: 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .add-to-cart-btn {
        padding: 15px 1.25rem;
        font-size: 0.875rem;
        display: block !important;
        visibility: visible !important;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-description {
        font-size: 0.875rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .add-to-cart-btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
    }
    
    .product-bottom .add-to-cart-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* About Page Styles */
.page-header {
    text-align: center;
    margin-bottom: 3.333rem;
}

.page-title {
    font-size: 3rem;
    color: var(--border-heading-color);
    margin-bottom: 1.111rem;
}

.page-subtitle {
    font-family: 'Miama Nueva', 'Roboto', sans-serif;
    font-size: 1.222rem;
    max-width: 31.2500rem;
    margin: 0 auto;
    line-height: 1.6;
}

.about-intro {
    margin-bottom: 4.444rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.advantage-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}


.advantage-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.advantage-item p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .about-intro {
        margin-bottom: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantage-item {
        padding: 1rem;
    }
    
    .intro-content,
    .intro-image {
        max-width: 100%;
    }
}

.intro-content {
    flex: 1;
    max-width: 50%;
}

.intro-content h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2rem;
    margin-bottom: 1.111rem;
}

.intro-content p {
    color: var(--main-text-color);
    line-height: 1.6;
    margin-bottom: 0.833rem;
    font-size: 1.056rem;
}

/* Footer Styles */
.footer {
    background-color: #3F2E37;
    color: var(--white);
    padding: 3.333rem 0 1.667rem;
    margin-top: 4.444rem;
    font-size: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.222rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--primary-peach);
    font-size: 2rem;
    margin-bottom: 1.111rem;
    font-weight: normal;
    text-shadow: 0 0.078rem 0.156rem rgba(0, 0, 0, 0.21);
}

.footer-subtitle {
    color: var(--primary-peach);
    font-family: 'Novelist', serif;
    font-size: 1.3rem;
    margin-bottom: 0.833rem;
    font-weight: normal;
    text-shadow: 0 0.039rem 0.078rem rgba(0, 0, 0, 0.14);
}

.footer-description {
    color: var(--white);
    margin-bottom: 1.111rem;
    line-height: 1.85;
    font-size: 0.9375rem;
    text-shadow: 0 0.039rem 0.078rem rgba(0, 0, 0, 0.14);
}

.footer-logo-img {
    width: auto;
    height: 7.05rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
    padding: 0.2rem 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--border-heading-color);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.3;
    padding: 0.1rem 0;
}

.contact-item span {
    color: var(--white) !important;
}

.contact-item strong {
    color: #121212;
    display: block;
    margin-bottom: 0.278rem;
}

.contact-item:hover strong {
    color: #000;
}

/* Footer contact items should keep original color */
.footer .contact-item strong {
    color: var(--border-heading-color) !important;
}

.footer .contact-item:hover strong {
    color: var(--border-heading-color) !important;
}

.contact-link {
    color: #121212 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-peach) !important;
}

.contact-link:hover strong {
    color: var(--primary-peach) !important;
}

.footer-social {
    display: flex;
    gap: 0.833rem;
    margin-top: 1.111rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    width: 2.222rem;
    height: 2.222rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

.social-link:hover {
    color: var(--border-heading-color);
    transform: translateY(-0.111rem);
}

.social-link[aria-label]:hover {
    background-color: rgba(255, 207, 157, 0.4) !important;
}

.social-link[aria-label] {
    background-image: none !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.social-link[aria-label="VK"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.785 16.241s.288-.032.436-.194c.136-.149.131-.427.131-.427s-.019-1.307.587-1.5c.595-.189 1.359 1.264 2.169 1.824.612.424 1.077.331 1.077.331l2.159-.03s1.129-.07.594-.958c-.044-.072-.31-.653-1.597-1.847-1.347-1.25-1.167-.995.456-3.051.988-1.25 1.382-2.013 1.259-2.34-.118-.313-.843-.23-.843-.23l-2.432.015s-.18-.025-.314.055c-.13.08-.214.267-.214.267s-.383 1.02-.894 1.889c-1.077 1.834-1.508 1.931-1.685 1.816-.41-.267-.308-1.073-.308-1.646 0-1.789.271-2.537-.529-2.729-.265-.064-.459-.106-1.136-.113-.869-.009-1.605.003-2.021.206-.277.135-.491.436-.361.453.161.021.526.099.72.363.25.34.24 1.104.24 1.104s.143 2.105-.334 2.365c-.328.179-.777-.186-1.741-1.851-.494-.842-.867-1.775-.867-1.775s-.072-.176-.2-.27c-.155-.114-.372-.15-.372-.15l-2.31.015s-.347.01-.474.16c-.113.134-.009.41-.009.41s1.804 4.225 3.845 6.35c1.872 1.948 3.998 1.821 3.998 1.821h.964z'%3E%3C/path%3E%3C/svg%3E") !important;
}

.social-link[aria-label="Telegram"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'%3E%3C/path%3E%3C/svg%3E") !important;
}

.social-link[aria-label="Dzen"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M18 9.5c0-.3-.2-.6-.5-.6-2.8-.1-4.8-.5-6.1-1.8s-1.7-3.3-1.8-6.1c0-.3-.3-.5-.6-.5h-.4c-.3 0-.6.2-.6.5-.1 2.8-.5 4.8-1.8 6.1s-3.3 1.7-6.1 1.8c-.3 0-.5.3-.5.6v.4c0 .3.2.6.5.6 2.8.1 4.8.5 6.1 1.8s1.7 3.3 1.8 6.1c0 .3.3.5.6.5h.4c.3 0 .6-.2.6-.5.1-2.8.5-4.8 1.8-6.1s3.3-1.7 6.1-1.8c.3 0 .5-.3.5-.6v-.4z'/%3E%3C/svg%3E") !important;
}

.social-link[aria-label="Rutube"] {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='18' viewBox='0 0 17 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.24517 9.00647H3.43209V6.67665H9.24517C9.58472 6.67665 9.82082 6.73659 9.93931 6.84127C10.0578 6.94596 10.1312 7.14011 10.1312 7.42373V8.26028C10.1312 8.55911 10.0578 8.75326 9.93931 8.85794C9.82082 8.96263 9.58472 9.00736 9.24517 9.00736V9.00647ZM9.64397 4.48014H0.966797V14.4436H3.43209V11.2021H7.97538L10.1312 14.4436H12.8918L10.515 11.1869C11.3913 11.0553 11.7847 10.7834 12.1093 10.3351C12.4338 9.88686 12.5965 9.1702 12.5965 8.21376V7.46667C12.5965 6.89943 12.5372 6.45118 12.4338 6.10761C12.3303 5.76405 12.1535 5.46522 11.9024 5.1968C11.6371 4.94271 11.3417 4.76376 10.9871 4.64387C10.6326 4.53919 10.1896 4.47925 9.64397 4.47925V4.48014Z' fill='white'/%3E%3Cpath d='M14.7866 4.4792C15.8326 4.4792 16.6805 3.63095 16.6805 2.58457C16.6805 1.5382 15.8326 0.689941 14.7866 0.689941C13.7405 0.689941 12.8926 1.5382 12.8926 2.58457C12.8926 3.63095 13.7405 4.4792 14.7866 4.4792Z' fill='white'/%3E%3C/svg%3E") !important;
}

.social-link[aria-label="WhatsApp"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.051 3.488'/%3E%3C/svg%3E") !important;
}

.footer-bottom {
    border-top: 0.056rem solid rgba(255, 255, 255, 0.1);
    padding-top: 1.111rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.111rem;
}

.footer-copyright {
    color: var(--white);
    font-size: 0.875rem;
}

.footer-copyright span {
    color: var(--white);
}

.footer-badges {
    display: flex;
    gap: 0.833rem;
}

@media (min-width: 992px) {
    .footer-badge-link {
        background: rgba(255, 207, 157, 0.25);
        color: var(--border-heading-color);
        padding: 0.444rem 0.833rem;
        border-radius: 1.111rem;
        font-size: 0.875rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
}

@media (max-width: 991px) {
    .footer-badge-link {
        background: rgba(255, 207, 157, 0.25);
        color: var(--border-heading-color);
        padding: 0.444rem 0.833rem;
        border-radius: 1.111rem;
        font-size: 0.875rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
}

.footer-badge-link:hover {
    background: rgba(255, 207, 157, 0.4);
    color: var(--white);
}

.badge {
    background: rgba(255, 207, 157, 0.1);
    color: var(--border-heading-color);
    padding: 0.444rem 0.833rem;
    border-radius: 1.111rem;
    font-size: 0.875rem;
    border: 0.056rem solid rgba(255, 207, 157, 0.3);
}

/* Cookie Consent Modal */
.cookie-consent {
    position: fixed;
    bottom: 1.2500rem;
    left: 1.2500rem;
    width: 25rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 0.25rem 1.2500rem rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    border-radius: 0.5rem;
    border: 0.125rem solid var(--primary-peach);
}

.cookie-consent.show {
    display: block;
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-consent-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: normal;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--white);
    font-weight: normal;
}

.cookie-consent-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 0.3125rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--primary-peach);
    color: var(--primary-blue);
}

.cookie-btn-accept:hover {
    background: #f0c088;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 0.0625rem solid var(--white);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: var(--primary-peach);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: normal;
}

.cookie-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .cookie-consent {
        width: calc(100vw - 2.5000rem);
        left: 1.2500rem;
        right: 1.2500rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Legal Pages Styles */
.page-content {
    padding: 3rem 0;
}

.legal-content {
    line-height: 1.7;
    color: var(--main-text-color);
    width: 100%;
    margin: 0;
}

.legal-content h1 {
    color: var(--primary-blue);
    margin-bottom: 2.5rem;
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 0.1250rem solid var(--primary-peach);
    font-family: 'Novelist', serif;
    font-weight: normal;
}

.legal-content h2 {
    color: var(--primary-blue);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 600;
}

.legal-content h2:first-of-type {
    margin-top: 2rem;
}

.legal-content h3 {
    color: var(--primary-brown);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    color: var(--main-text-color);
    line-height: 1.7;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul:last-child {
    margin-bottom: 0;
}

.legal-content li {
    margin-bottom: 15px;
    color: var(--main-text-color);
    line-height: 1.6;
}

.legal-content li:last-child {
    margin-bottom: 0;
}

.legal-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.legal-content em {
    color: var(--primary-brown);
    font-style: italic;
    /* Улучшение рендеринга курсива на iOS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cards and content blocks */
.content-card {
    background: var(--white);
    border: 0.0625rem solid rgba(10, 38, 71, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 0.1250rem 0.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 0.25rem 0.7500rem rgba(0, 0, 0, 0.1);
    border-color: var(--primary-peach);
}

.content-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.content-card p {
    color: var(--main-text-color);
    margin-bottom: 0.5rem;
}

/* Product card improvements */

.product-title {
    color: var(--primary-blue) !important;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 600;
}

.product-description {
    color: var(--main-text-color);
    line-height: 1.3;
}



/* Logo link styles */
.logo-link {
    display: block;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Contacts Page Styles */
.contacts-content {
    margin-top: 3rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 0.75fr;
    gap: 2rem;
    min-height: 80vh;
}

.contact-info-block {
    grid-column: 1;
    grid-row: 1;
}

.contact-map-block {
    grid-column: 1;
    grid-row: 2;
}

.contact-form-block {
    grid-column: 2;
    grid-row: 1 / 3;
}

.contact-info-block {
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    border: 0.125rem solid #e5e7eb;
}

.contact-map-block {
    background: var(--white);
    border-radius: 1rem;
    border: 0.125rem solid #e5e7eb;
    overflow: hidden;
}

.contact-form-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    border: 0.125rem solid #e5e7eb;
}

.contact-form-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-message {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-message textarea {
    flex: 1;
    min-height: 7.5000rem;
}

@media (max-width: 991px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
    }
    
    .contact-info-block,
    .contact-map-block,
    .contact-form-block {
        grid-column: 1;
        grid-row: auto;
    }
}

.contact-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    border: 0.125rem solid #e5e7eb;
    margin-bottom: 2rem;
}

.contact-info h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 600;
}

.contact-info .contact-item {
    margin-bottom: 1.5rem;
}

.contact-info .contact-item h3 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 600;
}

.contact-info .contact-item p {
    margin: 0;
    color: #121212;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    border: 0.125rem solid #e5e7eb;
}

.contact-form h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 600;
}

.contact-form-inner .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-inner label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-brown);
    font-weight: 600;
    font-size: 1rem;
}

.contact-form-inner input,
.contact-form-inner textarea {
    width: 100%;
    padding: 13px 1rem;
    border: 0.125rem solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form-inner input:focus,
.contact-form-inner textarea:focus {
    outline: none;
    border-color: var(--primary-peach);
}

/* Remove autofill blue background */
.contact-form-inner input:-webkit-autofill,
.contact-form-inner input:-webkit-autofill:hover,
.contact-form-inner input:-webkit-autofill:focus,
.contact-form-inner input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1.8750rem var(--white) inset !important;
    -webkit-text-fill-color: var(--main-text-color) !important;
    background-color: var(--white) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.contact-form-inner textarea {
    resize: vertical;
    min-height: 2rem;
}

.contact-form-inner .btn {
    background: linear-gradient(135deg, var(--primary-peach) 0%, #f0c088 100%);
    color: var(--primary-blue);
    border: 0.125rem solid var(--primary-peach);
    padding: 13px 2rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-family: 'Alegreya Sans', sans-serif;
}

.contact-form-inner .btn:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-gray) 100%);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-0.1250rem);
}

/* Privacy consent checkbox styling */
.contact-form-inner input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 7px;
    height: 7px;
    border: 0.125rem solid #d1d5db;
    border-radius: 0.25rem;
    background-color: var(--white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
    padding: 0.45rem;
}

.contact-form-inner input[type="checkbox"]:hover {
    border-color: var(--primary-peach);
    box-shadow: 0 0 0 0.125rem rgba(255, 207, 157, 0.25);
}

.contact-form-inner input[type="checkbox"]:checked {
    background-color: var(--primary-peach);
    border-color: var(--primary-peach);
    box-shadow: 0 0 0 0.125rem rgba(255, 207, 157, 0.4);
}

.contact-form-inner input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-blue);
    font-size: 0.8125rem;
    font-weight: bold;
    line-height: 1;
}

.contact-form-inner input[type="checkbox"]:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(10, 38, 71, 0.1);
}

.contact-form-inner label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.contact-form-inner label:has(input[type="checkbox"]) input[type="checkbox"] {
    margin-top: 0.125rem;
}

.contact-form-inner label:has(input[type="checkbox"]) a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-form-inner label:has(input[type="checkbox"]) a:hover {
    color: var(--primary-peach);
}

@media (max-width: 767px) {
    .contacts-content {
        margin-top: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.contact-map {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 1rem;
    border: 0.125rem solid #e5e7eb;
    height: fit-content;
}

/* Sync map height with contact form */
@media (min-width: 992px) {
    .contacts-content .row {
        display: flex;
        align-items: flex-start;
    }
    
    .contact-map {
        height: auto;
        margin-top: 1rem;
    }
    
    .contact-map #map {
        height: 18.7500rem !important;
    }
}

.contact-map #map {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.1250rem 0.5rem rgba(0, 0, 0, 0.1);
    height: 15rem;
}

/* Ensure consistent height on all screens from 992px+ */
@media (min-width: 992px) {
    .contact-map #map {
        height: 290px !important;
    }
    
    .contact-form-inner textarea {
        min-height: 10.7rem;
    }
}

@media (max-width: 767px) {
    .contact-map {
        margin-top: 1.5rem;
        padding: 0.5rem;
    }
    
    .contact-map #map {
        height: 18.7500rem !important;
    }
}

/* Hero section */
.hero {
    padding: 3rem 0;
    text-align: center;
}

.hero-title {
    color: var(--primary-blue) !important;
    font-family: 'Novelist', serif;
    font-weight: normal;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.hero-text {
    color: var(--main-text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 37.5000rem;
    margin-left: auto;
    margin-right: auto;
}

/* General content containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.2500rem;
}

/* Content spacing utilities */
.section {
    padding: 3rem 0;
}

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

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

/* Responsive spacing adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.8750rem;
    }
    
    /* Remove side padding from nested containers */
    .container .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Enhanced mobile typography and spacing - 991px and below */
@media (max-width: 991px) {
    .container {
        padding: 0 1.5rem;
    }
    
    /* Remove side padding from nested containers */
    .container .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Section spacing improvements */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        line-height: 1.2;
    }
    
    
    /* FAQ styles moved to components/faq-common.css */
    
    /* Better accordion spacing on mobile */
    .accordion-item {
        margin-bottom: 15px;
    }
    
    .accordion-button {
        padding: 1.25rem;
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    /* Improved touch targets */
    .slide-btn, .add-to-cart-btn, .header-btn {
        min-height: 2.7500rem;
        border-radius: 0.5000rem;
    }
    
    /* Enhanced mobile interactions */
    .nav-link, .mobile-nav-link, .footer-link {
        min-height: 2.7500rem;
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    /* Better mobile menu styles */
    .mobile-nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        line-height: 1.3;
        border-bottom: 0.0625rem solid rgba(10, 38, 71, 0.1);
    }
    
    .mobile-nav-link:last-child {
        border-bottom: none;
    }
    
    /* Improved swiper pagination for touch */
    .swiper-pagination-bullet {
        width: 0.7500rem !important;
        height: 0.7500rem !important;
        margin: 0 0.3750rem !important;
    }
    
    /* Better contact form on mobile */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        min-height: 2.7500rem;
        font-size: 1rem; /* Prevents zoom on iOS */
        padding: 15px;
    }
    
    /* Improved callback modal for mobile */
    .callback-form-input,
    .callback-form-select {
        min-height: 2.7500rem;
        font-size: 1rem;
        padding: 15px;
    }
}


@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Remove side padding from nested containers */
    .container .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    h1 {
        font-size: 26px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    h2 {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    h3 {
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .legal-content h2 {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .legal-content h3 {
        margin-top: 1.5rem;
        margin-bottom: 15px;
    }
}

/* Desktop Footer - 5 equal columns from 992px+ */
@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
    
    .footer-subtitle {
        margin-top: 0.2rem;
    }
}

/* Tablet Footer - 2 columns */
@media (max-width: 991px) and (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile Footer - 1 column */
@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Mobile Footer Accordions */
    .footer-accordion .footer-subtitle {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .footer-accordion-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: none;
        border: none;
        padding: 15px 8px;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .footer-accordion-toggle:hover {
        padding-bottom: 14px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    
    .footer-accordion-icon {
        color: var(--primary-peach);
        font-size: 1.2rem;
        font-weight: bold;
        transition: transform 0.3s ease;
        min-width: 1.2500rem;
        text-align: center;
    }
    
    .footer-accordion.active .footer-accordion-icon {
        transform: rotate(45deg);
    }
    
    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 0;
    }
    
    .footer-accordion.active .footer-accordion-content {
        max-height: 24rem;
        opacity: 1;
        padding-top: 0.5rem;
    }
    
    .footer-accordion .footer-link {
        display: block;
        padding: 5px 0;
        line-height: 1.3;
        transition: all 0.2s ease;
    }
    
    .footer-accordion .footer-link:hover {
        padding-left: 0.5rem;
        color: var(--primary-peach);
    }
    
}

/* Hide footer accordions on desktop */
@media (min-width: 768px) {
    .footer-accordion-toggle {
        display: none;
    }
    
    .footer-accordion-content {
        max-height: none !important;
        opacity: 1 !important;
        padding-top: 0 !important;
    }
}

/* FAQ accordion styles moved to components/faq-common.css */

/* Hide mobile header elements on desktop */
@media (min-width: 992px) {
    .mobile-header-actions {
        display: none;
    }
    
    .header-top {
        display: flex !important;
    }
    
    .search-container,
    .header-contact {
        display: flex !important;
    }
}

.intro-image {
    flex: 1;
    max-width: 50%;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 0.833rem;
    box-shadow: 0 0.556rem 1.667rem rgba(0, 0, 0, 0.14);
    display: block;
}

.values-section {
    margin-bottom: 5rem;
}

.values-section h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.1250rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.7500rem, 1fr));
    gap: 29px;
}

.value-card {
    background-color: var(--element-color-2);
    padding: 1.8750rem;
    border-radius: 50%;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-0.6250rem);
}

.value-icon {
    margin-bottom: 1.2500rem;
}

.value-icon svg {
    color: var(--border-heading-color);
}

.value-card h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--main-text-color);
    line-height: 1.5;
}

.team-section {
    margin-bottom: 5rem;
}

.team-section h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.1250rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.6250rem, 1fr));
    gap: 2.5000rem;
}

.team-member {
    background-color: var(--element-color-2);
    padding: 1.8750rem;
    border-radius: 50%;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-0.3125rem);
}

.member-photo {
    margin-bottom: 1.2500rem;
}

.member-photo img {
    width: 9.3750rem;
    height: 9.3750rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.25rem solid var(--border-heading-color);
}

.team-member h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 1.4rem;
    margin-bottom: 0.3125rem;
}

.member-role {
    font-family: 'Miama Nueva', 'Roboto', sans-serif;
    color: var(--border-heading-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.member-description {
    color: var(--main-text-color);
    line-height: 1.4;
    font-size: 0.875rem;
}

.stats-section {
    margin-bottom: 5rem;
}

.stats-section h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.1250rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5000rem, 1fr));
    gap: 29px;
}

.stat-item {
    background-color: var(--element-color-1);
    padding: 2.5000rem 1.2500rem;
    border-radius: 50%;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-family: 'Miama Nueva', 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: var(--border-heading-color);
    font-weight: bold;
    margin-bottom: 0.6250rem;
}

.stat-label {
    color: var(--main-text-color);
    font-size: 1.1rem;
}

.contact-section h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.1250rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.1250rem;
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 1.5rem;
    margin-bottom: 1.5625rem;
}

.contact-item {
    color: var(--main-text-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-item strong {
    color: #121212;
}

.contact-item:hover strong {
    color: #000;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 10.3125rem;
}

.feedback-form input,
.feedback-form textarea {
    padding: 15px 10.3125rem;
    border: 0.125rem solid var(--border-heading-color);
    border-radius: 0.5rem;
    background-color: var(--white);
    color: var(--main-text-color);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: var(--element-color-1);
}

.submit-btn {
    padding: 15px;
    background-color: var(--element-color-1);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--border-heading-color);
    color: var(--main-text-color);
    transform: translateY(-0.1250rem);
}

.nav-link.active {
    color: var(--border-heading-color);
    font-weight: 500;
}

/* Articles Page Styles */
.articles-filters {
    margin-bottom: 2.5000rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    gap: 10.3125rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.2500rem;
    border: 0.125rem solid var(--border-heading-color);
    border-radius: 1.5625rem;
    background-color: transparent;
    color: var(--border-heading-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--border-heading-color);
    color: var(--bg-color);
}

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

@media (max-width: 991px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(18.7500rem, 1fr));
        gap: 1.5rem;
        margin-bottom: 3.7500rem;
    }
    
    
    .article-image {
        height: 12.5000rem;
    }
}

@media (max-width: 480px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5000rem;
    }
    
    
    .article-title {
        font-size: 1.1rem;
    }
    
    .article-image {
        height: 11.2500rem;
    }
}

.article-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.2500rem 1.2500rem rgba(10, 38, 71, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0.0625rem solid rgba(10, 38, 71, 0.05);
}

.article-card:hover {
    transform: translateY(-0.5000rem);
    box-shadow: 0 0.7500rem 2.5000rem rgba(10, 38, 71, 0.15);
    border-color: var(--primary-peach);
}

.article-image {
    position: relative;
    width: 100%;
    height: 15rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-brown) 100%);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-card:hover .article-title {
    color: var(--primary-brown);
}

.article-category {
    position: absolute;
    top: 10.3125rem;
    left: 10.3125rem;
    background-color: var(--element-color-1);
    color: var(--white);
    padding: 0.3125rem 0.7500rem;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 500;
}


.article-title {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: var(--primary-blue);
    opacity: 0.7;
    border-top: 0.0625rem solid rgba(10, 38, 71, 0.1);
    padding-top: 1rem;
}

.article-date,
.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-brown) 100%);
    color: var(--white);
    padding: 15px 1.5rem;
    border-radius: 1.5625rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.2500rem 15px rgba(10, 38, 71, 0.2);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-blue) 100%);
    color: var(--white);
    transform: translateY(-0.1250rem);
    box-shadow: 0 0.5000rem 1.5625rem rgba(10, 38, 71, 0.3);
}

.newsletter-section {
    background-color: var(--element-color-2);
    padding: 3.7500rem 2.5000rem;
    border-radius: 1.2500rem;
    text-align: center;
    margin-top: 3.7500rem;
}

.newsletter-content h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--main-text-color);
    font-size: 1.1rem;
    margin-bottom: 1.8750rem;
    max-width: 31.2500rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 10.3125rem;
    max-width: 25rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 0.125rem solid var(--border-heading-color);
    border-radius: 0.5rem;
    background-color: var(--white);
    color: var(--main-text-color);
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 20.3125rem;
    background-color: var(--border-heading-color);
    color: var(--bg-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--element-color-1);
    color: var(--white);
}

/* Gallery Page Styles - moved to /css/pages/gallery.css */

/* Partnership Page Styles */
.partnership-benefits {
    margin-bottom: 3.7500rem;
}

.partnership-benefits h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5000rem;
}

.lightbox-info h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--main-text-color);
    font-size: 1.5rem;
    margin-bottom: 0.6250rem;
}

.lightbox-info p {
    color: #666;
    font-size: 1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.2500rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.nav-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 3.1250rem;
    height: 3.1250rem;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    #lightbox-image {
        height: 50vh;
    }
    
    .nav-btn {
        width: 2.5000rem;
        height: 2.5000rem;
        font-size: 1.2500rem;
    }
}

/* Partnership Page Styles */
.partnership-benefits {
    margin-bottom: 3.7500rem;
}

.partnership-benefits h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5000rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.7500rem, 1fr));
    gap: 29px;
}

.benefit-card {
    background-color: var(--element-color-2);
    padding: 1.8750rem;
    border-radius: 50%;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 1.2500rem;
}

.benefit-icon svg {
    color: var(--border-heading-color);
}

.benefit-card h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--main-text-color);
}

.partnership-form-section h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5000rem;
}

.partnership-form {
    max-width: 37.5000rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2500rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2500rem;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
    padding: 15px;
    border: 0.125rem solid var(--border-heading-color);
    border-radius: 0.5rem;
    background-color: var(--white);
    color: var(--main-text-color);
    font-size: 1rem;
    outline: none;
}

/* Delivery Page Styles */
.delivery-options,
.payment-methods {
    margin-bottom: 3.7500rem;
}

.delivery-options h2,
.payment-methods h2 {
    color: var(--border-heading-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5000rem;
}

.delivery-grid,
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.7500rem, 1fr));
    gap: 29px;
}

.delivery-card,
.payment-card {
    background-color: var(--element-color-2);
    padding: 1.8750rem;
    border-radius: 50%;
}

.delivery-card h3,
.payment-card h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    margin-bottom: 15px;
}

.delivery-card p,
.payment-card p {
    color: var(--main-text-color);
    margin-bottom: 0.6250rem;
}

/* Instructions Page Styles */
.instructions-steps {
    margin-bottom: 3.7500rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 29px;
    margin-bottom: 2.5000rem;
    padding: 1.8750rem;
}

.step-number {
    background-color: var(--border-heading-color);
    color: var(--bg-color);
    width: 3.1250rem;
    height: 3.1250rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    margin-bottom: 0.6250rem;
}

.step-content p {
    color: var(--main-text-color);
}

/* FAQ h2 styles moved to components/faq-common.css */
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.7500rem, 1fr));
    gap: 29px;
}

.faq-item {
    background-color: var(--element-color-2);
    padding: 20.3125rem;
    border-radius: 50%;
}

.faq-item h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    margin-bottom: 0.6250rem;
}

.faq-item p {
    color: var(--main-text-color);
}

/* Stores Page Styles */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23.7500rem, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.store-card {
    background: var(--white);
    border-radius: 0.5000rem;
    padding: 1.5rem;
    border: 0.0625rem solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-card:hover {
    box-shadow: 0 0.1250rem 0.5000rem rgba(10, 38, 71, 0.1);
    border-color: var(--primary-peach);
}

.store-card h3 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.store-card h3::before {
    content: '📍';
    width: 2rem;
    height: 2rem;
    background: var(--primary-peach);
    border-radius: 0.2500rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.store-card p {
    color: var(--main-text-color);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.store-card strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Store info detailed styles */
.store-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.store-address {
    color: var(--main-text-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0.2500rem;
    border-left: 0.2500rem solid var(--primary-blue);
}

.store-address::before {
    content: '📍';
    width: 1.5000rem;
    height: 1.5000rem;
    background: var(--primary-blue);
    border-radius: 0.2500rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    flex-shrink: 0;
    color: var(--white);
}

.store-phone {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 1rem;
    background: var(--primary-peach);
    border-radius: 0.2500rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.store-phone::before {
    content: '📞';
    font-size: 0.8125rem;
}

.store-phone:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.store-hours {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 0.2500rem;
    border-left: 0.2500rem solid var(--primary-brown);
    margin-bottom: 1rem;
}

.store-hours strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-brown);
    font-size: 1rem;
    font-weight: 600;
}

.store-hours strong::before {
    content: '🕒';
    width: 1.5000rem;
    height: 1.5000rem;
    background: var(--primary-brown);
    border-radius: 0.2500rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.store-map {
    margin-top: 0;
    overflow: hidden;
    border: 0.0625rem solid #e0e0e0;
}

.store-map iframe {
    display: block;
    width: 100%;
    height: 12.5000rem;
    border: none;
}

@media (max-width: 991px) {
    .stores-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .store-card {
        padding: 1.25rem;
    }
}

@media (max-width: 767px) {
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .store-card {
        padding: 1rem;
    }
    
    .store-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .store-address,
    .store-hours {
        padding: 0.625rem;
        font-size: 0.875rem;
    }
    
    .store-phone {
        padding: 0.625rem 13px;
        font-size: 0.875rem;
    }
    
    .store-map iframe {
        height: 9.3750rem;
    }
}

.store-phone a {
    color: var(--primary-peach);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.store-phone a:hover {
    color: var(--white);
    text-decoration: underline;
}

.store-hours {
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.store-services h4 {
    color: var(--primary-peach);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.store-services ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--white);
}

.store-services li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        gap: 1.2500rem;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10.3125rem;
        width: 100%;
    }
    
    .search-container {
        max-width: none;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.6250rem;
    }
    
    .catalog-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        margin: 0;
        height: 100vh;
        overflow-y: auto;
    }
    
    .dropdown-container {
        flex-direction: column;
        max-width: none;
    }
    
    .categories-list {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}
/* Lazy Loading Styles */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

.lazy-load.loading {
    background-color: #f5f5f5;
    background-image: linear-gradient(90deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Background lazy loading */
.lazy-bg {
    background-image: none !important;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.lazy-bg.loaded {
    background-color: transparent;
}

/* Catalog link hover effect */
.catalog-link:hover .icon {
    color: white !important;
    filter: brightness(0) saturate(100%) invert(1) !important;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 10.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.burger-line {
    width: 100%;
    height: 0.1250rem;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 10000 !important;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

body.mobile-menu-active {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000 !important;
}

.mobile-menu-content {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 320px;
    height: 100vh !important;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -0.5000rem 0 2rem rgba(10, 38, 71, 0.15);
    z-index: 10001 !important;
    box-sizing: border-box;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d2f52 100%);
    color: white;
    box-shadow: 0 0.2500rem 0.7500rem rgba(10, 38, 71, 0.2);
    position: relative;
    height: 83px !important;
    box-sizing: border-box;
    min-height: 83px;
    flex-shrink: 0;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-logo-img {
    height: 3rem;
    width: auto;
    filter: drop-shadow(0 0.1250rem 0.2500rem rgba(0, 0, 0, 0.1));
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    width: 2.7500rem;
    height: 2.7500rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(0.6250rem);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-close .icon {
    width: 1.2500rem;
    height: 1.2500rem;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
    position: relative;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    position: static;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--primary-peach);
    text-decoration: none;
    border-bottom: 0.0625rem solid rgba(10, 38, 71, 0.06);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 0.7500rem;
    margin-bottom: 0.2500rem;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, var(--primary-peach) 0%, #f0c088 100%);
    color: var(--primary-blue);
    transform: translateX(0.5000rem);
    box-shadow: 0 0.2500rem 0.7500rem rgba(255, 207, 157, 0.5);
    border-bottom: 0.0625rem solid transparent;
}

.mobile-nav-link:active {
    transform: translateX(0.2500rem) scale(0.98);
}

.mobile-nav-link .icon {
    width: 1.3750rem;
    height: 1.3750rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover .icon {
    transform: scale(1.1);
}

/* Hide catalog icon in mobile menu */
.mobile-nav-item:first-child .mobile-nav-link .icon {
    display: none;
}

.mobile-nav-arrow {
    margin-left: auto;
    color: rgba(10, 38, 71, 0.4);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover .mobile-nav-arrow {
    color: var(--primary-blue);
    transform: translateX(0.2500rem);
}

.mobile-submenu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10;
    display: none;
    flex-direction: column;
}

.mobile-submenu.active {
    display: flex;
    transform: translateX(0);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    overflow: hidden;
}

.mobile-submenu-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1625rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 0.0625rem solid rgba(10, 38, 71, 0.08);
    box-shadow: 0 0.1250rem 0.5000rem rgba(10, 38, 71, 0.05);
    height: 83px;
}

.mobile-back-btn {
    background: rgba(10, 38, 71, 0.1);
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3750rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 15px;
    border-radius: 0.5000rem;
    transition: all 0.3s ease;
}


.mobile-back-btn .icon-arrow-left {
    width: 1rem;
    height: 1rem;
    background-size: contain;
}

.mobile-submenu-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mobile-submenu-content {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(0.5000rem);
    -webkit-backdrop-filter: blur(0.5000rem);
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: calc(100vh - 5rem);
}

.mobile-submenu-link {
    display: block;
    padding: 13px 1.5rem;
    color: var(--main-text-color);
    text-decoration: none;
    border-bottom: 0.0625rem solid rgba(10, 38, 71, 0.04);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    margin-bottom: 0.1250rem;
}

.mobile-submenu-link:hover {
    background: linear-gradient(135deg, rgba(255, 207, 157, 0.35) 0%, rgba(255, 207, 157, 0.45) 100%);
    color: var(--primary-blue);
    transform: translateX(0.7500rem);
    border-bottom: 0.0625rem solid transparent;
}

.mobile-submenu-link:last-child {
    border-bottom: none;
}

.mobile-menu-footer {
    padding: 1.5rem 1.5rem 100px 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 0.0625rem solid rgba(10, 38, 71, 0.08);
    box-shadow: 0 -0.2500rem 0.7500rem rgba(10, 38, 71, 0.05);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7500rem;
    text-decoration: none;
    color: var(--main-text-color);
    transition: all 0.3s ease;
    padding: 0.5rem 15px;
    border-radius: 0.5000rem;
    margin: 0 -15px;
}

.mobile-contact-item:hover {
    color: var(--primary-blue);
    background: rgba(10, 38, 71, 0.05);
    transform: translateX(0.2500rem);
}

.mobile-contact-item .icon {
    width: 1.3750rem;
    height: 1.3750rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mobile-contact-item:hover .icon {
    transform: scale(1.1);
}

.mobile-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.1250rem;
}

.mobile-contact-label {
    font-size: 0.875rem;
    color: rgba(10, 38, 71, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.0312rem;
    font-weight: 600;
}

.mobile-contact-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--main-text-color);
    letter-spacing: -0.01em;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Mobile header responsive adjustments */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
    
    .header-container {
        display: flex;
        align-items: center;
        padding: 1rem 0;
        gap: 1rem;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .header-left {
        flex: 0 0 auto;
    }
    
    .header-right {
        margin-left: auto;
        flex: 0 0 auto;
    }
    .logo-image {
        height: 67px;
    }    
    /* Logo on the left */
    .header-left {
        flex-shrink: 0;
    }
    
    /* Hide desktop elements */
    .header-top,
    .search-container,
    .header-contact {
        display: none;
    }
    
    /* Header-right contains 4 circular icons */
    .header-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    /* Mobile icons container - only show on mobile */
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }
    
    /* Mobile header buttons - equal circular icons */
    .mobile-header-actions .header-btn {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-blue);
        border: none;
        cursor: pointer;
        transition: none;
        position: relative;
        box-shadow: 0 0.1250rem 0.5000rem rgba(10, 38, 71, 0.2);
        padding: 0;
    }
    
    /* Mobile header button hover effects */
    .mobile-header-actions .header-btn:hover {
        background: var(--primary-blue);
        transform: none;
        box-shadow: 0 0.1250rem 0.5000rem rgba(10, 38, 71, 0.2);
    }
    
    .mobile-header-actions .header-btn:active {
        background: var(--primary-blue);
    }

    /* Disable icon hover effects in mobile header */
    .mobile-header-actions .header-btn:hover .icon.white {
        filter: brightness(0) saturate(100%) invert(1);
    }
    
    /* Mobile header icons */
    .mobile-header-actions .header-btn .icon {
        width: 1.2500rem;
        height: 1.2500rem;
        fill: var(--white);
    }
    
    /* Mobile cart count badge */
    .mobile-header-actions .cart-count {
        position: absolute;
        top: .125rem;
        right: .125rem;
        font-size: 12px;
        line-height: 12px;
        background: var(--primary-peach);
        color: var(--primary-blue);
        border-radius: 50%;
        width: 18px;
        height: 18px;
        min-width: 1.125rem;
        min-height: 1.125rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .2);
        text-align: center;
    }
    
    /* Mobile burger menu lines */
    .mobile-header-actions .burger-line {
        display: block;
        width: 1.1250rem;
        height: 0.1250rem;
        background: var(--white);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 0.0625rem;
    }
    
    .cart-count {
        font-size: 0.875rem;
        width: 1.0625rem;
        height: 1.0625rem;
        line-height: 1.0625rem;
        background: var(--primary-peach);
        color: var(--primary-blue);
        border-radius: 50%;
        position: absolute;
        top: -0.25rem;
        right: -0.25rem;
        font-weight: 600;
        box-shadow: 0 0.1250rem 0.25rem rgba(0, 0, 0, 0.2);
    }
    
    /* Mobile search overlay */
    .mobile-search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 83px;
        background: var(--primary-blue);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0 12px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10002;
        box-shadow: 0 0.25rem 1.25rem rgba(10, 38, 71, 0.2);
        backdrop-filter: blur(0.5rem);
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .mobile-search-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    
    .mobile-search-input {
        flex: 1;
        padding: 10px 1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        font-size: 16px;
        font-family: 'Alegreya Sans', sans-serif;
        outline: none;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.95);
        color: var(--main-text-color);
        height: 48px;
        box-sizing: border-box;
    }
    
    .mobile-search-input:focus {
        border-color: var(--primary-peach);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(255, 207, 157, 0.4);
        transform: scale(1.02);
    }
    
    .mobile-search-input::placeholder {
        color: rgba(18, 18, 18, 0.7);
        font-size: 16px;
    }
    
    .mobile-search-close {
        padding: 0.5rem;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
        backdrop-filter: blur(10px);
    }
    
    .mobile-search-close:hover {
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.1);
    }
    
    .mobile-search-btn {
        padding: 0.5rem;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-peach);
        border: 2px solid var(--primary-peach);
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .mobile-search-btn:hover {
        background: rgba(255, 207, 157, 0.9);
        transform: scale(1.05);
    }
    
    .mobile-search-btn .icon {
        width: 18px;
        height: 18px;
        fill: var(--primary-blue);
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    }
    
    .mobile-search-close .icon {
        width: 18px;
        height: 18px;
        fill: var(--white);
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    }
    
    /* Search button styling */
    .search-toggle-btn {
        background: var(--primary-blue);
    }
    
    .search-toggle-btn:hover {
        background: var(--primary-brown);
    }
    
    /* Desktop search display rules */
    @media (min-width: 992px) {
        .search-container {
            display: flex !important;
        }
        
        .user-actions .header-btn.search-toggle-btn {
            display: none !important;
        }
    }
    
    /* Burger menu styling */
    .mobile-menu-toggle {
        background: var(--primary-blue);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--primary-brown);
    }
    
    .burger-line {
        width: 10.5rem;
        height: 0.1250rem;
        background: var(--white);
        display: block;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 0.0625rem;
    }
    
    .mobile-menu-toggle.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
    }
    
    .mobile-menu-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -5px);
    }
    
    /* Enhanced mobile header touch targets */
    .header-btn {
        min-width: 2.7500rem;
        min-height: 2.7500rem;
        padding: 0.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better mobile header spacing */
    .header-top {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Mobile-optimized user actions */
    .user-actions {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    
    .mobile-search-input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 1rem;
        height: 50px;
        border-radius: 25px;
    }
    
    .mobile-search-btn {
        width: 44px;
        height: 44px;
    }
    
    .mobile-search-close {
        width: 44px;
        height: 44px;
    }
}

/* Ultra small screens */
@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem 0;
        background: transparent;
        gap: 5px;
    }

    
    .header-btn {
        min-width: 2.5000rem;
        height: 2.5000rem;
        padding: 5px;
    }
    
    .header-btn .icon {
        width: 15px;
        height: 15px;
    }
    
    .user-actions {
        gap: 0.25rem;
    }
    
    .header-right {
        gap: 5px;
    }
    
    
    .mobile-search-input {
        padding: 10px 0.75rem;
        font-size: 16px;
        height: 45px;
        border-radius: 22px;
    }
    
    .mobile-search-btn {
        width: 40px;
        height: 40px;
        padding: 0.25rem;
    }
    
    .mobile-search-close {
        width: 40px;
        height: 40px;
        padding: 0.25rem;
    }
    
    .cart-count {
        font-size: 0.875rem;
        width: 1rem;
        height: 1rem;
        line-height: 1rem;
    }
}

/* Mobile slider text optimization */
@media (max-width: 767px) {
    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        text-align: center;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        padding: 0 1.2500rem !important;
        text-align: center;
        word-wrap: break-word;
    }
    
    .slide-content {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .slide-btn {
        width: 100%;
        max-width: 17.5000rem;
        text-align: center;
        padding: 15px 1.2500rem;
        font-size: 0.8125rem;
        font-weight: 500;
    }
    
    .swiper {
        height: auto;
    }
    
    /* Banner text improvements */
    .hero-section h1,
    .page-header h1 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
        word-wrap: break-word;
    }
    
    .hero-section p,
    .page-header p {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 1.2500rem !important;
        text-align: center;
        word-wrap: break-word;
    }
    
    .page-header {
        margin-bottom: 33px;
    }
    
    /* Category page titles */
    .category-title {
        font-size: 1.6rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .category-description {
        font-size: 0.9375rem;
        line-height: 1.4;
        text-align: center;
        padding: 0 0.6250rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-content {
        padding: 1rem 0.8rem;
    }
    
    .swiper {
        height: auto;
    }
    
}

/* ВАЖНО: Скрытие mobile-search-overlay на десктопе - должно быть в конце файла */
@media (min-width: 992px) {
    .mobile-search-overlay,
    .mobile-search-overlay.active {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-100%) !important;
    }
    
    /* ВАЖНО: Скрытие search-toggle-btn на десктопе */
    .header .header-right .user-actions .header-btn.search-toggle-btn {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Стилизация скроллбаров в фирменном стиле */
::-webkit-scrollbar {
    width: 0.5000rem;
    height: 0.5000rem;
}

::-webkit-scrollbar-track {
    background: rgba(255, 207, 157, 0.1);
    border-radius: 0.2500rem;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-peach);
    border-radius: 0.2500rem;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

::-webkit-scrollbar-corner {
    background: rgba(255, 207, 157, 0.1);
}

/* Стилизация для Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-peach) rgba(255, 207, 157, 0.25);
}

/* ========================================
   BOOTSTRAP GRID OVERRIDE FIX
   ======================================== */
/* Восстанавливаем Bootstrap grid после глобального reset */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.col-1 { flex: 0 0 auto; width: 8.33333333%; }
.col-2 { flex: 0 0 auto; width: 16.66666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-5 { flex: 0 0 auto; width: 41.66666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.33333333%; }
.col-8 { flex: 0 0 auto; width: 66.66666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.33333333%; }
.col-11 { flex: 0 0 auto; width: 91.66666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

.col-auto { flex: 0 0 auto; width: auto; }

.g-0, .gx-0 { --bs-gutter-x: 0; }
.g-0, .gy-0 { --bs-gutter-y: 0; }
.g-1, .gx-1 { --bs-gutter-x: 0.25rem; }
.g-1, .gy-1 { --bs-gutter-y: 0.25rem; }
.g-2, .gx-2 { --bs-gutter-x: 0.5rem; }
.g-2, .gy-2 { --bs-gutter-y: 0.5rem; }
.g-3, .gx-3 { --bs-gutter-x: 1rem; }
.g-3, .gy-3 { --bs-gutter-y: 1rem; }
.g-4, .gx-4 { --bs-gutter-x: 1.5rem; }
.g-4, .gy-4 { --bs-gutter-y: 1.5rem; }
.g-5, .gx-5 { --bs-gutter-x: 3rem; }
.g-5, .gy-5 { --bs-gutter-y: 3rem; }

/* Responsive breakpoints */
@media (min-width: 576px) {
    .container, .container-sm { max-width: 540px; }
    .col-sm { flex: 1 0 0%; }
    .col-sm-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-sm-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-sm-3 { flex: 0 0 auto; width: 25%; }
    .col-sm-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-sm-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-sm-6 { flex: 0 0 auto; width: 50%; }
    .col-sm-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-sm-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-sm-9 { flex: 0 0 auto; width: 75%; }
    .col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
    .col-sm-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-sm-12 { flex: 0 0 auto; width: 100%; }
    .col-sm-auto { flex: 0 0 auto; width: auto; }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm { max-width: 720px; }
    .col-md { flex: 1 0 0%; }
    .col-md-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-md-3 { flex: 0 0 auto; width: 25%; }
    .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-md-9 { flex: 0 0 auto; width: 75%; }
    .col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
    .col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-md-12 { flex: 0 0 auto; width: 100%; }
    .col-md-auto { flex: 0 0 auto; width: auto; }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm { max-width: 960px; }
    .col-lg { flex: 1 0 0%; }
    .col-lg-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-lg-9 { flex: 0 0 auto; width: 75%; }
    .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
    .col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-lg-12 { flex: 0 0 auto; width: 100%; }
    .col-lg-auto { flex: 0 0 auto; width: auto; }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl { max-width: 1140px; }
    .col-xl { flex: 1 0 0%; }
    .col-xl-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-xl-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-xl-3 { flex: 0 0 auto; width: 25%; }
    .col-xl-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-xl-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-xl-6 { flex: 0 0 auto; width: 50%; }
    .col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-xl-9 { flex: 0 0 auto; width: 75%; }
    .col-xl-10 { flex: 0 0 auto; width: 83.33333333%; }
    .col-xl-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-xl-12 { flex: 0 0 auto; width: 100%; }
    .col-xl-auto { flex: 0 0 auto; width: auto; }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { max-width: 1320px; }
}

/* ========= CALLBACK MODAL STYLES ========= */
/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.callback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 38, 71, 0.8);
    backdrop-filter: blur(0.2500rem);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 1.2500rem;
}

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

.callback-modal {
    background: white;
    border-radius: 0.7500rem;
    border: 0.1250rem solid white;
    box-shadow: 0 15px 2.5000rem rgba(10, 38, 71, 0.25);
    max-width: 23.7500rem;
    width: 100%;
    max-height: 95vh;
    min-height: 25rem;
    overflow: hidden;
    transform: scale(0.9) translateY(1.8750rem);
    transition: transform 0.3s ease;
    position: relative;
}

.callback-modal-overlay.active .callback-modal {
    transform: scale(1) translateY(0);
}

.callback-modal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-peach));
    padding: 1.2500rem;
    border-radius: 0.7500rem 0.7500rem 0 0;
    text-align: center;
    position: relative;
}

.callback-modal-icon {
    width: 3.1250rem;
    height: 3.1250rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(0.6250rem);
}

.callback-modal-icon .icon {
    font-size: 1.2500rem;
    color: white;
}

.callback-modal-title {
    color: white;
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5000rem 0;
    text-shadow: 0 0.1250rem 0.2500rem rgba(0, 0, 0, 0.1);
}

.callback-modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.3;
}

.callback-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(0.6250rem);
}

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

.callback-modal-close .icon {
    font-size: 0.875rem;
    color: white;
}

.callback-modal-body {
    padding: 1.5625rem 1.25rem 1.25rem;
    padding-bottom: 6rem;
    overflow-y: auto;
    max-height: calc(95vh - 6.25rem);
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.callback-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.callback-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.callback-form-label {
    font-family: 'Alegreya Sans', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9375rem;
}

.callback-form-input,
.callback-form-select {
    padding: 15px 13px;
    border: 0.125rem solid #e1e8ed;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.callback-form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.callback-form-input:focus,
.callback-form-select:focus {
    border-color: var(--primary-peach);
    box-shadow: 0 0 0 3px rgba(255, 207, 157, 0.4);
}

/* Validation states */
.callback-form-input.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.callback-form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.callback-checkbox.valid + .callback-checkbox-text {
    color: #10b981;
}

.callback-checkbox.error + .callback-checkbox-text {
    color: #ef4444;
}

.callback-form-input::placeholder {
    color: #94a3b8;
}

/* Remove autofill blue background for callback form */
.callback-form-input:-webkit-autofill,
.callback-form-input:-webkit-autofill:hover,
.callback-form-input:-webkit-autofill:focus,
.callback-form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1.8750rem white inset !important;
    -webkit-text-fill-color: var(--main-text-color) !important;
    background-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Universal autofill styles for all forms */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1.8750rem white inset !important;
    -webkit-text-fill-color: var(--main-text-color) !important;
    background-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: var(--main-text-color) !important;
}

/* Firefox autofill styles */
input:-moz-autofill,
input:-moz-autofill:hover,
input:-moz-autofill:focus,
textarea:-moz-autofill,
textarea:-moz-autofill:hover,
textarea:-moz-autofill:focus,
select:-moz-autofill,
select:-moz-autofill:hover,
select:-moz-autofill:focus {
    background-color: white !important;
    color: var(--main-text-color) !important;
    border-color: #e1e8ed !important;
    box-shadow: none !important;
}

.callback-checkbox-group {
    margin: 5px 0;
}

.callback-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.callback-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 7px;
    height: 7px;
    border: 0.125rem solid #e5e7eb;
    border-radius: 0.25rem;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
    padding: 0.45rem;
    margin-top: 0.125rem;
    transition: all 0.3s ease;
}

.callback-checkbox:hover {
    border-color: var(--primary-peach);
    box-shadow: 0 0 0 0.125rem rgba(255, 207, 157, 0.25);
}

.callback-checkbox:checked {
    background-color: var(--primary-peach);
    border-color: var(--primary-peach);
    box-shadow: 0 0 0 0.125rem rgba(255, 207, 157, 0.4);
}

.callback-checkbox:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-blue);
    font-size: 0.8125rem;
    font-weight: bold;
    line-height: 1;
}

.callback-checkbox:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(10, 38, 71, 0.1);
}

.callback-checkbox-text {
    color: var(--main-text-color);
}

.callback-checkbox-text a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.callback-checkbox-text a:hover {
    color: var(--primary-peach);
}

.callback-form-submit {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-peach));
    color: white;
    border: none;
    padding: 13px 1.25rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 3px 15px rgba(10, 38, 71, 0.2);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.callback-form-submit:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 5px 1.25rem rgba(10, 38, 71, 0.3);
}

.callback-form-submit:active {
    transform: translateY(0);
}

.callback-form-submit .icon {
    font-size: 1.125rem;
    color: white;
    filter: invert(1);
}

.callback-form-submit:hover .icon {
    color: white;
    filter: invert(1);
}

.callback-form-submit:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.callback-form-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

.callback-form-submit:disabled .icon {
    color: #9ca3af;
    filter: invert(0.6);
}

.callback-form-footer {
    padding-top: 1.25rem;
    margin-top: 1rem;
    border-top: 0.0625rem solid #e5e7eb;
}

.callback-result {
    padding: 1.25rem;
    border-radius: 15px;
    margin-top: 1.25rem;
    text-align: center;
    font-weight: 500;
}

.callback-result.success {
    background: #d1fae5;
    color: #065f46;
    border: 0.0625rem solid #a7f3d0;
}

.callback-result.error {
    background: #fee2e2;
    color: #dc2626;
    border: 0.0625rem solid #fca5a5;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .callback-modal {
        margin: 0.6250rem;
        max-width: calc(100% - 1.2500rem);
        min-height: 21.8750rem;
    }
    
    .callback-modal-header {
        padding: 1.1250rem 15px;
    }
    
    .callback-modal-title {
        font-size: 1.3rem;
    }
    
    .callback-modal-subtitle {
        font-size: 0.8125rem;
    }
    
    .callback-modal-body {
        padding: 1.25rem 15px;
        max-height: calc(95vh - 5rem);
    }
    
    .callback-form {
        gap: 10px;
    }
    
    .callback-form-submit {
        font-size: 0.9375rem;
        padding: 15px 1.125rem;
    }
    
    .callback-form-footer {
        padding-top: 1rem;
        margin-top: 5px;
    }
}

/* Very small height screens */
@media (max-height: 31.2500rem) {
    .callback-modal {
        max-height: 98vh;
        min-height: auto;
        margin: 1vh 0.6250rem;
    }
    
    .callback-modal-header {
        padding: 1rem;
    }
    
    .callback-modal-title {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }
    
    .callback-modal-subtitle {
        font-size: 0.8125rem;
    }
    
    .callback-modal-body {
        padding: 1rem;
        max-height: calc(98vh - 3rem);
    }
    
    .callback-form {
        gap: 15px;
    }
    
    .callback-form-fields {
        gap: 15px;
    }
    
    .callback-form-footer {
        padding-top: 15px;
        margin-top: 0.5rem;
    }
    
    .callback-form-submit {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

/* Breadcrumbs styles moved to pages/breadcrumbs.css */

/* Базовые стили для курсива (без глобальных переопределений) */
em,
i,
[style*="italic"] {
    font-style: italic;
}

/* FINAL SWIPER PAGINATION OVERRIDE - Must be at the end to override all Swiper.js defaults */
/* This ensures all pagination bullets work consistently across all sliders */
.container .swiper .swiper-pagination .swiper-pagination-bullet-active,
.hero-slider .swiper .swiper-pagination .swiper-pagination-bullet-active,
.products-slider .swiper .swiper-pagination .swiper-pagination-bullet-active,
.news-slider .swiper .swiper-pagination .swiper-pagination-bullet-active,
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background: #FFCF9D !important;
    opacity: 1 !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 207, 157, 0.3) !important;
}

/* Ensure all inactive bullets are consistent */
.container .swiper .swiper-pagination .swiper-pagination-bullet,
.hero-slider .swiper .swiper-pagination .swiper-pagination-bullet,
.products-slider .swiper .swiper-pagination .swiper-pagination-bullet,  
.news-slider .swiper .swiper-pagination .swiper-pagination-bullet,
.swiper-container .swiper-pagination .swiper-pagination-bullet {
    background: rgba(10, 38, 71, 0.5) !important;
    opacity: 1 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Адаптивность для планшетов и небольших экранов */
@media (max-width: 991px) {
    .main-content {
        padding: 44px 0 66px 0;
    }
    
    .footer {
        margin-top: 0;
        padding: 55px 0 28px;
    }
}

/* Альбомная ориентация для мобильных устройств */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-menu-content {
        width: 100% !important;
        max-width: 400px;
    }
    
    /* mobile-menu-header остается 83px как требуется */
    
    .mobile-menu-body {
        height: calc(100vh - 83px) !important;
        overflow-y: auto !important;
        padding: 0.5rem 0 !important;
        min-height: 200px !important; /* минимальная высота для отображения контента */
    }
    
    .mobile-nav-link {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    .mobile-submenu-content {
        height: calc(100vh - 83px) !important;
    }
    
    .mobile-submenu-header {
        padding: 0.75rem 1rem !important;
    }
    
    .mobile-submenu-link {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
}

/* Более экстремальная альбомная ориентация */
@media (max-height: 400px) and (orientation: landscape) {
    /* mobile-menu-header остается 83px */
    
    .mobile-menu-body {
        height: calc(100vh - 83px) !important;
        overflow-y: auto !important;
        padding: 0.3rem 0 !important;
    }
    
    .mobile-nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .mobile-submenu-content {
        height: calc(100vh - 83px) !important;
    }
    
    .mobile-submenu-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

/* Universal Success Message Styles */
.success-message {
    background: linear-gradient(135deg, #d1fae5 0%, #ecfccb 100%);
    color: #065f46;
    border: 0.125rem solid #a7f3d0;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    animation: showSuccess 0.3s ease forwards;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 1.5rem;
}

@keyframes showSuccess {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Universal Error Message Styles */
.error-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fef1f1 100%);
    color: #dc2626;
    border: 0.125rem solid #fca5a5;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    animation: showError 0.3s ease forwards;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes showError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-arrow {
    height: 1rem;
    width: 1rem;
}

/* Subcategories swiper styles moved to catalog.css */

/* Принудительный зеленый цвет для статуса наличия */
.product-card .product-info .product-stock-status.in-stock,
.col-lg-3 .product-card .product-stock-status.in-stock,
p.product-stock-status.in-stock,
span.in-stock {
    color: #22c55e !important;
    font-weight: 500 !important;
}

.product-stock-status.in-stock span {
    color: #22c55e !important;
}

.description-content h2 {
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    .swiper-pagination {
        margin-top: 0.5rem;
    }
}
