/* ==========================================================================
   Base Styles
   ========================================================================== */
   :root {
    --primary: #8B5A2B; /* Rich Oud Brown */
    --primary-dark: #5C3A21;
    --primary-light: #B78B5A;
    --secondary: #D4AF37; /* Gold */
    --dark: #1A1A1A;
    --light: #F8F5F2;
    --white: #FFFFFF;
    --gray: #E5E5E5;
    --text: #333333;
    --text-light: #777777;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
  }
  
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.75rem; }
  h3 { font-size: 2rem; }
  h4 { font-size: 1.5rem; }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul {
    list-style: none;
  }
  
  section {
    padding: 6rem 0;
    position: relative;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #017C02;
    color: var(--white);
    border-color: #017C02;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .btn-outline-light {
    background-color: black !important;
    color: var(--white);
    border-color: var(--white);
  }
  
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: white !important;
  }
  
  .btn-outline-dark {
    background-color: transparent;
    color: var(--dark);
    border-color: var(--dark);
  }
  
  .btn-outline-dark:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .btn-dark {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
  }
  
  .btn-dark:hover {
    background-color: transparent;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .section-header {
    margin-bottom: 4rem;
    text-align: center;
  }
  
  .section-header .section-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .section-header .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .section-header .section-title span {
    color: var(--primary);
    position: relative;
  }
  
  .section-header .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
  }
  
  /* ==========================================================================
     Preloader
     ========================================================================== */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  
  .preloader.loaded {
    opacity: 0;
    visibility: hidden;
  }
  
  .preloader-circle {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
  }
  
  .preloader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 2px;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* ==========================================================================
     Navigation
     ========================================================================== */
  .navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
  }
  
  .navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
  }
  
  .navbar .navbar-brand img {
    height: 120px;
    transition: var(--transition);
  }
  
  .navbar.scrolled .navbar-brand img.logo-light {
    opacity: 0;
    visibility: hidden;
  }
  
  .navbar .navbar-brand img.logo-dark {
    position: absolute;
    opacity: 0;
    visibility: hidden;
  }
  
  .navbar.scrolled .navbar-brand img.logo-dark {
    position: relative;
    opacity: 1;
    visibility: visible;
  }
  
  .navbar .navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
  }
  
  .navbar.scrolled .navbar-nav .nav-link {
    color: var(--white);
  }
  
  .navbar .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
  }
  
  .navbar .navbar-nav .nav-link:hover:after,
  .navbar .navbar-nav .nav-link.active:after {
    width: 100%;
  }
  
  .navbar .navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--white);
  }
  
  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar .offcanvas {
    background-color: var(--dark);
    color: var(--white);
  }
  
  .navbar .offcanvas-header .btn-close {
    background: none;
    color: var(--white);
    opacity: 1;
    font-size: 1.5rem;
  }
  
  .navbar .offcanvas-body .navbar-nav {
    padding-top: 2rem;
  }
  
  /* ==========================================================================
     Hero Section
     ========================================================================== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 13rem !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: var(--white);
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/hero-bg.jpg') no-repeat center center/cover;
    z-index: -1;
  }
  
  .hero-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
  }
  
  .hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-title span {
    color: #017C02;
    position: relative;
  }
  
  .hero-title span:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(212, 175, 55, 0.3);
    z-index: -1;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    color: black !important;
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .hero-image {
    position: relative;
    padding: 2rem;
  }
  
  .hero-image img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
  }
  
  .hero-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    transform: rotate(5deg);
  }
  
  .hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    z-index: 2;
    box-shadow: var(--shadow);
  }
  
  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
  }
  
  .hero-scroll span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 2px;
  }
  
  .hero-scroll svg {
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
  }
  
  /* ==========================================================================
     Brand Showcase
     ========================================================================== */
  .brand-showcase {
    padding: 3rem 0;
    background-color: var(--light);
  }
  
  .brand-showcase .brand-item {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: var(--transition);
  }
  
  .brand-showcase .brand-item:hover {
    transform: translateY(-5px);
  }
  
  .brand-showcase .brand-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .brand-showcase .brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
  }
  
  /* ==========================================================================
     Collections Section
     ========================================================================== */
  .collections {
    background-color: var(--white);
  }
  
  .collections-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .collections-filter .filter-btn {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--gray);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .collections-filter .filter-btn.active,
  .collections-filter .filter-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
  }
  
  .collections-grid .col {
    margin-bottom: 1.5rem;
  }
  
  .product-card {
    position: relative;
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .product-card .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    z-index: 2;
  }
  
  .product-card .product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
  }
  
  .product-card .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.05);
  }
  
  .product-card .product-content {
    padding: 1.5rem;
  }
  
  .product-card .product-category {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
  }
  
  .product-card .product-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .product-card .product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .product-card .product-price .current-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
  }
  
  .product-card .product-price .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.875rem;
  }
  
  .product-card .product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  
  .product-card .btn-wishlist {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--text);
    border: 1px solid var(--gray);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .product-card .btn-wishlist:hover,
  .product-card .btn-wishlist.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
  }
  
  /* ==========================================================================
     Featured Product
     ========================================================================== */
  .featured-product {
    background-color: var(--light);
  }
  
  .featured-product-image {
    position: relative;
    padding: 3rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .featured-product-image img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
  }
  
  .featured-product-image:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(139, 90, 43, 0.2);
    border-radius: var(--border-radius);
    z-index: 0;
  }
  
  .featured-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--secondary);
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    z-index: 2;
    box-shadow: var(--shadow);
    transform: rotate(15deg);
  }
  
  .featured-product-content {
    padding-left: 3rem;
  }
  
  .featured-product-content .product-category {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }
  
  .featured-product-content .product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .featured-product-content .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .featured-product-content .product-rating i {
    color: var(--secondary);
  }
  
  .featured-product-content .product-rating span {
    font-size: 0.875rem;
    color: var(--text-light);
  }
  
  .featured-product-content .product-description {
    margin-bottom: 2rem;
    font-size: 1.125rem;
  }
  
  .featured-product-content .product-meta {
    margin-bottom: 2rem;
  }
  
  .featured-product-content .product-price {
    margin-bottom: 1.5rem;
  }
  
  .featured-product-content .product-price .current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .featured-product-content .product-price .old-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 0.75rem;
  }
  
  .featured-product-content .product-size span {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
  }
  
  .featured-product-content .size-options {
    display: flex;
    gap: 0.75rem;
  }
  
  .featured-product-content .size-option {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .featured-product-content .size-option:hover,
  .featured-product-content .size-option.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
  }
  
  .featured-product-content .product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .featured-product-content .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .featured-product-content .quantity-btn {
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .featured-product-content .quantity-btn:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .featured-product-content .quantity-selector input {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-weight: 600;
    -moz-appearance: textfield;
  }
  
  .featured-product-content .quantity-selector input::-webkit-outer-spin-button,
  .featured-product-content .quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .featured-product-content .add-to-cart {
    flex: 1;
    height: 50px;
  }
  
  .featured-product-content .product-share {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .featured-product-content .product-share span {
    font-weight: 500;
  }
  
  .featured-product-content .product-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--text);
    border: 1px solid var(--gray);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .featured-product-content .product-share a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
  }
  
  /* ==========================================================================
     Experience Section
     ========================================================================== */
  .experience-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    text-align: center;
  }
  
  .experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .experience-card .experience-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
  }
  
  .experience-card .experience-icon img {
    width: 40px;
    height: 40px;
  }
  
  .experience-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .experience-card p {
    color: var(--text-light);
  }
  
  /* ==========================================================================
     Testimonials
     ========================================================================== */
  .testimonials {
    background-color: var(--light);
  }
  
  .testimonials-slider {
    padding: 2rem;
    margin: -2rem;
  }
  
  .testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
  }
  
  .testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(139, 90, 43, 0.1);
    line-height: 1;
    z-index: 0;
  }
  
  .testimonial-card .testimonial-rating {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    position: relative;
    z-index: 1;
  }
  
  .testimonial-card .testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-card .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-card .author-info h5 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
  }
  
  .testimonial-card .author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
  }
  
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--gray);
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    background-color: var(--primary);
  }
  
  /* ==========================================================================
     About Section
     ========================================================================== */
  .about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .about-experience {
    position: absolute;
    bottom: -10px;
    right: 30px;
    background-color: var(--secondary);
    color: var(--dark);
    width: 140px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    box-shadow: var(--shadow);
    z-index: 2;
  }
  
  .about-experience span {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .about-experience p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
  }

  .mainsearch
  {
    
  }
  
  .about-content {
    padding-left: 3rem;
  }
  
  .about-list {
    margin: 2rem 0;
  }
  
  .about-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .about-list li i {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
  }
  
  /* ==========================================================================
     Instagram Section
     ========================================================================== */
  .instagram {
    padding: 6rem 0 3rem;
  }
  
  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .instagram-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1/1;
  }
  
  .instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .instagram-item:hover img {
    transform: scale(1.1);
  }
  
  .instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .instagram-item:hover .instagram-overlay {
    opacity: 1;
  }
  
  .instagram-overlay a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.5rem;
  }
  
  /* ==========================================================================
     Contact Section
     ========================================================================== */
  .contact {
    background-color: var(--white);
  }
  
  .contact-info {
    margin-bottom: 3rem;
  }
  
  .contact-details {
    margin: 2rem 0;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(139, 90, 43, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.25rem;
  }
  
  .contact-text h5 {
    margin-bottom: 0.5rem;
  }
  
  .contact-text a {
    color: var(--text);
  }
  
  .contact-text a:hover {
    color: var(--primary);
  }
  
  .contact-social {
    display: flex;
    gap: 1rem;
  }
  
  .contact-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    color: var(--text);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .contact-social a:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .contact-form {
    background-color: var(--light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    transition: var(--transition);
  }
  
  .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(139, 90, 43, 0.25);
  }
  
  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }
  
  .contact-map {
    height: 400px;
    margin-top: 6rem;
  }
  
  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
  }
  
  /* ==========================================================================
     Newsletter
     ========================================================================== */
  .newsletter {
    padding: 4rem 0;
    background-color: var(--dark);
    color: var(--white);
  }
  
  .newsletter h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
  }
  
  .newsletter p {
    opacity: 0.8;
    margin-bottom: 0;
  }
  
  .newsletter-form {
    display: flex;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 0 1.5rem;
    border: none;
    font-family: var(--font-body);
  }
  
  .newsletter-form input:focus {
    outline: none;
  }
  
  .newsletter-form button {
    padding: 0 2rem;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
  }
  
  /* ==========================================================================
     Footer
     ========================================================================== */
  .footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 6rem 0 0;
  }
  
  .footer-widget {
    margin-bottom: 3rem;
  }
  
  .footer-logo {
    display: block;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo img {
    height: 50px;
  }
  
  .footer-widget h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .footer-widget h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
  }
  
  .footer-widget ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-widget ul li a {
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .footer-widget ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
  }
  
  .footer-social {
    display: flex;
    gap: 0.75rem;
  }
  
  .footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .footer-social a:hover {
    background-color: var(--secondary);
    color: var(--dark);
  }
  
  .footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
  }
  
  .copyright-text {
    opacity: 0.7;
    font-size: 0.875rem;
    margin-bottom: 0;
  }
  
  .payment-methods {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }
  
  .payment-methods img {
    height: 25px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .payment-methods img:hover {
    opacity: 1;
  }
  
  /* ==========================================================================
     Modal
     ========================================================================== */
  .modal-content {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .modal-header {
    border-bottom: none;
    padding: 2rem 2rem 0;
  }
  
  .modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    font-size: 1.5rem;
    opacity: 1;
  }
  
  .modal-body {
    padding: 0 2rem 2rem;
  }
  
  /* ==========================================================================
     Back to Top
     ========================================================================== */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
  }
  
  .back-to-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
  }
  
  /* ==========================================================================
     Responsive Styles
     ========================================================================== */
  @media (max-width: 1199.98px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .hero-title { font-size: 3.5rem; }
    
    .instagram-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .instagram-grid .instagram-item:nth-child(5) {
      display: none;
    }
  }
  
  /* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    :root {
      --border-radius: 6px;
    }
  
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
  
    section {
      padding: 3rem 0;
    }
  
    
    /* Navigation */
    .navbar .navbar-brand img {
      height: 32px;
    }
  
    /* Hero Section */
    .hero {
      padding-top: 70px;
      text-align: center;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
      margin-left: auto;
      margin-right: auto;
    }
  
    .hero-cta {
      flex-direction: column;
      gap: 0.75rem;
    }
  
    .hero-image {
      margin-top: 3rem;
      padding: 1rem;
    }
  
    /* Sections */
    .section-header {
      margin-bottom: 2.5rem;
    }
  
    .section-header .section-title:after {
      bottom: -8px;
      width: 60px;
    }
  
    /* Collections */
    .collections-filter {
      gap: 0.5rem;
    }
  
    .collections-filter .filter-btn {
      padding: 0.35rem 1rem;
      font-size: 0.875rem;
    }
  
    /* Featured Product */
    .featured-product-content {
      padding-left: 0;
      padding-top: 2rem;
    }
  
    .featured-product-content .product-title {
      font-size: 1.75rem;
    }
  
    .featured-product-content .product-actions {
      flex-direction: column;
    }
  
    .featured-product-content .add-to-cart {
      width: 100%;
    }
  
    /* Testimonials */
    .testimonial-card {
      padding: 1.5rem;
    }
  
    /* About Section */
    .about-content {
      padding-left: 0;
      padding-top: 2rem;
    }
  
    .about-experience {
      width: 120px;
      height: 120px;
      right: 15px;
    }
  
    .about-experience span {
      font-size: 2.5rem;
    }
  
    /* Instagram */
    .instagram-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    /* Contact */
    .contact-form {
      padding: 1.5rem;
    }
  
    .contact-map {
      margin-top: 3rem;
      height: 300px;
    }
  
    /* Newsletter */
    .newsletter-form {
      flex-direction: column;
      height: auto;
    }
  
    .newsletter-form input,
    .newsletter-form button {
      width: 100%;
      height: 50px;
    }
  
    /* Footer */
    .footer {
      padding: 3rem 0 0;
    }
  
    .footer-widget {
      margin-bottom: 2rem;
    }
  
    .payment-methods {
      justify-content: flex-start;
      margin-top: 1.5rem;
    }
  }
  
  /* Small devices (landscape phones, 576px and up) */
  @media (min-width: 576px) and (max-width: 767.98px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
  
    .hero-title {
      font-size: 3rem;
    }
  
    .instagram-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .featured-product-content .product-title {
      font-size: 2rem;
    }
  
    .featured-product-image {
      padding: 1.5rem;
    }
  
    .featured-badge {
      right: 15px;
      padding: 0.5rem 1rem;
    }
  }

  /* Navbar styles */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Nav link colors */
