/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
/* Ticker Strip */
.ticker-strip {
    background-color: #000;
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}
/* Base Header Styling */
.header {
    background: url('../asset/images/header.png') no-repeat center center/cover;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
  }
  
  .top-bar {
    padding: 10px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-container {
    
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }
  
  .logo {
    text-align: center;
    grid-column: 2;
  }
  
  .logo-img {
    height: 65px;
    max-width: 100%;
    display: inline-block;
  }
  
  /* Search + Icons */
  .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
  }
  
  .search-container {
    position: relative;
  }
  
  .search-input {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #000000;
    transition: border-color 0.3s ease;
  }
  
  .search-input:focus {
    outline: none;
    border-color: #000000;
  }
  
  .search-submit {
    background: none;
    border: none;
    position: absolute;
    right: -20px;
    top: -32px;
    color: #333;
  }
  
  .icon-link {
    position: relative;
    font-size: 1.2rem;
  }
  
  .wishlist-count {
    background-color: crimson;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    padding: 2px 6px;
    position: absolute;
    top: -8px;
    right: -10px;
  }
  
  /* Main Navigation */
  .main-nav {
    background-color: none;
  }
  
  .header-con ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    flex-wrap: wrap;
  }
  
  .header-con ul li {
    margin: 0 15px;
  }
  
  .header-con ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 5px;
    transition: color 0.3s ease;
  }
  
  .header-con ul li a:hover {
    color: #d32f2f;
  }
  
  /* Hamburger menu (hidden by default on desktop) */
  .mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    justify-self: start;
  }
  
  /* ---------- RESPONSIVE STYLES ---------- */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .header-con ul {
      flex-wrap: wrap;
    }
  
    .search-input {
      width: 180px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: block;
      color: #333;
    }
    .icon-link {margin-right: -29px;
        font-size: 1.2rem;
        color: #333;
        }
    .search-form {
      display: none;
    }
  
    .main-nav {
      display: none;
      background-color: #f9f9f9;
      width: 100%;
    }
  
    .main-nav.active {
      display: block;
    }
  
    .header-con ul {
      flex-direction: column;
      align-items: center;
    }
  
    .header-con ul li {
      margin: 10px 0;
    }
  }
    
/* Banner */
/* Main Banner Styles */
.banner {
    width: 100%;
    height: 100vh; /* Full screen height */
    position: relative;
    overflow: hidden;
  }
  
  .banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .banner-content {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 600px;
  }
  
  .cta-button {
    padding: 12px 30px;
    margin-left: -104%;
    margin-bottom: 14%;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #444;
  }
  
  /* Responsive Text */
  .banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .banner-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .banner {
      height: 22vh;
    }
  
    .banner-content h2 {
      font-size: 1.8rem;
    }
  
    .banner-content p {
      font-size: 1rem;
    }
  
    .cta-button {
      font-size: 14px;
      margin-bottom: 0%;
      padding: 10px 25px;
    }
  }
  
  @media (max-width: 480px) {
    .banner {
      height: 22vh;
    }
  
    .banner-content {
      bottom: 6%;
    }
  
    .banner-content h2 {
      font-size: 1.5rem;
    }
  
    .banner-content p {
      font-size: 0.9rem;
    }
  
    .cta-button {
      padding: 8px 20px;
      margin-left: -121px;
    }
  }
  

/* Exhibition Countdown Banner */

.expo-countdown-banner {
    background: rgba(249, 249, 249, 1);
    padding: 60px 0;
    margin: 40px 0;
}

.expo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expo-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:60px;
}

.expo-text-content {
    flex: 1;
    max-width: 600px;
}

.expo-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.expo-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.expo-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    
}

.expo-countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.expo-time-block {
    text-align: center;
    background: #fff;
    padding: 15px 10px;
    border-radius: 8px;
    min-width: 80px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.expo-time {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
}

.expo-label {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expo-shop-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.expo-shop-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Exhibition Slider */
.expo-slider {
    
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.expo-images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.expo-slide {
    margin-left: 60px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.expo-slide.active {
    opacity: 1;
    position: relative;
}

.expo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.expo-slide img {
    width: 60%;
    height: 60%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-arrow {
        width: 30px;
        height: 30px;
    }
    .expo-description {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.6;
        margin-left: 0px;
    }
    
    .slider-arrow i {
        font-size: 14px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .expo-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .expo-description {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.6;
        margin-left: 0px;
    }
    
    .expo-text-content {
        margin-bottom: 30px;
    }
    
    .expo-countdown {
        justify-content: center;
    }
    
    .expo-image {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .expo-slide {
        margin-left: 0px;
    }
    .expo-countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .expo-time-block {
        min-width: 70px;
        padding: 10px 5px;
    }
    
    .expo-time {
        font-size: 1.5rem;
    }
}

/* Instagram Client Gallery */
.insta-gallery {
    padding: 2rem 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.insta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.insta-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #333;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.insta-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: #8B4513;
    bottom: -10px;
    left: 25%;
}

.insta-grid {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.insta-grid:hover .insta-scroll {
    animation-play-state: paused;
}

.insta-scroll {
    display: flex;
    gap: 15px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #8B4513;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.insta-item {
    width: 200px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6 - 15px * 6));
    }
}

/* For smaller screens */
@media (max-width: 768px) {
   
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 6 - 15px * 6));
        }
    }
}

