/* ==========================================================================
   #GLOBAL STYLES
   ========================================================================== */

   :root {
    /* Colors */
    --color-black: #000000;
    --color-black-soft: #111111;
    --color-white: #ffffff;
    --color-gold: #D4AF37;
    --color-gold-light: #E6C875;
    --color-gold-dark: #B38D2D;
    --color-gray: #333333;
    --color-gray-light: #f5f5f5;
    --color-gray-dark: #222222;
  
    /* Fonts */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
  
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
  
    /* Border radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
  
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.5);
  
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
  
    /* Container */
    --container-width: 1200px;
    --container-padding: 1.5rem;
  }
  
  /* ==========================================================================
     #BASE STYLES
     ========================================================================== */
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
  }
  
  body {
    min-height: 100vh;
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black-soft);
    text-rendering: optimizeSpeed;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    display: block;
    height: auto;
  }
  
  /* ==========================================================================
     #TYPOGRAPHY
     ========================================================================== */
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--color-white);
  }
  
  h1 {
    font-size: 5.6rem;
    line-height: 1.1;
  }
  
  h2 {
    font-size: 4.2rem;
  }
  
  h3 {
    font-size: 3.2rem;
  }
  
  h4 {
    font-size: 2.4rem;
  }
  
  p {
    margin-bottom: var(--space-md);
  }
  
  a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  a:hover {
    color: var(--color-gold-light);
  }
  
  /* ==========================================================================
     #LAYOUT COMPONENTS
     ========================================================================== */
  
  .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }
  
  .section {
    padding: var(--space-xxl) 0;
    position: relative;
  }
  
  .section--dark {
    background-color: var(--color-black-soft);
  }
  
  .section--black {
    background-color: var(--color-black);
  }
  
  .section-header {
    margin-bottom: var(--space-xl);
    text-align: center;
  }
  
  .section-label {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
  }
  
  .section-title {
    margin-bottom: var(--space-sm);
  }
  
  .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* ==========================================================================
     #PRODUCT HERO
     ========================================================================== */
  
     .product-hero {
      position: relative;
      height: 60vh;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center; /* Added to center content vertically and horizontally */
      background-color: var(--color-black);
      background-image: url('https://belshleather.in/assets/images/hero-product.jpg');
      background-size: cover;
      background-position: center;
      text-align: center; /* Center text alignment */
  }
  
  .product-hero__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
      z-index: 1;
  }
  
  .product-hero__content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1200px;
      padding: 0 2rem;
      margin: 0 auto; /* Center the content block */
  }
  
  .product-hero__title {
      font-size: clamp(3.6rem, 5vw, 6rem); /* Responsive font size */
      margin-bottom: var(--space-sm);
      color: var(--color-white);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      line-height: 1.1;
  }
  
  .product-hero__subtitle {
      font-size: clamp(1.6rem, 2vw, 2rem);
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin: 0 auto; /* Center the subtitle */
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  /* ==========================================================================
     #PRODUCT CATEGORIES
     ========================================================================== */
  
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }
  
  .category-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-medium);
  }
  
  .category-card:hover {
    transform: translateY(-10px);
  }
  
  .category-card__image {
    height: 300px;
    overflow: hidden;
  }
  
  .category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }
  
  .category-card:hover .category-card__image img {
    transform: scale(1.05);
  }
  
  .category-card__title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
    font-size: 2rem;
  }
  
  /* ==========================================================================
     #PRODUCT COLLECTIONS
     ========================================================================== */

  
  /* ==========================================================================
     #BULK ORDER SECTION
     ========================================================================== */
  
  .bulk-order {
    background-color: var(--color-black-soft);
    padding: var(--space-xxl) 0;
  }
  
  .bulk-order__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .bulk-order__content {
    max-width: 600px;
  }
  
  .bulk-order__text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
  }
  
  .bulk-benefits {
    list-style: none;
    margin: var(--space-xl) 0;
  }
  
  .bulk-benefits__item {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
  }
  
  .bulk-benefits__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: var(--space-sm);
    height: 2px;
    background-color: var(--color-gold);
  }
  
  .bulk-order__buttons {
    display: flex;
    gap: var(--space-md);
  }
  
  .bulk-order__image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .bulk-order__image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ==========================================================================
     #QUALITY ASSURANCE
     ========================================================================== */
  
  .quality-assurance {
    padding: var(--space-xxl) 0;
  }
  
  .quality-assurance__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .quality-assurance__image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .quality-assurance__image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .quality-assurance__text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
  }
  
  .quality-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }
  
  .quality-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.4rem;
  }
  
  /* ==========================================================================
     #RESPONSIVE ADJUSTMENTS
     ========================================================================== */
  
  @media (max-width: 992px) {
    .section {
      padding: var(--space-xl) 0;
    }
  
    h1 {
      font-size: 4.8rem;
    }
  
    h2 {
      font-size: 3.6rem;
    }
  
    .bulk-order__grid,
    .quality-assurance__grid {
      grid-template-columns: 1fr;
    }
  
    .bulk-order__image,
    .quality-assurance__image {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 3.6rem;
    }
  
    h2 {
      font-size: 3rem;
    }
  
    .product-hero {
      height: 50vh;
      min-height: 400px;
    }
  
    .product-hero__title {
      font-size: 4rem;
    }
  
    .bulk-order__buttons {
      flex-direction: column;
    }
  
    .quality-features {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    :root {
      --container-padding: 1rem;
    }
  
    h1 {
      font-size: 3rem;
    }
  
    h2 {
      font-size: 2.4rem;
    }
  
    .product-card {
      min-width: 260px;
    }
  }
  
  /* ==========================================================================
     #ANIMATIONS
     ========================================================================== */
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* ==========================================================================
     #UTILITIES
     ========================================================================== */
  
  .text-center {
    text-align: center;
  }
  
  .text-gold {
    color: var(--color-gold);
  }
  
  .mt-sm {
    margin-top: var(--space-sm);
  }
  
  .mt-md {
    margin-top: var(--space-md);
  }
  
  .mt-lg {
    margin-top: var(--space-lg);
  }

 