:root {
    --primary-bg: #ffffff;
    --accent-color: #000000;
    --text-main: #1a1a1a;
    --header-bg: #ffffff;
    --border-color: #eeeeee;
    --royal-gold: #c5a059;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-aura: background 1.5s ease, color 1.5s ease;
}

/* --- Midnight Aura Variables --- */
body.midnight-aura {
    --primary-bg: #0a0a0c;
    --accent-color: #e0e0e0;
    --text-main: #d1d1d1;
    --header-bg: rgba(10, 10, 12, 0.98);
    --border-color: #1a1a1c;
    --logo-filter: invert(1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Outfit', 'Inter', sans-serif;
    min-height: 100vh;
    transition: opacity 0.6s ease, var(--transition-aura);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    opacity: 1 !important;
}

.main-header.scrolled {
    height: 70px;
    background: var(--header-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.header-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.line {
    width: 100%;
    height: 1.5px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.header-separator {
    width: 1px;
    height: 24px;
    background-color: #dddddd;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
    padding: 0;
}

.search-icon {
    width: 18px;
    height: 18px;
    display: block;
    max-width: 18px;
    max-height: 18px;
}

.header-center {
    display: flex;
    justify-content: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: var(--logo-filter, none);
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.hero-banner {
    position: relative;
    width: 100%;
    margin-top: 100px;
    overflow: hidden;
    line-height: 0;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.categories-section {
    position: relative;
    max-width: 1700px;
    width: calc(100% - 40px);
    margin: 40px auto;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.categories-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
}

.category-links {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.category-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    padding: 10px 0;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.category-link:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.category-link:hover::after {
    width: 100%;
}

@media (max-width: 1024px) {
    .category-links {
        gap: 30px;
    }

    .category-link {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: calc(70px + env(safe-area-inset-top));
        padding: calc(10px + env(safe-area-inset-top)) 20px 0;
        background: linear-gradient(to bottom, var(--primary-bg) 0%, transparent 100%);
        border-bottom: none;
    }

    .main-header.scrolled {
        background: var(--header-bg);
        border-bottom: 1px solid var(--border-color);
    }

    .header-separator {
        display: none;
    }

    .search-btn span {
        display: none;
    }

    .hero-banner {
        margin-top: 0;
        height: 100dvh;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .hero-banner .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Seamless fade at the bottom of the banner bridging to the next section */
    .hero-banner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 15vh;
        background: linear-gradient(to top, var(--primary-bg) 0%, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }

    .categories-section {
        height: auto;
        padding: 40px 0;
        margin: 20px auto;
        border-radius: 0;
        width: 100%;
    }

    .categories-container {
        padding: 0;
        width: 100%;
    }

    .category-links {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 25px;
        overflow-x: auto;
        padding: 10px 50px 20px 50px;
        /* added extra horizontal padding to center and avoid hugging edges */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .category-links::-webkit-scrollbar {
        display: none;
    }

    .category-link {
        flex: 0 0 auto;
        white-space: nowrap;
        scroll-snap-align: start;
        font-size: 14px;
        /* tweak size to ensure readability when zoomed */
    }

    .main-logo {
        height: 28px;
    }
}

/* --- AI-Powered Product Catalog --- */

#dynamic-products-container {
    padding: 40px 0 100px 0;
    background: #fff;
}

.product-scroll-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.product-section-header {
    margin-bottom: 30px;
}

.product-section-title {
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #000;
    text-align: center;
}

/* Horizontal Scroll Layout - Optimized */
.mainSwiper {
    width: 100%;
    padding: 20px 0 60px 0;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    /* Reduced for better screen fit */
}

.product-scroll-container {
    display: none !important;
}

.product-card {
    width: 100%;
    /* Fills the swiper-slide container controlled by Swiper */
    background: #fff;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

/* .swiper-slide width: auto !important removed to allow fixed slidesPerView */

.product-card:hover {
    transform: translateY(-8px);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
    border: 1px solid #f5f5f5;
    padding: 30px;
    /* Adds breathing room around the product */
    box-sizing: border-box;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Prevents giant look by containing the product */
    transition: transform 1.2s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.no-products-message {
    padding: 100px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
    letter-spacing: 1px;
    width: 100%;
}

@media (max-width: 768px) {
    #dynamic-products-container {
        padding: 40px 0 60px 0;
    }

    .product-scroll-wrapper {
        padding: 0 20px;
    }

    .product-card {
        width: 100%;
    }

    .product-section-title {
        font-size: 18px;
        letter-spacing: 3px;
    }
}

/* --- Premium Category Catalog (Swiper) --- */
.category-catalog-section {
    padding: 80px 0;
    background: #fff;
    display: none;
    /* Revealed on click */
    opacity: 0;
    transform: translateY(20px);
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-catalog-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.catalog-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    color: #c5a059;
    margin-bottom: 40px;
}

.swiper {
    width: 100%;
    padding: 50px 0 80px 0;
}

.swiper-slide {
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    /* Fully visible */
}

.swiper-slide-active {
    opacity: 1;
}

.catalog-card {
    background: #fff;
    padding: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.01);
    text-align: center;
    cursor: pointer;
}

.catalog-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 25px;
}

.catalog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.catalog-card:hover .catalog-img-wrapper img {
    transform: scale(1.05);
}

.catalog-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.catalog-info p {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.swiper-button-next,
.swiper-button-prev {
    color: #c5a059 !important;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 80%;
    }
}

/* --- Brand Story Section (Full Bleed) --- */
.brand-story-section {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    overflow: hidden;
}

.brand-story-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-text-side {
    flex: 1;
    padding: 100px 80px 100px 10%;
    /* Left side padding for elegant breathing room */
}

.story-pre-title {
    font-size: 10px;
    letter-spacing: 5px;
    color: #c5a059;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.story-title {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: 4px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
}

.story-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 500px;
    margin-bottom: 40px;
}

.story-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #111;
    padding-bottom: 10px;
    transition: var(--transition-smooth);
}

.story-link:hover {
    color: #c5a059;
    border-color: #c5a059;
    padding-right: 15px;
}

.story-image-side {
    flex: 1;
    height: 100%;
}

.story-image-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 600px;
    /* Fixed height for consistent look */
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.brand-story-content:hover .story-image {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .brand-story-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }

    .story-desc {
        margin: 0 auto 40px auto;
    }

    .story-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .story-image-frame {
        aspect-ratio: 1/1;
    }
}

/* --- Category Hero Section (Pomellato Style) --- */
.cat-hero-section {
    background: #fff;
    padding-top: 100px;
    /* Account for fixed header */
}

.cat-banner-box {
    width: 100%;
    height: 360px;
    /* Reduced from 480px for better balance */
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.cat-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Full-bleed artistic aesthetic */
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-hero-section:hover .cat-banner-img {
    transform: scale(1.05);
}

.cat-controls-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumbs {
    display: flex;
    gap: 15px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.breadcrumbs span {
    color: #ccc;
}

.cat-filters {
    display: flex;
    gap: 30px;
}

.filter-group {
    cursor: pointer;
    transition: color 0.3s;
}

.filter-group:hover {
    color: #000;
}

.cat-info-center {
    text-align: center;
    padding: 60px 40px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.cat-main-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .cat-main-title {
        font-size: 28px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .cat-main-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .cat-info-center {
        padding: 40px 20px;
    }

    /* Motif Banner - Thinner Stripe */
    .cat-banner-box {
        height: 140px;
    }

    /* Stack Breadcrumbs & Filters nicely */
    .cat-controls-row {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
        text-align: center;
    }

    .breadcrumbs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        font-size: 10px;
    }

    .cat-filters {
        width: 100%;
        justify-content: center;
        gap: 30px;
        padding-top: 15px;
        border-top: 1px solid #f9f9f9;
    }
}

/* --- Persistent Editorial Grid refinement --- */
@media (max-width: 968px) {
    .editorial-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .editorial-grid>div {
        grid-column: span 12 !important;
        height: auto !important;
        min-height: 300px;
    }
}

/* --- Instagram Feed Section --- */
.instagram-feed-section {
    padding: 80px 0 0 0;
    background: #fff;
    border-top: 1px solid #f9f9f9;
}

.insta-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.insta-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    letter-spacing: 4px;
    color: #000;
    margin-bottom: 15px;
}

.insta-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-decoration: none;
    color: #666;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    transition: var(--transition-smooth);
}

.insta-link:hover {
    color: var(--royal-gold);
    border-color: var(--royal-gold);
}

.insta-track-container {
    width: 100%;
    overflow: hidden;
}

.insta-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.insta-track::-webkit-scrollbar {
    display: none;
}

.insta-post {
    flex: 0 0 calc(100% / 5);
    min-width: 250px;
    aspect-ratio: 1;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
    background: #f8f8f8;
    display: block;
}

@media (max-width: 1024px) {
    .insta-post {
        flex: 0 0 calc(100% / 3);
    }
}

@media (max-width: 768px) {
    .insta-post {
        flex: 0 0 70%;
        min-width: auto;
    }
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insta-post:hover img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay svg {
    color: #fff;
    width: 32px;
    height: 32px;
}

/* Hide Elfsight Free Widget Badge */
.elfsight-app-09fa49f9-fa36-45ef-b4cd-d2ceb459350a a[href*="elfsight.com"] {
    display: none !important;
}

/* --- Global Footer --- */
.main-footer {
    padding: 100px 0 60px;
    background: #fff;
    border-top: 1px solid #f9f9f9;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 100px;
}

.footer-brand .footer-logo {
    height: 30px;
    margin-bottom: 30px;
}

.footer-brand p {
    font-size: 13px;
    color: #888;
    line-height: 1.8;
    max-width: 350px;
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #c5a059;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #000;
}

.footer-bottom {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 40px 40px 0;
    border-top: 1px solid #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 10px;
    color: #999;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- Premium Side Drawer Menu --- */
.side-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transform: translateX(-105%);
    /* Slightly more to hide shadow fully */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.05);
}

.side-drawer.active {
    transform: translateX(0);
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.drawer-close {
    position: absolute;
    top: 40px;
    right: 40px;
    /* Moved to right for better accessibility */
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #111;
    z-index: 2001;
    transition: var(--transition-smooth);
}

.drawer-close:hover {
    transform: rotate(90deg);
    color: var(--royal-gold);
}

.drawer-split {
    display: flex;
    width: 100%;
    height: 100%;
}

.drawer-links-side {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.drawer-cat-list {
    list-style: none;
    margin-top: 40px;
    padding: 0;
}

.drawer-cat-item {
    margin-bottom: 25px;
    overflow: hidden;
}

.drawer-cat-link {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    text-decoration: none;
    color: #111;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: 0.4s ease;
    display: block;
    opacity: 1;
    visibility: visible;
}

.drawer-cat-link:hover {
    color: var(--royal-gold);
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .drawer-links-side {
        padding: 80px 40px;
    }

    .drawer-cat-link {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .drawer-close {
        top: 20px;
        right: 20px;
    }
}

.drawer-image-side {
    flex: 1;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.3;
    /* Increased from 0.1 for better base visibility */
    transform: scale(1.05);
    /* Slight scale for depth */
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.drawer-preview-img.fadeIn {
    opacity: 1;
    transform: scale(1);
    filter: none;
}


/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-input-wrapper {
    width: 100%;
    max-width: 800px;
    position: relative;
}

.search-input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #eee;
    font-family: 'Cinzel', serif;
    font-size: 48px;
    padding: 20px 0;
    color: #000;
    letter-spacing: 5px;
    outline: none;
    text-align: center;
}

.search-results {
    margin-top: 60px;
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.search-result-item {
    text-align: center;
    text-decoration: none;
    color: #111;
}

.search-result-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fcfcfc;
    margin-bottom: 15px;
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 11px;
    letter-spacing: 3px;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width: 968px) {
    .side-drawer {
        width: 100%;
    }

    .drawer-image-side {
        display: none;
    }

    .search-input {
        font-size: 28px;
    }
}