* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

@font-face {
    font-family: 'Basetica Pro';
    src: url('fonts/basetica-light.otf') format('otf');
    font-weight: normal;    
    font-style: normal;
}

@font-face { 
    font-family: 'Glossy Personaluse Regular';
    src: url('fonts/GlossypersonaluseRegular-eZL93.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

body p {
    font-family: 'Basetica Pro', 'Georgia', serif !important;
    color: #333;
    font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Glossy Personaluse Regular' !important;
  color: #3C0606;
  letter-spacing: -1px;
  line-height: 1.3;
  font-style: italic;
  font-weight: 500;
}

/* ==================== HEADER ==================== */
.header-section {
    background-color: #3C0606;
    /* border-bottom: 1px solid #e0e0e0; */
    position: relative;
    padding: 5px 0;
}   

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

/* Left Section (Empty for now) */
.header-left {

    
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
}

/* Center Logo */
.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
}

/* Right Section */
.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}
.cart-icon-wrapper {
    position: relative;
    cursor: pointer;
    font-size: 18px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -12px;
    background: #e63971;
    color: #fff;
    padding: 1px 6px;
    font-size: 12px;
    border-radius: 50%;
}


/* KEEP IN TOUCH Dropdown */
.social-dropdown {
    position: relative;
    z-index: 9999; /* Very high z-index */
}

.keep-in-touch-text {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    border:1px solid #fff;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
   line-height: 1;
    height: auto;
    background: transparent;
    white-space: nowrap; /* Prevent text wrapping */
}

.keep-in-touch-text:hover {
    background: #CCA693;
    color: #ffffff;
}

.keep-in-touch-text::after {
    display: none; /* Remove Bootstrap default arrow */
}

/* Social Dropdown Menu - Horizontal Layout */
.social-dropdown-menu {
    min-width: auto;
    padding: 15px 20px;
    /* border: 2px solid #0F0E0D; */
    /* border-radius: 0; */
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    margin-top: 10px;
    margin-left: -80px;
    /* background: #ffffff; */
    z-index: 10001 !important; /* Highest z-index */
    position: absolute !important;
}

/* Horizontal Row for Icons */
.social-icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-dropdown-item {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    background: transparent;
    border: 1px solid transparent;
}

.social-dropdown-item:hover {
    /* background: #F8F8F7; */
    /* border-color: #E8E6E1; */
    transform: translateY(-3px);
}

.social-icon-svg {
    width: 20px;
    height: 20px;
    color: #0F0E0D;
    transition: color 0.3s ease;
}

.social-dropdown-item:hover .social-icon-svg {
    color: #9B8E6F;
}

/* Hover + Click Functionality */
.social-dropdown:hover .social-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.social-dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Header z-index adjustment */
.header-section {
    position: relative;
    z-index: 9998;
}

.header-container {
    position: relative;
    z-index: 9998;
}
/* Mobile: Only click, no hover */
@media (max-width: 768px) {
    .social-dropdown:hover .social-dropdown-menu {
        display: none;
    }
    
    .social-dropdown-menu.show {
        display: block;
    }
    
    .social-icons-row {
        gap: 10px;
    }
    
    .social-icon-svg {
        width: 18px;
        height: 18px;
    }
}

/* Shop Button */
.shop-button {
    background-color: transparent;
     border: 1px solid #fff;
    color: #fff !important;
    padding: 12px 35px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.shop-button:hover {
    background-color: #CCA693;
   
}

/* Search Icon */
.search-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.search-icon-btn:hover {
    opacity: 0.6;
}

.search-icon {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* Search Bar Container */
.search-bar-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
}

.search-bar-container.active {
    max-height: 100px;
    padding: 20px 40px;
}

.search-bar-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    outline: none;
    background-color: #f9f9f9;
}

.search-input:focus {
    border-color: #1a1a1a;
    background-color: #fff;
}