.navbar .nav-link {
    color: black !important;
    transition: color 0.3s ease;
}

.btn-close
{
  background: white !important;
  color: black !important;
}

.navbar.scrolled .nav-link {
    color: #000 !important;
}

.navbar.scrolled .nav-link:hover {
    color: #555 !important;
}

/* Logo switching */
.logo-dark {
    display: none;
}

.navbar.scrolled .logo-light {
    display: none;
}

.navbar.scrolled .logo-dark {
    display: block;
}

/* Active link style */
.navbar .nav-link.active {
    font-weight: 600;
    position: relative;
}

.navbar .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: currentColor;
}

.navbar.scrolled .btn-outline-light {
    border-color: #000;
    color: #000;
}

.navbar.scrolled .btn-outline-light:hover {
    background-color: #000;
    color: #fff;
}
  
  /* Medium devices (tablets, 768px and up) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
  
    .hero-title {
      font-size: 3.25rem;
    }
  
    .featured-product-content {
      padding-left: 1.5rem;
    }
  
    .featured-product-content .product-title {
      font-size: 2.25rem;
    }
  
    .instagram-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
      max-width: 960px;
    }
  
    .featured-product-content {
      padding-left: 2rem;
    }
  }
  
  /* Extra large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {
    /* Styles already in your main CSS */
  }
  
  /* Special cases for very large screens */
  @media (min-width: 1400px) {
    .container {
      max-width: 1320px;
    }
  }
  
  /* Height adjustments for landscape mobile devices */
  @media (max-height: 600px) and (orientation: landscape) {
    .hero {
      min-height: auto;
      padding: 7rem 0;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-cta {
      margin-bottom: 1.5rem;
    }
  }
  
  /* Print styles */
  @media print {
    .navbar,
    .hero-scroll,
    .footer,
    .back-to-top {
      display: none !important;
    }
  
    body {
      padding: 20px;
      font-size: 12pt;
      color: #000;
      background: #fff !important;
    }
  
    a {
      color: #000 !important;
      text-decoration: underline !important;
    }
  
    .container {
      max-width: 100% !important;
      padding: 0 !important;
    }
  
    section {
      padding: 1rem 0 !important;
      page-break-inside: avoid;
    }
  
    .btn {
      display: none !important;
    }
  }