.designer-section {
    margin-top: -91px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
  }
  
  .left {
    max-width: 60%;
  }
  
  .left h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
  }
  
  
  .desc {
    font-weight: 600;
    margin-bottom: 10px;
  }

  
.slogan {
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .design-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border: 2px solid #000000; /* WhatsApp green */
    color: #000;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  
  .design-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: #000000;
    transition: all 0.3s ease;
  }
  
  .design-btn:hover {
    background: #000000; /* WhatsApp green */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  }
  
  .design-btn:hover i {
    color: #fff;
  }
  
  .right {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 300px;
  }
  
  .carousel-item {
    width: 100px;
  }
  
  .carousel-item.active {
    width: 218px;
    opacity: 1;
  }
  
  .arrow-btn {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    right: -40px;
    top: 40%;
    cursor: pointer;
  }


/* Responsive breakpoints */
@media (max-width: 1024px) {
    .designer-section {
      flex-direction: column;
    }
    .carousel-item.active {
        width: 249px;
        margin-left: 28px;
    }
    .arrow-btn {
        right: -28px;
    }

    .left, .right {
      flex: 1 1 100%;
      text-align: center;
    }
  
    .left h2 {
      font-size: 2rem;
    }
  
    .slogan {
      font-size: 1.2rem;
    }
  
    .design-btn {
      font-size: 15px;
      padding: 10px 20px;
    }
  }
  
  @media (max-width: 600px) {
    .left h2 {
      font-size: 1.6rem;
    }
  
    .desc, .slogan {
      font-size: 1rem;
    }
  
    .design-btn {
      font-size: 14px;
      padding: 10px 16px;
    }
  
  }
  
.insta-title {
    text-align: center;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
}

.insta-grid {
    padding: 2px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.insta-item {
    overflow: hidden;
    display: block;
    border-radius: 6px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

@media (max-width: 576px) {
    .insta-title {
        font-size: 1.5rem;
    }
}

/* New Arrivals Section */
.new-arrivals {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.new-arrivals .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-header h2 {
    font-size: 24px;
    color: #222;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #000;
}

.section-header .view-all {
    margin: 0;
}

.view-all-btn {
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: #b8860b;
}

.product-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.product-grid {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 -10px;
}

.product-card {
    flex: 0 0 calc(25% - 20px);
    margin: 0 10px 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 10px;
    background: #fff;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding-top: 133%; /* Slightly taller aspect ratio */
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-image .hover-image {
    opacity: 0;
}

.product-card:hover .main-image {
    opacity: 0;
}

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

.product-actions {
    position: absolute;
    top: 15px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-btn,
.quick-view,
.add-to-wishlist {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    padding: 0;
    position: relative;
}

.wishlist-btn:hover,
.quick-view:hover,
.add-to-wishlist:hover {
    background: #000;
    color: #fff;
}

/* Active wishlist button */
.add-to-wishlist.active {
    color: #ff4d4d;
}

.add-to-wishlist.active i::before {
    content: "\f004";
    font-weight: 900;
}

/* Wishlist Notification */
.wishlist-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wishlist-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Empty Wishlist */
.empty-wishlist {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-wishlist i {
    font-size: 60px;
    color: #e0e0e0;
    margin-bottom: 20px;
    display: block;
}

.empty-wishlist h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.empty-wishlist p {
    color: #666;
    margin-bottom: 25px;
}

.empty-wishlist .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #8B4513;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.empty-wishlist .btn:hover {
    background: #6d360b;
}

/* Wishlist Count */
.wishlist-count {
    display: none;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
  }

  .product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #000000;
    margin: 0 0 0.75rem;
    font-weight: 500;
  }


  .product-price {
    font-family: 'Playfair Display', serif;
    color: #000000;
    margin-bottom: 1rem;
  }

  .product-price:hover {
    color: #6d360f;
    text-decoration: underline;
  }
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.category {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.enquire-now {
    background: none;
    border: none;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.enquire-now:hover {
    color: #b8860b;
}

.enquire-now i {
    font-size: 12px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    color: #333;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

.product-carousel:hover .nav-arrow {
    opacity: 1;
    visibility: visible;
}

.nav-arrow:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .product-card {
        flex: 0 0 33.333%;
        width: 33.333%;
    }
}

@media (max-width: 991px) {
    .new-arrivals {
        padding: 50px 0;
    }
    
    .product-card {
        width: 50%;
    }
    
    .nav-arrow {
        opacity: 1;
        visibility: visible;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .new-arrivals .section-header h2 {
        font-size: 24px;
    }
    
    .product-card {
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-view-all {
        padding: 10px 30px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .product-actions {
        opacity: 1;
        transform: translateX(0);
    }
    
    .view-details {
        bottom: 0;
    }
}

/* Exhibition Banner */
.exhibition-banner {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.exhibition-content {
    max-width: 800px;
}

/* Why Choose Us */
/* Section Base Styling */
.why-choose-us {
    padding: 60px 8%;
    background-color: #fdfdfd;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  /* Grid Layout */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  /* Feature Item */
  .feature-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  }
  
  /* Icons */
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #000000;
  }
  
  .custom-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  
  /* Headings & Paragraphs */
  .feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
  }
  .feature-item p {
    margin-left: -15px;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* Responsive Breakpoints */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .feature-item h3 {
      font-size: 1.2rem;
    }
  }
  
  /* Mobile */
  @media (max-width: 600px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .section-title {
      font-size: 1.7rem;
    }
  
    .feature-icon {
      font-size: 2rem;
    }
  
    .feature-item {
      padding: 15px;
    }
  
    .feature-item p {
      font-size: 0.95rem;
      margin-left: 0px;
    }
  }
  

/* News & Updates Section */
.news-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.date-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.4;
}

.news-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.read-more:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(1);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.read-more:hover:after {
    transform: scaleX(0);
    transform-origin: bottom left;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.view-all-news {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: transparent;
    color: #000;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 80px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        margin-top: 40px;
    }
    
    .news-image {
        height: 250px;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

.newsletter-text p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    position: relative;
    display: flex;
    max-width: 500px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.newsletter-form input[type="email"]:focus {
    border-color: #000;
}

.newsletter-form button {
    padding: 0 30px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.newsletter-form button:hover {
    background: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .newsletter-text {
        margin-bottom: 25px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        margin-top: 10px;
        padding: 15px;
        width: 100%;
    }
}

/* Footer */
.footer {
    background: #ffffff;
    color: #000000;
    font-family: 'Playfair Display', serif;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}
/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        background: #ffffff;
    }
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 40px;
    padding-bottom: 60px;
}

/* Navigation Links */
.footer-nav {
    padding-top: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: #000000;
}

.footer-links li a:hover::after {
    width: 100%;
}

/* Logo Section */
.footer-logo {
    text-align: center;
    padding: 20px 40px;
    position: relative;
}

.logo-crest {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    margin-left: -250px;
}

.logo-letters {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo-text {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    margin-top: 5px;
}

/* Subscription Section */
.footer-subscribe {
    text-align: right;
    padding-top: 20px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-media a {
    color: #000000;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-media a:hover {
    color: #000000;
    transform: translateY(-3px);
}

.subscribe-text {
    font-size: 14px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 300px;
    margin-left: auto;
}

.subscribe-form {
    display: flex;
    max-width: 320px;
    margin-left: auto;
    border-bottom: 1px solid #d4a5a5;
    padding-bottom: 5px;
}

.subscribe-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #000000;
    outline: none;
}

.subscribe-form input::placeholder {
    color: #000000;
    letter-spacing: 0.5px;
}

.subscribe-form button {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    color: #000000;
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(212, 165, 165, 0.5);
}

.footer-bottom p {
    font-size: 12px;
    color: #000000;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        order: 1;
        text-align: center;
    }
    
    .footer-logo {
        order: 0;
        margin: 0 auto;
    }
    
    .footer-subscribe {
        order: 2;
        text-align: center;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .subscribe-text,
    .subscribe-form {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-links li a::after {
        display: none;
    }
    
   
    
    .logo-letters {
        font-size: 28px;
    }
    
    .logo-text {
        font-size: 9px;
    }
    
    .subscribe-form {
        max-width: 100%;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .main-banner {
        height: 40vh;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close-modal:hover {
    color: #8B4513;
}

.modal h2 {
    margin-top: 0;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.contact-info {
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.contact-item i {
    margin-right: 10px;
    color: #8B4513;
    width: 20px;
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.2em;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Call for pricing link */
.call-for-pricing {
    padding: 12px 30px;
    background-color: black;
    cursor: pointer;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.call-for-pricing:hover {
    color: #ffffff;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
  }

  .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
  }

  .modal h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #000;
  }

 

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
  }

  .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    color: #333;
  }

  .contact-item i {
    color: #000000;
    font-size: 20px;
  }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