.search-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.search-close-btn svg {
    width: 20px;
    height: 20px;
    fill: #666;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .header-logo img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        justify-content: center;
        /* margin-top: 20px; */
    }
    
    .header-logo {
        order: -1;
    }
    
    .header-left,
    .header-right {
        justify-content: center;
    }
    
    .header-logo img {
        height: 50px;
    }
}

/* ==================== HERO SLIDER SECTION ==================== */
.hero-slider-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-slider-container {
    width: 100%;
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: 650px;
    position: relative;
}

/* Grid Layout - 3 Equal Columns */
.hero-slide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 650px;
    width: 100%;
}

/* Image Items */
.hero-image-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-item:hover .hero-img {
    transform: scale(1.05);
}

/* Text Overlay Container */
.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0px;
    z-index: 10;
    pointer-events: none;
}

/* White Text Card */
.hero-text-card {
    background: #fff;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Text */
.hero-category {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; */
}

/* Title Text */
.hero-title {
    /* font-family: 'Bodoni Moda', Georgia, 'Times New Roman', serif; */
    /* font-size: 28px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0; */
}

/* Navigation Arrows */
.hero-nav-arrow {
    position: absolute;
    top: 615px;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    color: #ffffff;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.hero-nav-arrow:hover {
    opacity: 0.6;
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
    left: 0px;
}

.hero-nav-next {
    right: 0px;
}

.hero-nav-arrow::after {
    display: none;
}

/* Pagination Dots */
.hero-pagination {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #1a1a1a;
    transform: scale(1.2);
}

/* No Content State */
.hero-no-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 650px;
    background: #f5f5f5;
}

.hero-no-content p {
    font-size: 18px;
    color: #999;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .heroSwiper {
        height: 550px;
    }
    
    .hero-slide-grid {
        height: 550px;
    }
    
    .hero-text-card {
        padding: 25px 50px;
    }
    
    /* .hero-title {
        font-size: 34px;
    } */
}

@media (max-width: 992px) {
    .heroSwiper {
        height: 500px;
    }
    
    .hero-slide-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 500px;
    }
    
    .hero-image-item:first-child {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .hero-text-card {
        padding: 20px 40px;
    }
    
    /* .hero-title {
        font-size: 30px;
    } */
    
    .hero-text-overlay {
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .heroSwiper {
        height: auto;
    }
    
    .hero-slide-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .hero-image-item {
        height: 400px;
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
    
    .hero-text-card {
        padding: 18px 30px;
    }
    
    /* .hero-title {
        font-size: 26px;
    } */
    
    .hero-category {
        font-size: 10px;
    }
    
    .hero-text-overlay {
        padding-bottom: 40px;
    }
    
    .hero-nav-prev {
        left: 20px;
    }
    
    .hero-nav-next {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-image-item {
        height: 350px;
    }
    
    .hero-text-card {
        padding: 15px 25px;
    }
    
    /* .hero-title {
        font-size: 22px;
    } */
    
    .hero-category {
        font-size: 9px;
        letter-spacing: 2px;
    }
    
    .hero-nav-arrow {
        width: 35px;
        height: 35px;
    }
}

/* ==================== BLOGS SECTION ==================== */
.blogs-page-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-title {
    /* font-size: 56px;
    font-weight: 400;
    text-align: center; */
    /* margin-bottom: 50px; */
    /* color: #1a1a1a; */
}

.no-blogs-message {
    text-align: center;
    padding: 60px 20px;
}

.no-blogs-message p {
    font-size: 18px;
    color: #999;
}

/* Blog Grid remains same as before */


/* ==================== BLOGS SECTION WITH SIDEBAR ==================== */
.blogs-section-with-sidebar {
    /* background-color: #fff; */
    padding: 60px 0 0 0;
}

/* Left Side - Blogs Content */
.blogs-main-content {
    /* padding: 0 40px; */
    border-right: 1px solid #3C0606;
}

.blogs-list-wrapper {
    max-width: 100%;
}



/* Blog List Item */
.blog-list-item {
    padding: 40px 0;
    border-bottom: 1px solid #3C0606;
    cursor: pointer;
    transition: background-color 0.3s;
}

.blog-list-item:hover {
    /* background-color: #fafafa; */
}

.blog-list-item:last-child {
    border-bottom: none;
}

/* Blog Image */
.blog-list-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.blog-list-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), box-shadow 0.5s;
    position: absolute;
    object-fit: cover;
}   

.blog-list-item:hover .blog-list-image img {
    transform: scale(1.05);
}
.blog-list-image:hover img {
  transform: scale(1.05);
  filter: blur(3px) brightness(0.8);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.read-more-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 1px solid #7e7e7e;
  font-size: 18px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}

.blog-list-image:hover .read-more-btn {
  opacity: 1;
  pointer-events: auto;
  color: #fff;
}

/* Blog Content */
.blog-list-content {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.blog-category {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.blog-list-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.blog-share-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
    display: block;
}

/* .blog-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
} */

.blog-read-more {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-read-more:hover {
    color: #666;
}

/* Right Side - Sticky Sidebar */
.blogs-sidebar {
    /* background-color: #f8f8f8; */
    border-left: 1px solid #ffffff;
}

.sticky-ad-sidebar {
    position: sticky;
    top: -24px;
    padding: 30px 30px;
    text-align: center;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ad-info-icon {
    text-align: right;
    width: 100%;
    margin-bottom: 0px;
}

.ad-info-icon i {
    color: #999;
    font-size: 14px;
}

.ad-title {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    font-size: 26px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 15px;
}

.ad-features {
    margin-bottom: 0px;
}

.ad-feature-item {
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
    text-align: left;
}

.ad-feature-item i {
    color: #4CAF50;
    margin-right: 10px;
}

.ad-image-container {
    margin: 0;
}

.ad-product-image {
    max-width: 140px;
    height: auto;
    border-radius: 8px;
}

.btn-shop-now {
    background-color: #CCA693;
    color: #fff;
    padding: 14px 45px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-shop-now:hover {
    background-color: #3C0606;
    border: 1px solid #fff;
}

/* No Blogs Message */
.no-blogs-message {
    text-align: center;
    padding: 100px 20px;
}

.no-blogs-message p {
    font-size: 18px;
    color: #999;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .blog-list-title {
        font-size: 28px;
    }
    
    .blog-list-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .blogs-main-content {
        border-right: none;
        padding: 0 30px;
    }
    
    .blogs-sidebar {
        border-left: none;
        border-top: 1px solid #7e7e7e;
    }
    
    .sticky-ad-sidebar {
        position: relative;
        min-height: auto;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
        text-align: center;
    }
    
    .blog-list-item {
        padding: 30px 0;
    }
    
    .blog-list-image {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .blog-list-content {
        padding: 0;
        text-align: center;
    }
    
    .blog-list-title {
        font-size: 24px;
    }
    
    .blogs-main-content {
        padding: 0 20px;
    }
}


/* ==================== FOOTER ==================== */
.footer-section {
    background-color: #f5f3f0;
    padding: 50px 0 40px;
    border-top: 1px solid #d5d5d5;
}

/* Footer Logo */
.footer-logo-img {
    width: 80px;
    height: auto;
}

/* Copyright Text */
.copyright-text {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #1a1a1a;
}

.rights-text {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
}

/* Footer Links */
.footer-links-center {
    font-size: 11px;
    letter-spacing: 1px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0 10px;
}

.footer-link:hover {
    color: #1a1a1a;
}

.footer-separator {
    color: #d5d5d5;
    margin: 0 5px;
}

/* Keep In Touch Title */
.footer-social-title {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #1a1a1a;
}

/* Social Icons */
.footer-social-icon {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.3s;
    display: inline-block;
}

.footer-social-icon:hover {
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 30px;
    }

    .footer-logo-img {
        width: 60px;
    }

    .footer-links-center {
        font-size: 10px;
    }

    .footer-social {
        gap: 15px !important;
    }

    .footer-social-icon {
        width: 18px;
        height: 18px;
    }
}

/* Hero Slider Container */
.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Desktop Slider - Hidden on Mobile */
.desktop-slider-wrapper {
    display: none;
    width: 100%;
}

/* Mobile Slider - Visible by default */
.mobile-slider-wrapper {
    display: block;
    width: 100%;
}

/* Swiper Basic Styles */
.heroSwiperDesktop,
.heroSwiperMobile {
    width: 100%;
    height: 100%;
}

/* Mobile: Single Image */
.hero-single-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    /* border-radius: 12px; */
    position: relative;
}

.hero-single-image .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-single-image:hover .hero-img {
    transform: scale(1.05);
}

/* Desktop: 3 Images Grid */
.hero-slide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.hero-image-item {
    width: 100%;
    height: 500px;
    overflow: hidden;
    /* border-radius: 12px; */
    position: relative;
    cursor: pointer;
}

.hero-image-item .hero-img {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    object-fit: cover;
    transition: transform 0.4s ease;
    background-repeat: no-repeat;
}

.hero-image-item:hover .hero-img {
    transform: scale(1.08);
}

/* Navigation Arrows */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

.hero-nav-arrow:hover {
    /* background: #000; */
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-arrow svg {
    display: block;
}

.hero-nav-prev {
    left: 20px;
}

.hero-nav-next {
    right: 20px;
}

/* Text Info Section */
.hero-text-info {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.hero-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #999;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* .hero-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.3;
} */

.dot-set {
    display: flex;
    justify-content: center;
}

.hero-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Swiper Pagination Bullets */
.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #000;
    width: 30px;
    border-radius: 5px;
}

/* ========== MOBILE RESPONSIVE ========== */

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .hero-single-image {
        height: 280px;
        /* border-radius: 8px; */
    }
    
    .hero-nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-nav-prev {
        left: 10px;
    }
    
    .hero-nav-next {
        right: 10px;
    }
    
    /* .hero-title {
        font-size: 20px;
    } */
    
    .hero-text-info {
        margin-top: 25px;
    }
}

/* Tablet (min-width: 768px) - Still show Mobile slider */
@media (min-width: 768px) {
    .hero-single-image {
        height: 450px;
    }
    
    /* .hero-title {
        font-size: 32px;
    } */
}

/* Desktop (min-width: 992px) - Switch to Desktop slider */
@media (min-width: 992px) {
    /* Hide Mobile, Show Desktop */
    .mobile-slider-wrapper {
        display: none;
    }
    
    .desktop-slider-wrapper {
        display: block;
    }
    
    .hero-image-item {
        height: 480px;
    }
    
    /* .hero-title {
        font-size: 38px;
    } */
    
    .hero-nav-prev {
        left: 30px;
    }
    
    .hero-nav-next {
        right: 30px;
    }
}

/* Large Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
    .hero-slide-grid {
        gap: 30px;
    }
    
    .hero-image-item {
        height: 550px;
    }
    
    /* .hero-title {
        font-size: 42px;
    } */
}

/* Extra Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    .hero-image-item {
        height: 600px;
    }
}

/* MOBILE HEADER */
.mobile-header {
    display: none;
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
}
.mobile-header img { width: 32px; }

/* HAMBURGER */
.hamburger-btn {
    background: none;
    border: none;
    color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    left: -290px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 99999;
}
.mobile-menu.active { left: 0; }

.mobile-close {
    background: none;
    border: none;
    font-size: 30px;
    float: right;
}

.mobile-search input {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    border: 1px solid #ccc;
}

/* Nav links */
.mobile-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}
.mobile-links a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* KEEP IN TOUCH */
.mobile-keep {
    margin-top: 25px;
}
.keep-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
}
.keep-dropdown {
    display: none;
    margin-top: 10px;
}
.keep-dropdown a {
    display: block;
    padding: 8px 0;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 768px) {
    .header-container {
        display: none;
    }
    .mobile-header {
        display: flex;
        padding: 0 16px;
    }
    .mobile-header img{
        margin-left:30px;
    }
}
