/* ========================================
   HARITH GOLD - Refactored Styles
   Optimized for better maintainability and mobile responsiveness
   ======================================== */

/* ========== CSS Reset & Base ========== */

/* ========== Custom Fonts ========== */
@font-face {
  font-family: 'The Seasons';
  src: url('/assets/fonts/fonnts.com-theseasons-reg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'The Seasons';
  src: url('/assets/fonts/fonnts.com-theseasons-bd.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'The Seasons';
  src: url('/assets/fonts/fonnts.com-theseasons-it.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'The Seasons';
  src: url('/assets/fonts/fonnts.com-theseasons-lt.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    /* Color Variables */
    --primary-color: #681618;
    --primary-dark: #521011;
    --primary-light: #a37172;
    --text-dark: #000;
    --text-light: #fff;
    --text-gray: #666;
    --text-muted: #999;
    --background-light: #f9f9f9;
    --border-color: #ddd;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.3);

    /* Font Families */
    --font-primary: 'Red Hat Display', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-round: 50%;
  }

  html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--text-light);
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  button {
    cursor: pointer;
    font-family: inherit;
  }

  /* ========== Layout Utilities ========== */
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }

  .section-padding {
    padding: var(--spacing-md) var(--spacing-md) 0 var(--spacing-md);
  }

  /* ========== Top Banner ========== */
  .top-banner {
    background-color: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
    padding: 0.4rem var(--spacing-xs);
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  }

  .top-banner-text {
    font-size: inherit;
    font-family: var(--font-primary);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
  }

  .banner-highlight {
    font-weight: 600;
  }

  .banner-hours {
    font-weight: 400;
    opacity: 0.9;
  }

  /* ========== Navigation ========== */
  .nav-wrapper {
    background: var(--text-light);
    padding: var(--spacing-sm);
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: visible;
  }

  .nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    overflow: visible;
  }

  .logo-container {
    flex: 0 0 auto;
    max-width: 200px;
  }

  .logo-img {
    width: 100%;
    height: auto;
  }

  .nav-menu {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    overflow: visible;
  }

  .nav-link {
    font-size: clamp(0.875rem, 1.5vw, 1.5rem);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: color var(--transition-normal);
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
  }

  .nav-link:hover {
    color: var(--primary-color);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Dropdown Menu Styles */
  .nav-dropdown {
    position: relative;
    overflow: visible;
  }

  .nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-dropdown > .nav-link i {
    font-size: 0.75em;
    transition: transform var(--transition-normal);
  }

  .nav-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background-color: var(--text-light);
    min-width: 220px;
    max-width: 350px;
    width: max-content;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 10000;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
    font-family: var(--font-primary);
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-normal);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.5;
  }

  .dropdown-link:hover {
    background-color: rgba(104, 22, 24, 0.05);
    color: var(--primary-color);
    padding-left: 2rem;
  }

  /* Dropdown scrollbar styling */
  .dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }

  .dropdown-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
  }

  .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(104, 22, 24, 0.3);
    border-radius: 3px;
  }

  .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(104, 22, 24, 0.5);
  }

  .social-icons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    align-items: center;
  }

  .social-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.5rem, 3.5vw, 3.5rem);
    height: clamp(2.5rem, 3.5vw, 3.5rem);
    color: var(--text-dark);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    transition: all var(--transition-normal);
  }

  .social-icon-link:hover {
    color: var(--primary-color);
    transform: scale(1.1);
  }

  .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-round);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ========== Hero Slider ========== */
  .hero-slider {
    position: relative;
    width: 100%;
    height: 801px;
    overflow: hidden;
  }

  .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #6b4f4f;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6b4f4f;
    z-index: 1;
    pointer-events: none;
  }

  .slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
  }

  .desktop1-thq-frame2-elm {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .desktop1-thq-rectangle-elm10,
  .desktop1-thq-rectangle-elm11 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.8;
  }

  .desktop1-thq-rectangle-elm10 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .desktop1-thq-rectangle-elm11 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    filter: brightness(0.8);
  }

  .desktop1-thq-text-elm12,
  .desktop1-thq-text-elm13 {
    position: absolute;
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-weight: 400;
    z-index: 2;
    text-shadow: 2px 2px 8px var(--shadow-dark);
  }

  .desktop1-thq-text-elm12 {
    top: 22%;
    left: 20%;
    text-align: left;
    font-size: clamp(3rem, 9vw, 8rem);
    letter-spacing: 0.02em;
  }

  .desktop1-thq-text-elm13 {
    top: 38%;
    right: 25%;
    text-align: right;
    font-size: clamp(2.5rem, 8vw, 7.5rem);
    letter-spacing: 0.02em;
  }

  .desktop1-thq-text-elm14 {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    max-width: 90%;
    width: 947px;
    font-size: clamp(1rem, 2.2vw, 1.75rem);
    font-family: var(--font-secondary);
    font-weight: 400;
    text-align: center;
    z-index: 2;
    line-height: 1.8;
    letter-spacing: 0.01em;
    text-shadow: 1px 1px 4px var(--shadow-dark);
  }

  .desktop1-thq-frame14-elm1,
  .desktop1-thq-frame14-elm2,
  .desktop1-thq-frame14-elm3,
  .desktop1-thq-frame14-elm4 {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border: 2px solid var(--text-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 2;
  }


  .desktop1-thq-frame14-elm1:hover,
  .desktop1-thq-frame14-elm2:hover,
  .desktop1-thq-frame14-elm3:hover,
  .desktop1-thq-frame14-elm4:hover {
    background: var(--text-light);
  }

  .desktop1-thq-frame14-elm1:hover .desktop1-thq-text-elm17,
  .desktop1-thq-frame14-elm2:hover .desktop1-thq-text-elm22,
  .desktop1-thq-frame14-elm3:hover .desktop1-thq-text-elm59,
  .desktop1-thq-frame14-elm4:hover .desktop1-thq-text-elm62 {
    color: var(--primary-color);
  }

  .desktop1-thq-text-elm17,
  .desktop1-thq-text-elm22,
  .desktop1-thq-text-elm59,
  .desktop1-thq-text-elm62 {
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 2rem);
    font-family: var(--font-secondary);
    font-weight: 300;
    transition: color var(--transition-normal);
  }

  /* Slider Controls */
  .hero-slider .slider-nav {
    position: absolute !important;
    bottom: 40px !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 100;
    pointer-events: auto;
    margin: 0;
    width: auto;
  }

  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--text-light);
    cursor: pointer;
    transition: all var(--transition-normal);
    pointer-events: auto;
    flex-shrink: 0;
  }

  .slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
  }

  .slider-dot.active {
    background: var(--text-light);
    transform: scale(1.2);
  }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
  }

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

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

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

  /* ========== Custom Design Section ========== */
  .desktop1-thq-group49-elm {
    position: relative;
    width: 100%;
    min-height: 801px;
    margin: var(--spacing-xl) 0 0 0;
  }

  .desktop1-thq-frame39-elm1 {
    position: relative;
    width: 100%;
    min-height: 801px;
    background-color: #6b4f4f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .desktop1-thq-rectangle-elm12 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
  }

  /* Custom Design Right Content Wrapper */
  .custom-design-right-content {
    position: absolute;
    top: 28%;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-lg);
    max-width: 90%;
    z-index: 2;
  }

  .desktop1-thq-text-elm18 {
    position: relative;
    color: var(--text-light);
    max-width: 100%;
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-family: 'The Seasons', serif;
    font-weight: 300;
    text-align: right;
    line-height: 0.72;
    text-shadow: 2px 2px 8px var(--shadow-dark);
  }

  .custom-design-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-lg);
    max-width: 100%;
    flex-wrap: wrap;
  }

  .desktop1-thq-text-elm21 {
    position: relative;
    color: var(--text-light);
    font-size: clamp(1.25rem, 2.8vw, 2.5rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    text-align: right;
    text-shadow: 1px 1px 4px var(--shadow-dark);
  }

  /* ========== Reusable CTA Button Component ========== */
  .harith-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border: 2px solid var(--text-light);
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 2;
    flex-shrink: 0;
    font-family: inherit;
  }

  .harith-cta-button span {
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 2rem);
    font-family: var(--font-secondary);
    font-weight: 300;
    transition: color var(--transition-normal);
  }

  .harith-cta-button:hover {
    background: var(--text-light);
  }

  .harith-cta-button:hover span {
    color: var(--primary-color);
  }

  /* Variant: Dark background button */
  .harith-cta-button--dark {
    border-color: var(--primary-color);
    background: transparent;
  }

  .harith-cta-button--dark span {
    color: var(--primary-color);
  }

  .harith-cta-button--dark:hover {
    background: var(--primary-color);
  }

  .harith-cta-button--dark:hover span {
    color: var(--text-light);
  }

  /* Variant: Filled button */
  .harith-cta-button--filled {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }

  .harith-cta-button--filled span {
    color: var(--text-light);
  }

  .harith-cta-button--filled:hover {
    background: transparent;
    border-color: var(--primary-color);
  }

  .harith-cta-button--filled:hover span {
    color: var(--primary-color);
  }

  /* ========== Button Center Wrapper ========== */
  .harith-button-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: var(--spacing-md);
  }

  /* ========== Gold Saving Section ========== */
  .desktop1-thq-group47-elm {
    position: relative;
    width: 100%;
    padding: 0 0 var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--text-light) 100%);
    overflow: hidden;
  }

  .gold-saving-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .gold-saving-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
  }

  .desktop1-thq-frame16-elm1 {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }

  .desktop1-thq-gold-saving-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
  }

  .desktop1-thq-text-content {
    padding: var(--spacing-lg);
  }

  .desktop1-thq-text-elm28 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-family: 'The Seasons', serif;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    white-space: nowrap;
  }

  .gold-saving-title {
    font-family: 'The Seasons', serif;
  }

  .desktop1-thq-text-elm31 {
    font-size: clamp(1.125rem, 2.2vw, 2rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
  }

  /* Membership Card */
  .desktop1-thq-membership-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1.586;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 8px 32px var(--shadow-dark);
    overflow: hidden;
  }

  .desktop1-thq-card-pattern-top,
  .desktop1-thq-card-pattern-bottom {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: var(--radius-round);
    opacity: 0.1;
  }

  .desktop1-thq-card-pattern-top {
    top: -50px;
    right: -50px;
    background: var(--text-light);
  }

  .desktop1-thq-card-pattern-bottom {
    bottom: -50px;
    left: -50px;
    background: var(--text-light);
  }

  .desktop1-thq-card-gold-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, #d4af37 0%, #f8e17f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  }

  .desktop1-thq-card-emblem {
    font-size: 4rem;
  }

  .desktop1-thq-card-harith {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
  }

  .desktop1-thq-card-membership-text {
    position: absolute;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    font-size: clamp(0.75rem, 1.5vw, 1.25rem);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    text-align: right;
  }

  /* Membership Card Image */
  .membership-card-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin-left: 20%;
  }

  /* Gold Price Tables */
  .gold-saving-tables-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .gold-price-table-wrapper {
    background: var(--text-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow-light);
  }

  .gold-price-table-title {
    font-size: clamp(4rem, 5vw, 5rem);
    font-family: 'The Seasons', serif;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
  }

  .gold-saving-price-label {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-family: var(--font-primary);
    color: var(--text-gray);
    text-align: center;
  }

  .desktop1-thq-frame34-elm,
  .desktop1-thq-frame35-elm {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  /* Latest Gold Price Table - Redesigned */
  .latest-gold-price-table {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px dashed #ccc;
    padding: 0;
  }

  .latest-gold-price-table .gold-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .latest-gold-price-table .gold-price-table th,
  .latest-gold-price-table .gold-price-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
    font-size: clamp(0.875rem, 1.8vw, 1.5rem);
    font-family: var(--font-secondary);
    font-weight: 500;
  }

  .latest-gold-price-table .gold-price-table th.purity-header,
  .latest-gold-price-table .gold-price-table td.purity-cell {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    border-right: 1px dashed rgba(255, 255, 255, 0.5);
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  }

  .latest-gold-price-table .gold-price-table th.purity-header {
    border-left: none;
    border-top: none;
  }

  .latest-gold-price-table .gold-price-table td.purity-cell {
    border-left: none;
  }

  .latest-gold-price-table .gold-price-table th.price-header,
  .latest-gold-price-table .gold-price-table td.price-cell {
    background: var(--background-light);
    color: var(--text-dark);
    border-left: 1px dashed #ccc;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
  }

  .latest-gold-price-table .gold-price-table th.price-header {
    background: var(--text-light);
    font-weight: 600;
    border-top: none;
  }

  .latest-gold-price-table .gold-price-table thead tr th:first-child {
    border-top-left-radius: var(--radius-lg);
  }

  .latest-gold-price-table .gold-price-table thead tr th:last-child {
    border-top-right-radius: var(--radius-lg);
    border-right: none;
  }

  .latest-gold-price-table .gold-price-table tbody tr:last-child td.purity-cell {
    border-bottom: none;
    border-bottom-left-radius: var(--radius-lg);
  }

  .latest-gold-price-table .gold-price-table tbody tr:last-child td:last-child {
    border-bottom: none;
    border-right: none;
    border-bottom-right-radius: var(--radius-lg);
  }

  /* We Buy Gold Table - Redesigned */
  .we-buy-gold-table {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px dashed #ccc;
    padding: 0;
  }

  .we-buy-gold-table .gold-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .we-buy-gold-table .gold-price-table th,
  .we-buy-gold-table .gold-price-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
    font-size: clamp(0.875rem, 1.8vw, 1.5rem);
    font-family: var(--font-secondary);
    font-weight: 500;
  }

  .we-buy-gold-table .gold-price-table th.purity-header,
  .we-buy-gold-table .gold-price-table td.purity-cell {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    border-right: 1px dashed rgba(255, 255, 255, 0.5);
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  }

  .we-buy-gold-table .gold-price-table th.purity-header {
    border-left: none;
    border-top: none;
  }

  .we-buy-gold-table .gold-price-table td.purity-cell {
    border-left: none;
  }

  .we-buy-gold-table .gold-price-table th.price-header,
  .we-buy-gold-table .gold-price-table td.price-cell {
    background: var(--background-light);
    color: var(--text-dark);
    border-left: 1px dashed #ccc;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
  }

  .we-buy-gold-table .gold-price-table th.price-header {
    background: var(--text-light);
    font-weight: 600;
    border-top: none;
  }

  .we-buy-gold-table .gold-price-table thead tr th:first-child {
    border-top-left-radius: var(--radius-lg);
  }

  .we-buy-gold-table .gold-price-table thead tr th:last-child {
    border-top-right-radius: var(--radius-lg);
    border-right: none;
  }

  .we-buy-gold-table .gold-price-table tbody tr:last-child td.purity-cell {
    border-bottom: none;
    border-bottom-left-radius: var(--radius-lg);
  }

  .we-buy-gold-table .gold-price-table tbody tr:last-child td:last-child {
    border-bottom: none;
    border-right: none;
    border-bottom-right-radius: var(--radius-lg);
  }

  .desktop1-thq-group20-elm1,
  .desktop1-thq-group20-elm2,
  .desktop1-thq-group21-elm1,
  .desktop1-thq-group21-elm2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
  }

  .desktop1-thq-group20-elm1,
  .desktop1-thq-group20-elm2 {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
  }

  .desktop1-thq-group21-elm1,
  .desktop1-thq-group21-elm2 {
    background: var(--background-light);
  }

  .desktop1-thq-frame30-elm1,
  .desktop1-thq-frame30-elm2,
  .desktop1-thq-frame30-elm3,
  .desktop1-thq-frame30-elm4,
  .desktop1-thq-frame31-elm1,
  .desktop1-thq-frame31-elm2,
  .desktop1-thq-frame31-elm3,
  .desktop1-thq-frame31-elm4,
  .desktop1-thq-frame32-elm1,
  .desktop1-thq-frame32-elm2 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    text-align: center;
  }

  .desktop1-thq-text-elm33,
  .desktop1-thq-text-elm34,
  .desktop1-thq-text-elm35,
  .desktop1-thq-text-elm36,
  .desktop1-thq-text-elm37,
  .desktop1-thq-text-elm38,
  .desktop1-thq-text-elm39,
  .desktop1-thq-text-elm40,
  .desktop1-thq-text-elm41,
  .desktop1-thq-text-elm42,
  .desktop1-thq-text-elm43,
  .desktop1-thq-text-elm44,
  .desktop1-thq-text-elm45,
  .desktop1-thq-text-elm46,
  .desktop1-thq-text-elm47 {
    font-size: clamp(0.875rem, 1.8vw, 1.5rem);
    font-family: var(--font-secondary);
    font-weight: 500;
  }

  /* ========== Collections Section ========== */
  .collections-section {
    padding: 80px 40px;
    background: #FFFFFF;
  }

  .collections-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-family: 'The Seasons', serif;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
  }

  .collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .collection-item:hover {
    transform: translateY(-5px);
  }

  .collection-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border: 2px solid #000000;
    padding: 20px;
    background: #FFFFFF;
    overflow: hidden;
  }

  .collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .collection-category {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
  }

  /* ========== Service Sections ========== */
  .desktop1-thq-group50-elm,
  .desktop1-thq-group51-elm {
    position: relative;
    width: 100%;
    min-height: 600px;
    margin: var(--spacing-2xl) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .desktop1-thq-frame40-elm1,
  .desktop1-thq-frame41-elm1 {
    padding: var(--spacing-xl);
    background: var(--background-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow-light);
  }

  .desktop1-thq-group8-elm1,
  .desktop1-thq-group8-elm2 {
    margin-bottom: var(--spacing-lg);
  }

  .desktop1-thq-text-elm55,
  .desktop1-thq-text-elm60 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2;
  }

  .desktop1-thq-frame22-elm1,
  .desktop1-thq-frame22-elm2 {
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin-top: var(--spacing-sm);
  }

  .desktop1-thq-text-elm58,
  .desktop1-thq-text-elm61 {
    font-size: clamp(1rem, 2vw, 1.75rem);
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
  }

  .desktop1-thq-frame12-elm,
  .desktop1-thq-group25-elm {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
  }

  .desktop1-thq-frame10-elm,
  .desktop1-thq-maskgroup-elm4 {
    width: 100%;
    height: 100%;
    min-height: 400px;
  }

  .desktop1-thq-rectangle-elm26,
  .desktop1-thq-rectangle-elm28 {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ========== Background Image Section ========== */
  .desktop1-thq-frame18-elm {
    width: 100%;
    height: 50%;
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .background-image-section {
    width: 100%;
    min-height: 300px;
    max-height: 500px;
    margin: var(--spacing-2xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
  }

  .background-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .desktop1-thq-rectangle-elm31 {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ========== Services Grid ========== */
  .desktop1-thq-frame43-elm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl) var(--spacing-md);
    max-width: 1440px;
    margin: 0 auto;
  }

  .desktop1-thq-group32-elm,
  .desktop1-thq-group33-elm,
  .desktop1-thq-group34-elm,
  .desktop1-thq-group35-elm {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
    cursor: pointer;
  }

  .desktop1-thq-group32-elm:hover,
  .desktop1-thq-group33-elm:hover,
  .desktop1-thq-group34-elm:hover,
  .desktop1-thq-group35-elm:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-medium);
  }

  .desktop1-thq-frame19-elm,
  .desktop1-thq-frame40-elm2,
  .desktop1-thq-frame41-elm2,
  .desktop1-thq-frame42-elm {
    display: flex;
    flex-direction: column;
  }

  .desktop1-thq-group31-elm1,
  .desktop1-thq-group27-elm,
  .desktop1-thq-group28-elm,
  .desktop1-thq-group29-elm,
  .desktop1-thq-group26-elm {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }

  .desktop1-thq-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }

  .desktop1-thq-group32-elm:hover .desktop1-thq-service-image,
  .desktop1-thq-group33-elm:hover .desktop1-thq-service-image,
  .desktop1-thq-group34-elm:hover .desktop1-thq-service-image,
  .desktop1-thq-group35-elm:hover .desktop1-thq-service-image {
    transform: scale(1.1);
  }

  .desktop1-thq-frame16-elm2,
  .desktop1-thq-frame16-elm3,
  .desktop1-thq-frame16-elm4,
  .desktop1-thq-frame16-elm5 {
    padding: var(--spacing-lg);
  }

  .desktop1-thq-group31-elm2 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .desktop1-thq-text-elm63,
  .desktop1-thq-text-elm66,
  .desktop1-thq-text-elm69,
  .desktop1-thq-text-elm72 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
  }

  .desktop1-thq-text-elm64,
  .desktop1-thq-text-elm67,
  .desktop1-thq-text-elm70,
  .desktop1-thq-text-elm73 {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
  }

  .desktop1-thq-group30-elm1,
  .desktop1-thq-group30-elm2,
  .desktop1-thq-group30-elm3,
  .desktop1-thq-group30-elm4 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: gap var(--transition-normal);
  }

  .desktop1-thq-group30-elm1:hover,
  .desktop1-thq-group30-elm2:hover,
  .desktop1-thq-group30-elm3:hover,
  .desktop1-thq-group30-elm4:hover {
    gap: var(--spacing-sm);
  }

  .desktop1-thq-text-elm65,
  .desktop1-thq-text-elm68,
  .desktop1-thq-text-elm71,
  .desktop1-thq-text-elm74 {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-family: var(--font-primary);
    font-weight: 600;
  }

  .desktop1-thq-arrow-icon {
    font-size: 1.25rem;
    transition: transform var(--transition-normal);
  }

  /* ========== CTA Button ========== */
  .cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid var(--primary-color);
  }

  .cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 22, 24, 0.3);
  }

  .cta-button-light {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
  }

  .cta-button-light:hover {
    background: var(--text-light);
    color: var(--primary-color);
  }

  /* Button for light backgrounds (like #F5EDE4) */
  .cta-button-dark {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }

  .cta-button-dark:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 22, 24, 0.3);
  }

  /* Craft Personalize Button - specific styling */
  .craft-personalize-button {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-family: var(--font-secondary);
    font-weight: 400;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    margin-top: var(--spacing-md);
  }

  .craft-personalize-button:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 22, 24, 0.3);
  }

  /* ========== Footer ========== */
  footer {
    background: #1a1a1a;
    color: var(--text-light);
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-lg);
  }

  .footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
  }

  .footer-section h3 {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
  }

  .footer-section p,
  .footer-section a {
    font-size: 1rem;
    font-family: var(--font-primary);
    line-height: 1.8;
    color: #ccc;
    transition: color var(--transition-normal);
  }

  .footer-section a:hover {
    color: var(--text-light);
  }

  .footer-links {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 0.75rem;
  }

  .footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: var(--radius-round);
    color: var(--text-light);
    font-size: 1.25rem;
    transition: all var(--transition-normal);
  }

  .footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
  }

  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
  }

  .newsletter-form {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
  }

  .newsletter-input {
    flex: 1;
    padding: 0.75rem var(--spacing-sm);
    border: 1px solid #333;
    background: #2a2a2a;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
  }

  .newsletter-input::placeholder {
    color: var(--text-muted);
  }

  .newsletter-button {
    padding: 0.75rem var(--spacing-md);
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: background var(--transition-normal);
  }

  .newsletter-button:hover {
    background: var(--primary-dark);
  }

  /* ========== Popup Styles ========== */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .popup-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .popup-container {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    transition: transform var(--transition-normal);
    box-shadow: 0 10px 40px var(--shadow-dark);
  }

  .popup-overlay.active .popup-container {
    transform: translateY(0);
  }

  .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid #eee;
  }

  .popup-title {
    font-size: 1.75rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
  }

  .popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    transition: all var(--transition-normal);
  }

  .popup-close:hover {
    background: var(--background-light);
    color: var(--text-dark);
  }

  .popup-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
  }

  .popup-footer {
    padding: var(--spacing-md);
    border-top: 1px solid #eee;
  }

  /* Cart Popup */
  .cart-popup {
    max-width: 450px;
  }

  .cart-empty {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-sm);
    color: var(--text-muted);
  }

  .cart-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-bottom: 1px solid #eee;
    transition: background var(--transition-fast);
  }

  .cart-item:hover {
    background: var(--background-light);
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
  }

  .cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .cart-item-name {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .cart-item-price {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
  }

  .cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
  }

  .cart-item-qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border-color);
    background: var(--text-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
  }

  .cart-item-qty-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
  }

  .cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    padding: var(--spacing-xs);
    transition: color var(--transition-fast);
  }

  .cart-item-remove:hover {
    color: var(--primary-color);
  }

  .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
  }

  .cart-total-price {
    color: var(--primary-color);
  }

  /* Search Popup */
  .search-popup {
    max-width: 600px;
    max-height: 80vh;
  }

  .search-input-wrapper {
    position: relative;
    margin-bottom: var(--spacing-md);
  }

  .search-icon {
    position: absolute;
    left: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.25rem;
  }

  .search-input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) var(--spacing-xl);
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-normal);
  }

  .search-input:focus {
    outline: none;
    border-color: var(--primary-color);
  }

  .search-hint {
    text-align: center;
    color: var(--text-muted);
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .search-result-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast);
  }

  .search-result-item:hover {
    background: var(--background-light);
  }

  .search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-md);
  }

  .search-result-details {
    flex: 1;
  }

  .search-result-name {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
  }

  .search-result-price {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
  }

  /* ========== Shop Page Styles ========== */
  .shop-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: var(--spacing-2xl) var(--spacing-md);
    text-align: center;
  }

  .shop-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
  }

  .shop-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-family: var(--font-primary);
    max-width: 600px;
    margin: 0 auto;
  }

  .shop-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .shop-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
  }

  /* Filter Sidebar */
  .filter-sidebar {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 2px 15px var(--shadow-light);
    position: sticky;
    top: 100px;
  }

  .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
  }

  .filter-title {
    font-size: 1.75rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--primary-color);
  }

  .filter-reset {
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--transition-normal);
  }

  .filter-reset:hover {
    color: var(--primary-dark);
  }

  .filter-group {
    margin-bottom: var(--spacing-lg);
  }

  .filter-group-title {
    font-size: 1.25rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
  }

  .filter-group-title i {
    font-size: 1rem;
    color: var(--primary-color);
  }

  .filter-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
  }

  .filter-input-group > div {
    flex: 1;
    min-width: 0;
  }

  .filter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: border-color var(--transition-normal);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
  }

  .filter-input-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-xs);
    display: block;
  }

  .filter-apply-btn {
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
  }

  .filter-apply-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 22, 24, 0.3);
  }

  /* Products Section */
  .products-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    background: var(--text-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 15px var(--shadow-light);
  }

  .products-count {
    font-size: 1.25rem;
    font-family: var(--font-primary);
    color: var(--text-gray);
  }

  .products-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .sort-label {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-dark);
  }

  .sort-select {
    padding: var(--spacing-xs) 2rem var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    background: var(--text-light);
    cursor: pointer;
    transition: border-color var(--transition-normal);
  }

  .sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
  }

  .product-card {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 15px var(--shadow-light);
    transition: all var(--transition-normal);
    cursor: pointer;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--shadow-medium);
  }

  .product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
  }

  .product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-normal), transform var(--transition-slow);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
  }

  .product-image:not(:first-child) {
    opacity: 0;
  }

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

  .product-card:hover .product-image:nth-child(2) {
    opacity: 1;
    transform: scale(1.1);
  }

  .product-card:hover .product-image:first-child:only-child {
    opacity: 1;
    transform: scale(1.1);
  }

  /* Image navigation dots */
  .product-image-nav {
    position: absolute;
    bottom: var(--spacing-sm);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
  }

  .product-card:hover .product-image-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .product-image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all var(--transition-normal);
  }

  .product-image-dot.active {
    background: var(--text-light);
    border-color: var(--text-light);
    width: 10px;
    height: 10px;
  }

  .product-image-dot:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  .product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-primary);
    font-weight: 600;
  }

  .product-info {
    padding: var(--spacing-md);
  }

  .product-name {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
  }

  .product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: 0.75rem;
  }

  .product-spec {
    font-size: 0.85rem;
    font-family: var(--font-primary);
    color: var(--text-gray);
    background: var(--background-light);
    padding: 0.25rem var(--spacing-xs);
    border-radius: var(--radius-sm);
  }

  .product-price {
    font-size: 1.5rem;
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
  }

  .product-actions {
    display: flex;
    gap: var(--spacing-xs);
  }

  .btn-add-cart {
    flex: 1;
    padding: 0.75rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
  }

  .btn-add-cart:hover {
    background: var(--primary-dark);
  }

  .btn-wishlist {
    padding: 0.75rem;
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
    white-space: nowrap;
  }

  .btn-wishlist:hover {
    background: var(--primary-color);
    color: var(--text-light);
  }

  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
  }

  .pagination-btn {
    padding: 0.75rem var(--spacing-sm);
    background: var(--text-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 45px;
    text-align: center;
  }

  .pagination-btn:hover:not(.active):not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }

  .pagination-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
  }

  .pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .pagination-dots {
    padding: 0.75rem;
    color: var(--text-muted);
  }

  /* Mobile Filter Toggle */
  .filter-toggle {
    display: none;
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
  }

  .filter-overlay {
    display: none;
  }

  /* ========== Service Page Styles ========== */
  .hero-section {
    position: relative;
    min-height: 50vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
    padding: var(--spacing-lg);
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 7.5rem);
    font-family: 'The Seasons', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
  }

  .section-title {
    font-size: clamp(2rem, 6vw, 6rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0;
  }

  .service-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
  }

  .service-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-family: var(--font-primary);
    line-height: 1.8;
    color: #333;
  }

  .services-section {
    width: 100%;
    margin: -10rem 0 var(--spacing-2xl) 0;
    padding: 0 5%;
    background-color: #ffffff;
    padding-top: 7%;
  }

  .services-section.gold-saving-info-section {
    background-color: #ffffff;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    padding: 0 5%;
  }

  .service-horizontal {
    display: flex;
    gap: 0;
    align-items: center;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative;
    width: calc(100% + 10%);
    margin-left: -5%;
  }

  .service-image-wrapper {
    flex: 0 0 31%;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: -3%;
    z-index: 2;
    max-width: 700px;
  }

  .service-image {
    width: 110%;
    height: 110%;
    object-fit: contain;
    display: block;
    background: transparent;
  }

  .service-content-wrapper {
    flex: 1 1 100%;
    padding: var(--spacing-xl);
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: 0;
    color: var(--text-light);
    justify-content: center;
    height: 100%;
    position: relative;
    background: #8B5A5A;
    min-height: 500px;
    z-index: 1;
    width: 100%;
  }

  .service-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .service-item .service-title {
    color: var(--text-light);
    text-align: left;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }

  .service-item .service-description {
    color: var(--text-light);
    text-align: left;
    font-size: clamp(1.25rem, 2.8vw, 1.875rem);
  }

  /* Gold Saving Info Section Styling */
  .gold-saving-content-wrapper {
    background-color: #fbeae1;
    padding: var(--spacing-2xl) var(--spacing-xl);
  }

  .gold-saving-content-wrapper .service-item .service-title {
    color: #5c1e1f;
  }

  .gold-saving-content-wrapper .service-item .service-description {
    color: #5c1e1f;
  }

  /* ========== Craft Your Own Section - Renamed classes to prevent clashes ========== */
  .craft-services-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
  }

  .craft-service-horizontal {
    display: flex;
    gap: 0;
    align-items: center;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }

  .craft-service-image-wrapper {
    flex: 0 0 23%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    height: 120%;
    margin-top: -10%;
    margin-bottom: -10%;
  }

  .craft-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .craft-service-content-wrapper {
    flex: 1 1 100%;
    padding: var(--spacing-xl) 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #333;
    justify-content: center;
    height: 100%;
    position: relative;
    background: #F5EDE4;
    min-height: 500px;
    z-index: 1;
    width: 100%;
  }

  .craft-service-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .craft-service-item .craft-service-title {
    color: #333;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
  }

  .craft-service-item .craft-service-description {
    color: #333;
    text-align: center;
    font-size: clamp(1.25rem, 2.8vw, 2.875rem);
    line-height: 1.4;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    margin: 0;
  }

  /* ========== Craft Unique Section (Craft Your Own Page) ========== */
  .craft-unique-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
  }

  .craft-unique-horizontal {
    display: flex;
    gap: 0;
    align-items: center;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }

  .craft-unique-image-wrapper {
    flex: 0 0 35%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    height: 120%;
    margin-top: -10%;
    margin-bottom: -10%;
  }

  .craft-unique-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .craft-unique-content-wrapper {
    flex: 1 1 100%;
    padding: var(--spacing-xl) 0 var(--spacing-xl) 45%;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #333;
    justify-content: center;
    height: 100%;
    position: relative;
    background: #F5EDE4;
    min-height: 500px;
    z-index: 1;
    width: 100%;
    margin-left: -45%;
  }

  .craft-unique-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .craft-unique-item .craft-unique-title {
    color: #333;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
  }

  .craft-unique-item .craft-unique-description {
    color: #333;
    text-align: center;
    font-size: clamp(1.25rem, 2.8vw, 2.875rem);
    line-height: 1.4;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    margin: 0;
  }

  /* ========== Corporate Gift Section (Index Page) ========== */
  .corporate-gift-section {
    width: 100%;
    margin: -10rem 0 var(--spacing-sm) 0;
    padding: 0 3%;
    background-color: #ffffff;
    padding-top: 3%;
  }

  .corporate-gift-horizontal {
    display: flex;
    gap: 0;
    align-items: center;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative;
    width: calc(100% + 10%);
    padding-left: 11%;
    padding-right: 11%;
  }

  .corporate-gift-image-wrapper {
    flex: 0 0 55%;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: -10%;
    z-index: 2;
    max-width: 700px;
    padding-right: 3%;
  }

  .corporate-gift-image {
    width: 110%;
    height: 110%;
    object-fit: contain;
    display: block;
    background: transparent;
  }

  .corporate-gift-content-wrapper {
    flex: 1 1 100%;
    padding: var(--spacing-xl);
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: 0;
    color: var(--text-light);
    justify-content: center;
    height: 100%;
    position: relative;
    background: #8B5A5A;
    min-height: 500px;
    z-index: 1;
    width: 100%;
  }

  .corporate-gift-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .corporate-gift-item .corporate-gift-title {
    color: var(--text-light);
    text-align: left;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-family: 'The Seasons', serif;
    font-weight: 700;
  }

  .corporate-gift-item .corporate-gift-description {
    color: var(--text-light);
    text-align: left;
    font-size: clamp(1.25rem, 2.8vw, 1.875rem);
    font-family: var(--font-primary);
    line-height: 1.8;
  }

  .care-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .care-image-wrapper {
    border-radius: var(--radius-round);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 600px;
    width: 100%;
    flex: 0 0 auto;
    border: 15px solid var(--text-light);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    z-index: 2;
    margin-right: -10%;
    margin-left: -3%;
  }

  .care-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .care-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-light);
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-2xl) * 2);
    border-radius: 0;
    color: var(--text-light);
    gap: var(--spacing-lg);
    flex: 1;
    min-width: 400px;
    padding-left: 15%;
  }

  .care-content .service-title,
  .care-content .service-description {
    color: var(--text-light);
  }

  .care-content .service-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }

  .care-content .service-description {
    font-size: clamp(1.25rem, 2.8vw, 1.875rem);
  }

  /* Aftercare Cleaning Section - Renamed classes to prevent clashes */
  .aftercare-cleaning-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    padding-left: 11%;
    padding-right: 11%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .aftercare-cleaning-image-wrapper {
    border-radius: var(--radius-round);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 600px;
    width: 100%;
    flex: 0 0 auto;
    border: 15px solid var(--text-light);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    z-index: 2;
    margin-right: -10%;
  }

  .aftercare-cleaning-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aftercare-cleaning-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-light);
    padding: var(--spacing-md) var(--spacing-xl) var(--spacing-md) calc(var(--spacing-2xl) * 2);
    border-radius: 0;
    color: var(--text-light);
    gap: var(--spacing-md);
    flex: 1;
    min-width: 400px;
    padding-left: 15%;
    padding-right: 15%;
  }

  .aftercare-cleaning-content .aftercare-cleaning-title,
  .aftercare-cleaning-content .aftercare-cleaning-description {
    color: var(--text-light);
  }

  .aftercare-cleaning-content .aftercare-cleaning-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-family: 'The Seasons', serif;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  .aftercare-cleaning-content .aftercare-cleaning-description {
    font-size: clamp(1.25rem, 2.8vw, 1.875rem);
  }

  .repairing-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .repairing-image-wrapper {
    border-radius: var(--radius-round);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 600px;
    width: 100%;
    flex: 0 0 auto;
    border: 15px solid var(--text-light);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    z-index: 2;
    margin-left: -10%;
    margin-right: -5%;
  }

  .repairing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .repairing-content {
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-light);
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-2xl) * 2);
    border-radius: 0;
    color: var(--text-light);
    gap: var(--spacing-lg);
    flex: 1;
    min-width: 400px;
    max-width: none;
    position: relative;
    z-index: 1;
    padding-left: 10%;
    padding-right: 10%;
  }

  .repairing-content .service-title,
  .repairing-content .service-description {
    color: var(--text-light);
  }

  .repairing-content .service-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }

  .repairing-content .service-description {
    font-size: clamp(1.25rem, 2.8vw, 1.875rem);
    line-height: 1.4;
  }

  /* ========== Craft Personalize Section (Craft Your Own Page) ========== */
  .craft-personalize-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
  }

  .craft-personalize-image-wrapper {
    border-radius: var(--radius-round);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 600px;
    width: 100%;
    flex: 0 0 auto;
    border: 15px solid var(--text-light);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    z-index: 2;
    margin-left: -10%;
  }

  .craft-personalize-content {
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #F5EDE4;
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-2xl) * 2);
    border-radius: 0;
    color: #333;
    gap: var(--spacing-lg);
    flex: 1;
    min-width: 400px;
    max-width: none;
    position: relative;
    z-index: 1;
    padding-left: 10%;
    padding-right: 10%;
  }

  .craft-personalize-content .craft-personalize-title,
  .craft-personalize-content .craft-personalize-description {
    color: #333;
  }

  .craft-personalize-content .craft-personalize-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
  }

  .craft-personalize-content .craft-personalize-description {
    font-size: clamp(1.25rem, 2.8vw, 1.875rem);
    line-height: 1.4;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
  }

  .craft-personalize-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* ========== Why Choose Section (Our Stories Page) ========== */
  .why-choose-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: relative;
    /* background: #f5ebe0; */
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-2xl);
  }

  .why-choose-image-wrapper {
    border-radius: var(--radius-round);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 800px;
    width: 100%;
    flex: 0 0 auto;
    border: 15px solid var(--text-light);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    z-index: 2;
    margin-left: -10%;
    margin-right: -10%;
  }

  .why-choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .why-choose-content {
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #F5EDE5;
    border-radius: 0;
    color: var(--text-light);
    gap: var(--spacing-lg);
    flex: 1;
    min-width: 400px;
    max-width: none;
    position: relative;
    z-index: 1;
    padding-left: 10%;
    padding-right: 10%;
  }

  .why-choose-content .why-choose-title,
  .why-choose-content .why-choose-description {
    color: var(--primary-color);
  }

  .why-choose-content .why-choose-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }

  .why-choose-content .why-choose-description {
    font-size: clamp(1.25rem, 2.8vw, 1.875rem);
    line-height: 1.4;
  }

  /* ========== After Care Service Section (Index Page) ========== */
  .aftercare-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: relative;
    padding-right: 3%;
    padding-left: 3%;
  }

  .aftercare-image-wrapper {
    border-radius: var(--radius-round);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 600px;
    width: 100%;
    flex: 0 0 auto;
    border: 15px solid var(--text-light);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    z-index: 2;
    /* margin-left: -10%; */
    margin-right: 0;
  }

  .aftercare-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aftercare-content {
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-light);
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-2xl) * 2);
    border-radius: 0;
    color: var(--text-light);
    gap: var(--spacing-lg);
    flex: 1;
    min-width: 400px;
    max-width: none;
    position: relative;
    z-index: 1;
    padding-left: 10%;
    padding-right: 10%;
  }

  .aftercare-content .service-title,
  .aftercare-content .service-description {
    color: var(--text-light);
  }

  .aftercare-content .service-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }

  .aftercare-content .service-description {
    font-size: clamp(1.25rem, 2.8vw, 1.875rem);
    line-height: 1.4;
  }


  .cleaning-banner {
    background-color: rgba(104, 22, 24, 0.61);
    color: var(--text-light);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
  }

  .cleaning-banner-content {
    max-width: 1200px;
    margin: 0 auto;
  }

  .banner-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
  }

  .banner-text {
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.6;
  }

  .stores-section {
    background: var(--text-light);
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: 0 -12px 24px rgba(0, 0, 0, 0.07);
  }

  .stores-container {
    max-width: 1440px;
    margin: 0 auto;
  }

  .stores-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }

  .stores-title {
    font-size: clamp(2rem, 6vw, 6rem);
    font-family: 'The Seasons', serif;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: #010101;
  }

  .stores-subtitle {
    font-size: clamp(1.25rem, 3vw, 2.625rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    max-width: 1200px;
    margin: 0 auto;
  }

  .stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
  }

  .store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    text-align: center;
  }

  .store-icon {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-round);
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .store-icon svg {
    width: 80px;
    height: 80px;
  }

  .store-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .store-name {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--text-dark);
  }

  .store-address {
    font-size: clamp(1.25rem, 2vw, 2.5rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-dark);
  }

  .store-phone {
    font-size: clamp(1.125rem, 2vw, 2.25rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-dark);
  }

  /* ========== Utility Classes ========== */
  .text-center {
    text-align: center;
  }

  .mt-1 { margin-top: var(--spacing-xs); }
  .mt-2 { margin-top: var(--spacing-sm); }
  .mt-3 { margin-top: var(--spacing-md); }
  .mt-4 { margin-top: var(--spacing-lg); }

  .mb-1 { margin-bottom: var(--spacing-xs); }
  .mb-2 { margin-bottom: var(--spacing-sm); }
  .mb-3 { margin-bottom: var(--spacing-md); }
  .mb-4 { margin-bottom: var(--spacing-lg); }

  /* ========== Responsive Design ========== */
  @media (max-width: 1024px) {
    .nav-container {
      flex-direction: column;
      text-align: center;
    }

    .nav-menu {
      justify-content: center;
    }

    .dropdown-menu {
      left: 50%;
      transform: translateX(-50%) translateY(-10px);
    }

    .nav-dropdown:hover .dropdown-menu {
      transform: translateX(-50%) translateY(0);
    }

    .section-padding {
      padding: var(--spacing-lg) var(--spacing-sm);
    }

    .shop-layout {
      grid-template-columns: 1fr;
    }

    .filter-toggle {
      display: flex;
    }

    .filter-sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 90%;
      max-width: 350px;
      height: 100vh;
      z-index: 10000;
      overflow-y: auto;
      transition: left var(--transition-normal);
      border-radius: 0;
    }

    .filter-sidebar.active {
      left: 0;
    }

    .filter-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: all var(--transition-normal);
      display: block;
    }

    .filter-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .desktop1-thq-gold-saving-content {
      grid-template-columns: 1fr;
    }

    .desktop1-thq-membership-card {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .hero-slider {
      height: 50vh;
      min-height: 400px;
    }

    .slider-arrow {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }

    .slider-arrow.prev {
      left: 10px;
    }

    .slider-arrow.next {
      right: 10px;
    }

    .desktop1-thq-text-elm12,
    .desktop1-thq-text-elm13 {
      max-width: 95%;
    }

    .desktop1-thq-text-elm14 {
      max-width: 95%;
    }

    .desktop1-thq-frame14-elm1,
    .desktop1-thq-frame14-elm2,
    .desktop1-thq-frame14-elm3,
    .desktop1-thq-frame14-elm4 {
      padding: var(--spacing-sm) var(--spacing-md);
    }

    .collections-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 30px;
    }

    .collections-section {
      padding: 60px 30px;
    }

    .collections-title {
      margin-bottom: 50px;
    }

    .collection-image-frame {
      padding: 15px;
    }

    .desktop1-thq-group50-elm,
    .desktop1-thq-group51-elm {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .desktop1-thq-frame43-elm {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: var(--spacing-md);
    }

    .products-header {
      flex-direction: column;
      align-items: stretch;
    }

    .products-sort {
      justify-content: space-between;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .service-horizontal {
      flex-direction: column;
    }

    .service-image-wrapper {
      position: relative;
      flex: 0 0 auto;
      min-height: 300px;
      max-height: 400px;
      height: auto;
      width: 100%;
      top: 0;
      bottom: 0;
      left: 0;
      background: #ffffff;
      margin-left: 0;
      margin-bottom: -10%;
      max-width: 400px;
    }

    .service-content-wrapper {
      padding: var(--spacing-lg);
      padding-left: var(--spacing-lg);
      background: #8B5A5A;
    }

    .craft-service-horizontal {
      flex-direction: column;
      overflow: visible;
    }

    .craft-service-image-wrapper {
      flex: 0 0 auto;
      width: 100%;
      min-height: 300px;
      max-height: 400px;
      height: auto;
      margin-top: 0;
      margin-bottom: 0;
    }

    .craft-service-content-wrapper {
      padding: var(--spacing-lg) 0;
      background: #F5EDE4;
      min-height: auto;
    }

    .craft-service-item {
      max-width: 100%;
    }

    .craft-unique-horizontal {
      flex-direction: column;
      overflow: visible;
    }

    .craft-unique-image-wrapper {
      flex: 0 0 auto;
      width: 100%;
      min-height: 300px;
      max-height: 400px;
      height: auto;
      margin-top: 0;
      margin-bottom: 0;
    }

    .craft-unique-content-wrapper {
      padding: var(--spacing-lg) 0;
      background: #F5EDE4;
      min-height: auto;
      margin-left: 0;
      padding-left: 0;
    }

    .craft-unique-item {
      max-width: 100%;
    }

    .corporate-gift-section {
      margin: var(--spacing-xl) 0 var(--spacing-sm) 0;
      padding: var(--spacing-lg) 3%;
      padding-top: var(--spacing-xl);
    }

    .corporate-gift-horizontal {
      flex-direction: column;
      width: 100%;
      padding-left: 0;
      padding-right: 0;
    }

    .corporate-gift-image-wrapper {
      position: relative;
      flex: 0 0 auto;
      min-height: 300px;
      max-height: 400px;
      height: auto;
      width: 100%;
      top: 0;
      bottom: 0;
      left: 0;
      background: #ffffff;
      margin-left: 0;
      margin-bottom: -10%;
      max-width: 400px;
    }

    .corporate-gift-content-wrapper {
      padding: var(--spacing-xl) var(--spacing-lg);
      padding-top: calc(var(--spacing-xl) + var(--spacing-md));
      background: #8B5A5A;
      min-height: auto;
    }

    .corporate-gift-item {
      gap: var(--spacing-md);
    }

    .corporate-gift-item .corporate-gift-title {
      margin-top: var(--spacing-md);
      margin-bottom: var(--spacing-sm);
    }

    .care-section,
    .aftercare-cleaning-section,
    .repairing-section,
    .aftercare-section,
    .why-choose-section,
    .craft-personalize-section {
      flex-direction: column;
      gap: var(--spacing-lg);
    }

    .aftercare-cleaning-section {
      margin-bottom: 0;
      padding-bottom: 0;
      padding-top: 0;
    }

    .aftercare-cleaning-content {
      padding-top: var(--spacing-md);
      padding-bottom: var(--spacing-md);
    }

    .why-harith-section {
      flex-direction: column;
      background: #F5EDE5;
      min-height: auto;
    }

    .care-image-wrapper,
    .aftercare-cleaning-image-wrapper {
      margin-right: 0;
      margin-bottom: -10%;
      max-width: 400px;
    }

    .care-content,
    .aftercare-cleaning-content {
      padding: calc(var(--spacing-2xl) + var(--spacing-xl)) var(--spacing-lg) var(--spacing-xl) var(--spacing-lg);
      min-width: auto;
      width: 100%;
    }

    .repairing-image-wrapper,
    .why-choose-image-wrapper,
    .craft-personalize-image-wrapper {
      margin-left: 0;
      margin-bottom: -10%;
      max-width: 400px;
    }

    .why-harith-image-wrapper {
      margin-left: 0;
      margin-bottom: 0;
      padding: var(--spacing-xl);
      flex: 1;
    }

    .why-harith-image-wrapper img {
      max-width: 400px;
    }

    .repairing-content,
    .why-choose-content,
    .craft-personalize-content {
      padding: calc(var(--spacing-2xl) + var(--spacing-xl)) var(--spacing-lg) var(--spacing-xl) var(--spacing-lg);
      min-width: auto;
      width: 100%;
    }

    .why-harith-content {
      padding: var(--spacing-xl) var(--spacing-lg);
      flex: 1;
    }

    .why-harith-image-wrapper {
      margin-left: 0;
      margin-bottom: -10%;
      max-width: 500px;
    }

    .aftercare-image-wrapper {
      margin-left: 0;
      margin-bottom: -10%;
      max-width: 400px;
    }

    .aftercare-content {
      padding: calc(var(--spacing-2xl) + var(--spacing-xl)) var(--spacing-lg) var(--spacing-xl) var(--spacing-lg);
      min-width: auto;
      width: 100%;
    }

    .stores-grid {
      grid-template-columns: 1fr;
    }

    .hero-section {
      min-height: 40vh;
    }

    /* Gold Price Table Mobile Styles - 768px */
    .gold-price-table-wrapper {
      padding: var(--spacing-md);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .gold-price-table-title {
      font-size: clamp(2rem, 6vw, 3.5rem);
      margin-bottom: var(--spacing-sm);
    }

    .gold-saving-price-label {
      font-size: clamp(1rem, 3vw, 1.5rem);
      margin-bottom: var(--spacing-md);
    }

    .latest-gold-price-table .gold-price-table th,
    .latest-gold-price-table .gold-price-table td,
    .we-buy-gold-table .gold-price-table th,
    .we-buy-gold-table .gold-price-table td {
      padding: var(--spacing-sm) var(--spacing-md);
      font-size: clamp(0.75rem, 2.5vw, 1rem);
      white-space: nowrap;
    }

    .gold-saving-tables-section {
      gap: var(--spacing-md);
      padding: 0 var(--spacing-sm);
    }

    .desktop1-thq-frame16-elm1 {
      padding: 0 var(--spacing-sm);
    }

    .desktop1-thq-gold-saving-content {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
      margin-bottom: var(--spacing-lg);
    }

    .membership-card-image {
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
    }
  }

  @media (max-width: 480px) {
    .top-banner {
      padding: var(--spacing-sm) var(--spacing-xs);
    }

    .nav-wrapper {
      padding: var(--spacing-sm);
    }

    .nav-menu {
      gap: var(--spacing-sm);
    }

    .dropdown-menu {
      min-width: 150px;
      font-size: 0.875rem;
    }

    .dropdown-link {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
    }

    .social-icons {
      gap: var(--spacing-xs);
    }

    .section-padding {
      padding: var(--spacing-md) 0.75rem;
    }

    .newsletter-form {
      flex-direction: column;
    }

    .products-grid {
      grid-template-columns: 1fr;
    }

    .filter-input-group {
      flex-direction: column;
      align-items: stretch;
    }

    .collections-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .collections-section {
      padding: 40px 20px;
    }

    .collections-title {
      margin-bottom: 40px;
      font-size: 2rem;
    }

    .collection-image-frame {
      padding: 10px;
    }

    .collection-category {
      font-size: 1rem;
    }

    .desktop1-thq-frame43-elm {
      grid-template-columns: 1fr;
    }

    .gold-saving-tables-section {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
      padding: 0 var(--spacing-xs);
    }

    .desktop1-thq-text-elm28 {
      font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Gold Price Table Mobile Styles - 480px */
    .gold-price-table-wrapper {
      padding: var(--spacing-sm);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin: 0 var(--spacing-xs);
    }

    .gold-price-table-title {
      font-size: clamp(1.75rem, 7vw, 2.5rem);
      margin-bottom: var(--spacing-xs);
      padding: 0 var(--spacing-xs);
    }

    .gold-saving-price-label {
      font-size: clamp(0.875rem, 3.5vw, 1.25rem);
      margin-bottom: var(--spacing-sm);
      padding: 0 var(--spacing-xs);
    }

    .latest-gold-price-table,
    .we-buy-gold-table {
      min-width: 100%;
      width: 100%;
    }

    .latest-gold-price-table .gold-price-table,
    .we-buy-gold-table .gold-price-table {
      min-width: 280px;
      width: 100%;
    }

    .latest-gold-price-table .gold-price-table th,
    .latest-gold-price-table .gold-price-table td,
    .we-buy-gold-table .gold-price-table th,
    .we-buy-gold-table .gold-price-table td {
      padding: var(--spacing-xs) var(--spacing-sm);
      font-size: clamp(0.7rem, 3vw, 0.9rem);
      white-space: nowrap;
    }

    .gold-saving-container {
      padding: var(--spacing-md) var(--spacing-sm);
    }

    .desktop1-thq-frame16-elm1 {
      padding: 0 var(--spacing-xs);
    }

    /* Corporate Gift Section - 480px */
    .corporate-gift-section {
      margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
      padding: var(--spacing-md) var(--spacing-sm);
      padding-top: var(--spacing-lg);
    }

    .corporate-gift-content-wrapper {
      padding: var(--spacing-lg) var(--spacing-md);
      padding-top: calc(var(--spacing-lg) + var(--spacing-sm));
    }

    .corporate-gift-item .corporate-gift-title {
      margin-top: var(--spacing-sm);
      margin-bottom: var(--spacing-xs);
      font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .corporate-gift-item .corporate-gift-description {
      font-size: clamp(1rem, 3.5vw, 1.5rem);
      margin-bottom: var(--spacing-sm);
    }

    .aftercare-cleaning-section {
      margin-bottom: 0;
      padding-bottom: 0;
      padding-top: 0;
    }

    .aftercare-cleaning-content {
      padding-top: var(--spacing-sm);
      padding-bottom: var(--spacing-sm);
    }

    .desktop1-thq-gold-saving-content {
      grid-template-columns: 1fr;
      gap: var(--spacing-sm);
      margin-bottom: var(--spacing-md);
    }

    .desktop1-thq-text-content {
      padding: var(--spacing-sm);
    }

    .membership-card-image {
      margin-left: auto;
      margin-right: auto;
      max-width: 90%;
    }
  }

  /* ========================================
     GOLD SAVING PAGE STYLES
     ======================================== */

  /* Gold Saving Hero Section */
  .gold-saving-hero-section {
    position: relative;
    width: 100%;
    height: 537px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #6b4f4f;
    border: 1px solid rgba(0, 0, 0, 1);
  }

  .gold-saving-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .gold-saving-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
  }

  .gold-saving-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .gold-saving-hero-title {
    color: var(--primary-color);
    font-size: clamp(4rem, 10vw, 8rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: -1px 6px 6.5px rgba(0, 0, 0, 0.3);
    margin: 0;
  }

  /* Gold Saving Info Section */
  .gold-saving-info-section {
    background-color: #ffffff;
  }

  /* Full Width Ring Image */
  .gold-saving-ring-image-fullwidth {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--spacing-2xl);
  }

  .ring-image-fullwidth {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .gold-saving-info-section .container {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .gold-saving-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1352px;
    margin: 0 auto;
  }

  .gold-saving-intro-image {
    width: 100%;
    max-width: 555px;
    height: 715px;
    overflow: hidden;
    background-color: #d9d9d9;
    border-radius: var(--radius-md);
  }

  .intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gold-saving-intro-content {
    max-width: 801px;
    padding: var(--spacing-xl);
    background-color: #fbeae1;
    text-align: center;
  }

  .section-title {
    color: #5c1e1f;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
  }

  .section-description {
    color: #5c1e1f;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
  }

  /* Gold Price Section */
  .gold-price-section {
    padding: var(--spacing-2xl) 0;
    background-color: #ebd1c4;
  }

  .gold-terms-box {
    background-color: var(--text-light);
    border-radius: 30px;
    padding: var(--spacing-lg) var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }

  .gold-terms-text {
    color: #5c1e1f;
    font-size: clamp(1.25rem, 2vw, 2.25rem);
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
  }

  .gold-price-display {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }

  .gold-price-main-title {
    color: #5c1e1f;
    font-size: clamp(4rem, 8vw, 8rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    line-height: 0.82;
    margin-bottom: var(--spacing-md);
  }

  .gold-price-subtitle {
    color: #5c1e1f;
    font-size: clamp(2rem, 4vw, 4rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    margin-bottom: var(--spacing-2xl);
  }

  .gold-price-tables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: url('Rectangle.png') no-repeat center;
    background-size: cover;
  }

  .gold-price-table-container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-sm);
    border: 3px solid var(--text-light);
    background-color: #cb9701;
    height: 120px;
  }

  .price-box-999,
  .price-box-916 {
    background-color: #cb9701;
  }

  .price-purity {
    color: var(--text-light);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    text-align: center;
  }

  .price-rate {
    color: var(--text-light);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: center;
  }

  /* Gold Calculator Section */
  .gold-calculator-section {
    max-width: 867px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background-color: var(--text-light);
    text-align: center;
  }

  .calculator-title {
    color: var(--primary-color);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-family: var(--font-secondary);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
  }

  .selected-purity-display {
    background-color: #FFD700;
    color: var(--text-dark);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
    max-width: 571px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  }

  .selected-label {
    font-family: var(--font-primary);
    opacity: 0.8;
  }

  .selected-value {
    font-family: var(--font-secondary);
    font-weight: 700;
  }

  .purity-selector {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 571px;
    margin-left: auto;
    margin-right: auto;
  }

  .purity-btn {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: clamp(2rem, 3vw, 3rem);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--text-light);
    background-color: var(--primary-color);
    border: 3px solid var(--text-light);
    cursor: pointer !important;
    transition: all var(--transition-normal);
    height: 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    opacity: 0.7;
    user-select: none;
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .purity-btn * {
    pointer-events: none !important;
  }

  .purity-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-dark);
    opacity: 0.9;
  }

  .purity-btn:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
  }

  .purity-btn:active {
    transform: translateY(0);
  }

  .purity-btn.active {
    background-color: var(--primary-dark);
    border: 4px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), inset 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transform: scale(1.02);
  }

  .purity-value {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
  }

  .purity-price {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    opacity: 0.9;
  }

  .purity-checkmark {
    margin-top: 0.5rem;
    background-color: #FFD700;
    color: var(--text-dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .calculator-label {
    display: block;
    color: var(--primary-color);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-family: var(--font-secondary);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
  }

  .calculator-input-box {
    padding: var(--spacing-lg) var(--spacing-xl);
    border: 3px solid var(--primary-color);
    margin-bottom: var(--spacing-xl);
  }

  .calculator-input {
    width: 100%;
    font-size: clamp(3rem, 6vw, 6rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
  }

  .calculator-input::-webkit-inner-spin-button,
  .calculator-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .calculator-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-sm);
  }

  .result-label {
    color: var(--primary-color);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-family: var(--font-secondary);
    font-weight: 400;
  }

  .result-value {
    color: var(--primary-color);
    font-size: clamp(3rem, 6vw, 6rem);
    font-family: var(--font-secondary);
    font-weight: 500;
  }

  .calculator-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 551px;
    margin: 0 auto;
  }

  .calculator-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: clamp(2rem, 3vw, 3rem);
    font-family: var(--font-secondary);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-buy {
    color: var(--primary-color);
    background-color: transparent;
  }

  .btn-buy:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
  }

  .btn-reset {
    color: var(--primary-color);
    background-color: transparent;
  }

  .btn-reset:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
  }

  /* Contact Us Section */
  .contact-us-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--text-light);
    box-shadow: 0 -12px 24px rgba(0, 0, 0, 0.07);
  }

  .contact-section-title {
    color: #010101;
    font-size: clamp(3rem, 6vw, 6rem);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-style: italic;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }

  .contact-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
  }

  .contact-service-card {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .contact-service-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A572;
  }

  .contact-service-icon svg {
    width: 100%;
    height: 100%;
    color: inherit;
  }

  .contact-service-title {
    color: var(--text-dark);
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-family: 'The Seasons', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
  }

  .contact-service-description {
    color: var(--text-dark);
    font-size: clamp(1.125rem, 1.5vw, 1.5rem);
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
  }

  .contact-service-link {
    color: var(--text-dark);
    font-size: clamp(1.125rem, 1.5vw, 1.5rem);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .contact-service-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
  }

  .contact-service-link i {
    font-size: 1.25rem;
  }

  /* Responsive Styles for Contact Us Section */
  @media (max-width: 1200px) {
    .contact-services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .contact-services-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-service-card {
      padding: var(--spacing-lg);
    }

    .contact-service-icon {
      width: 100px;
      height: 100px;
    }
  }

  /* Responsive Styles for Gold Saving Page */
  @media (max-width: 1024px) {
    .gold-saving-ring-image-fullwidth {
      height: 400px;
    }

    .gold-saving-intro {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }

    .gold-saving-intro-image {
      max-width: 100%;
      height: 500px;
      margin: 0 auto;
    }

    .gold-price-tables {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
  }

  @media (max-width: 768px) {
    .gold-saving-hero-section {
      height: 400px;
    }

    .gold-saving-hero-title {
      font-size: clamp(3rem, 8vw, 5rem);
    }

    .gold-saving-ring-image-fullwidth {
      height: 300px;
      margin-bottom: var(--spacing-xl);
    }

    .gold-saving-intro-image {
      height: 400px;
    }

    .price-box {
      height: 150px;
      padding: var(--spacing-md);
    }

    .contact-services-grid {
      grid-template-columns: 1fr;
    }

    .calculator-btn,
    .purity-btn {
      height: auto;
      min-height: 80px;
      padding: var(--spacing-md);
    }
  }

  @media (max-width: 480px) {
    .gold-saving-hero-section {
      height: 300px;
    }

    .gold-saving-ring-image-fullwidth {
      height: 250px;
      margin-bottom: var(--spacing-lg);
    }

    .gold-saving-intro-content {
      padding: var(--spacing-md);
    }

    .gold-calculator-section {
      padding: var(--spacing-lg);
    }

    .gold-terms-box {
      padding: var(--spacing-md);
    }

    .contact-service-icon {
      width: 80px;
      height: 80px;
    }
  }

  /* ========== Print Styles ========== */
  @media print {
    .nav-wrapper,
    .top-banner,
    .slider-arrow,
    .slider-nav,
    footer,
    .filter-sidebar,
    .filter-toggle,
    .popup-overlay {
      display: none !important;
    }

    body {
      background: white;
    }
  }

  /* ========================================
     OUR STORIES PAGE STYLES
     ======================================== */

  .our-stories-page {
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    position: relative;
  }

  /* Hero Section */
  .our-stories-page .hero-section {
    position: relative;
    width: 100%;
    margin: 0 0 100px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .our-stories-page .hero-title {
    height: auto;
    width: 100%;
    align-self: center;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #5c1e1f;
    font-size: 85px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    margin: 0;
  }

  .our-stories-page .hero-image {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
  }

  /* Hero Video Section Styles */
  .our-stories-page .hero-video-wrapper {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0 10%;
  }

  .our-stories-page .hero-video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .our-stories-page .hero-video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .our-stories-page .hero-video-thumbnail:hover {
    transform: scale(1.02);
  }

  .our-stories-page .hero-video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* HARITH Logo - Top Left */
  .our-stories-page .hero-video-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    width: 70px;
    height: 70px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .our-stories-page .hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
  }

  /* Video Title Overlay */
  .our-stories-page .hero-video-title-overlay {
    position: absolute;
    bottom: 140px;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 0 40px;
    text-align: left;
  }

  .our-stories-page .hero-video-title {
    font-family: 'Roboto', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .our-stories-page .hero-video-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
  }

  /* YouTube Play Button - Center */
  .our-stories-page .hero-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
  }

  .our-stories-page .hero-video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }

  .our-stories-page .hero-video-play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }

  /* Share Button - Bottom Left */
  .our-stories-page .hero-video-share-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 8;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(60, 60, 60, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
  }

  .our-stories-page .hero-video-share-button:hover {
    background: rgba(60, 60, 60, 1);
    transform: scale(1.1);
  }

  .our-stories-page .hero-video-share-button svg {
    width: 20px;
    height: 20px;
  }

  /* Watch on YouTube Button - Bottom Right */
  .our-stories-page .hero-video-watch-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .our-stories-page .hero-video-watch-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .our-stories-page .watch-button-text {
    font-size: 14px;
    font-weight: 500;
    color: #000;
  }

  .our-stories-page .youtube-icon {
    width: 20px;
    height: 20px;
    color: #FF0000;
    flex-shrink: 0;
  }

  /* Why Harith Section */
  .our-stories-page .why-harith-section {
    position: relative;
    width: 100%;
    margin: 10px 0 100px 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    background: linear-gradient(to right, #F5EDE5 0%, #F5EDE5 55%, #ffffff 55%, #ffffff 100%);
    min-height: 600px;
  }

  .our-stories-page .why-harith-section::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ffffff;
    z-index: 10;
  }

  .our-stories-page .section-title {
    position: relative;
    width: 100%;
    max-width: 617px;
    margin: 0 auto 50px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #5c1e1f;
    font-size: 85px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }

  .our-stories-page .why-harith-content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #F5EDE5;
    padding: var(--spacing-2xl) 5% var(--spacing-2xl) 8%;
    color: #5c1e1f;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
    min-height: 100%;
    align-self: stretch;
  }

  .our-stories-page .why-harith-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 5%;
    position: relative;
    background: #ffffff;
    align-self: stretch;
  }

  .our-stories-page .why-harith-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 787 / 760;
    background-color: #ffffff;
    border-radius: 378px;
    overflow: hidden;
  }

  .our-stories-page .why-harith-image {
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    max-width: 650px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .our-stories-page .why-harith-features {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: var(--spacing-lg);
  }

  .our-stories-page .feature-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .our-stories-page .feature-icon {
    flex-shrink: 0;
    display: block;
    min-width: 84px;
    min-height: 87px;
  }

  .our-stories-page .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .our-stories-page .feature-icon-collection {
    width: 86.59px;
    height: 87.84px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10C30 10 15 25 15 45c0 15 10 30 25 40l10 8 10-8c15-10 25-25 25-40 0-20-15-35-35-35zm0 30c-8 0-15-7-15-15s7-15 15-15 15 7 15 15-7 15-15 15z' fill='%23681618' stroke='%23681618' stroke-width='2'/%3E%3Cpath d='M50 20c-12 0-22 10-22 22 0 8 5 15 12 19l10 6 10-6c7-4 12-11 12-19 0-12-10-22-22-22z' fill='none' stroke='%23681618' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .our-stories-page .feature-icon-craft {
    width: 123.26px;
    height: 98.21px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 100'%3E%3Cpath d='M60 10L75 40 110 45 85 70 90 105 60 90 30 105 35 70 10 45 45 40z' fill='none' stroke='%23681618' stroke-width='3'/%3E%3Cpath d='M60 10L70 35 95 38 75 55 80 80 60 70 40 80 45 55 25 38 50 35z' fill='%23681618'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .our-stories-page .feature-icon-investment {
    width: 93.6px;
    height: 102.65px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 110'%3E%3Cpath d='M50 10L60 20 75 15 70 30 85 35 70 45 50 40 30 45 15 35 30 30 25 15 40 20z' fill='none' stroke='%23681618' stroke-width='2.5'/%3E%3Cpath d='M20 50L30 60 45 55 40 70 55 75 40 85 20 80 0 85 15 75 10 60 25 55z' fill='%23681618'/%3E%3Cpath d='M50 50L60 60 75 55 70 70 85 75 70 85 50 80 30 85 15 75 30 70 25 55 40 60z' fill='%23681618'/%3E%3Cpath d='M80 50L90 60 100 55 95 70 100 75 85 85 65 80 45 85 30 75 45 70 40 55 55 60z' fill='%23681618'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .our-stories-page .feature-icon-artisan {
    width: 84.38px;
    height: 111.11px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 85 110'%3E%3Cpath d='M42.5 10c-5 0-10 3-12 8L15 40c-2 5-2 10 0 15l15 30c2 5 7 8 12 8h10c5 0 10-3 12-8l15-30c2-5 2-10 0-15L54.5 18c-2-5-7-8-12-8z' fill='none' stroke='%23681618' stroke-width='2.5'/%3E%3Ccircle cx='42.5' cy='50' r='8' fill='%23681618'/%3E%3Cpath d='M30 70L35 85 50 90 35 95 30 110' fill='none' stroke='%23681618' stroke-width='2'/%3E%3Cpath d='M55 70L50 85 35 90 50 95 55 110' fill='none' stroke='%23681618' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .our-stories-page .feature-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #681618;
    font-size: 48px;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 8px 0;
  }

  .our-stories-page .feature-description {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    color: #303f3c;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
    line-height: normal;
    margin: 0;
  }

  /* Why Choose Feature Items */
  .our-stories-page .why-choose-feature-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .our-stories-page .why-choose-feature-icon {
    flex-shrink: 0;
    display: block;
    min-width: 84px;
    min-height: 87px;
  }

  .our-stories-page .why-choose-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .our-stories-page .why-choose-feature-icon-collection {
    width: 86.59px;
    height: 87.84px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10C30 10 15 25 15 45c0 15 10 30 25 40l10 8 10-8c15-10 25-25 25-40 0-20-15-35-35-35zm0 30c-8 0-15-7-15-15s7-15 15-15 15 7 15 15-7 15-15 15z' fill='%23681618' stroke='%23681618' stroke-width='2'/%3E%3Cpath d='M50 20c-12 0-22 10-22 22 0 8 5 15 12 19l10 6 10-6c7-4 12-11 12-19 0-12-10-22-22-22z' fill='none' stroke='%23681618' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .our-stories-page .why-choose-feature-icon-craft {
    width: 123.26px;
    height: 98.21px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 100'%3E%3Cpath d='M60 10L75 40 110 45 85 70 90 105 60 90 30 105 35 70 10 45 45 40z' fill='none' stroke='%23681618' stroke-width='3'/%3E%3Cpath d='M60 10L70 35 95 38 75 55 80 80 60 70 40 80 45 55 25 38 50 35z' fill='%23681618'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .our-stories-page .why-choose-feature-icon-investment {
    width: 93.6px;
    height: 102.65px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 110'%3E%3Cpath d='M50 10L60 20 75 15 70 30 85 35 70 45 50 40 30 45 15 35 30 30 25 15 40 20z' fill='none' stroke='%23681618' stroke-width='2.5'/%3E%3Cpath d='M20 50L30 60 45 55 40 70 55 75 40 85 20 80 0 85 15 75 10 60 25 55z' fill='%23681618'/%3E%3Cpath d='M50 50L60 60 75 55 70 70 85 75 70 85 50 80 30 85 15 75 30 70 25 55 40 60z' fill='%23681618'/%3E%3Cpath d='M80 50L90 60 100 55 95 70 100 75 85 85 65 80 45 85 30 75 45 70 40 55 55 60z' fill='%23681618'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .our-stories-page .why-choose-feature-icon-artisan {
    width: 84.38px;
    height: 111.11px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 85 110'%3E%3Cpath d='M42.5 10c-5 0-10 3-12 8L15 40c-2 5-2 10 0 15l15 30c2 5 7 8 12 8h10c5 0 10-3 12-8l15-30c2-5 2-10 0-15L54.5 18c-2-5-7-8-12-8z' fill='none' stroke='%23681618' stroke-width='2.5'/%3E%3Ccircle cx='42.5' cy='50' r='8' fill='%23681618'/%3E%3Cpath d='M30 70L35 85 50 90 35 95 30 110' fill='none' stroke='%23681618' stroke-width='2'/%3E%3Cpath d='M55 70L50 85 35 90 50 95 55 110' fill='none' stroke='%23681618' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .our-stories-page .why-choose-feature-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #681618;
    font-size: 48px;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 8px 0;
  }

  .our-stories-page .why-choose-feature-description {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    color: #303f3c;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
    line-height: normal;
    margin: 0;
  }

  /* Legacy Section */
  .our-stories-page .legacy-section {
    position: relative;
    width: 100%;
    background-color: #f5ebe0;
    padding: 80px 0;
    margin: 0;
  }

  .our-stories-page .legacy-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .our-stories-page .legacy-main-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #5c1e1f;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 80px 0;
  }

  /* Legacy Rows */
  .our-stories-page .legacy-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
  }

  .our-stories-page .legacy-row:first-of-type {
    padding-left: 60px;
  }

  .our-stories-page .legacy-row-reverse {
    padding-left: 0;
    padding-right: 60px;
  }

  .our-stories-page .legacy-row-reverse {
    flex-direction: row-reverse;
  }

  .our-stories-page .legacy-image-wrapper {
    flex: 1;
    max-width: 50%;
    min-width: 0;
  }

  .our-stories-page .legacy-image-primary,
  .our-stories-page .legacy-image-secondary {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  .our-stories-page .legacy-story-primary,
  .our-stories-page .legacy-story-secondary {
    flex: 1;
    max-width: 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .our-stories-page .legacy-story-primary p {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #3d2817;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.8;
    margin: 0 0 20px 0;
  }

  .our-stories-page .legacy-story-secondary p {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #3d2817;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.8;
    margin: 0 0 20px 0;
  }

  .our-stories-page .legacy-story-primary p:last-child,
  .our-stories-page .legacy-story-secondary p:last-child {
    margin-bottom: 0;
  }

  /* Founder Message */

  .our-stories-page .founder-message {
    position: relative;
    width: 100%;
    background-color: rgba(92, 30, 31, 0.05);
    padding-left: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .our-stories-page .founder-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
  }

  .our-stories-page .founder-text {
    flex: 1;
    max-width: 60%;
  }

  .our-stories-page .founder-text p {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #3d2817;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1.8;
    margin: 0 0 20px 0;
    text-align: left;
  }

  .our-stories-page .founder-text p:last-child {
    margin-bottom: 0;
  }

  .our-stories-page .founder-greeting {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 36px;
  }

  .our-stories-page .founder-closing {
    margin-top: 30px;
    font-weight: 500;
    font-size: 28px;
  }

  .our-stories-page .founder-image-wrapper {
    flex: 1;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .our-stories-page .founder-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .our-stories-page .founder-name {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #5c1e1f;
    font-size: 24px;
    letter-spacing: 0;
    line-height: normal;
    text-align: center;
    margin: 0 0 5px 0;
  }

  .our-stories-page .founder-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    color: #5c1e1f;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    margin: 0;
  }

  /* Team Section */
  /* Team Section within Legacy */
  .our-stories-page .legacy-container .team-section {
    position: relative;
    width: 100%;
    margin: 80px 0;
    padding: 0;
  }

  .our-stories-page .legacy-container .team-divider-line {
    width: 100vw;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 0 60px 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .our-stories-page .legacy-container .team-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #5c1e1f;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    margin: 0 0 40px 0;
  }

  .our-stories-page .legacy-container .team-image-wrapper {
    width: 80%;
    margin: 0 10%;
  }

  .our-stories-page .legacy-container .team-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  /* Success Section within Legacy */
  .our-stories-page .legacy-container .success-section {
    position: relative;
    width: 100%;
    margin: 80px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .our-stories-page .legacy-container .success-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #5c1e1f;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    margin: 0;
  }

  .our-stories-page .legacy-container .success-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .our-stories-page .legacy-container .stat-item {
    text-align: center;
  }

  .our-stories-page .legacy-container .stat-value {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #5c1e1f;
    font-size: 72px;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
  }

  .our-stories-page .stat-item:nth-child(2),
  .our-stories-page .stat-item:nth-child(4) {
    text-align: center;
  }

  .our-stories-page .stat-value {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #5c1e1f;
    font-size: 120px;
    letter-spacing: 0;
    line-height: 1.3;
    white-space: normal;
    margin: 0;
  }

  /* Store Locations Section */
  .our-stories-page .store-locations {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 17px;
    padding: 53px 63px;
    background-color: #fbead1;
    box-shadow: 0px -12px 24.4px rgba(0, 0, 0, 0.07);
    margin-top: 100px;
  }

  .our-stories-page .stores-section {
    background-color: #fbead1;
    padding: 53px 63px;
    box-shadow: 0px -12px 24.4px rgba(0, 0, 0, 0.07);
    margin-top: 100px;
  }

  .our-stories-page .locations-title {
    position: relative;
    width: 100%;
    max-width: 593px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #010101;
    font-size: 96px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    margin: 0 0 50px 0;
  }

  .our-stories-page .locations-grid {
    position: relative;
    width: 100%;
    max-width: 1268px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .our-stories-page .location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 41px;
    position: relative;
    flex: 1 1 300px;
    max-width: 407px;
  }

  .our-stories-page .location-card:nth-child(1) .location-details {
    gap: 3px;
  }

  .our-stories-page .location-card:nth-child(3) .location-details {
    gap: 2px;
  }

  .our-stories-page .location-icon {
    position: relative;
    width: 224.11px;
    height: 224.12px;
    display: block;
  }

  .our-stories-page .location-icon-hq {
    background-image: url(./img/vector-9.svg);
    background-size: 100% 100%;
  }

  .our-stories-page .location-icon-puncak {
    background-image: url(./img/vector-6.svg);
    background-size: 100% 100%;
  }

  .our-stories-page .location-icon-tabung {
    background-image: url(./img/vector-2.svg);
    background-size: 100% 100%;
  }

  .our-stories-page .location-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
  }

  .our-stories-page .location-name {
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    color: #000000;
    font-size: 36px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    margin: 0 0 10px 0;
  }

  .our-stories-page .location-address {
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #000000;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    font-style: normal;
    margin: 0 0 10px 0;
  }

  .our-stories-page .location-phone {
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #000000;
    font-size: 36px;
  }

  .our-stories-page .location-phone a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition-fast);
  }

  .our-stories-page .location-phone a:hover,
  .our-stories-page .location-phone a:focus {
    opacity: 0.7;
    text-decoration: underline;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    margin: 0;
  }

  /* Responsive Styles for Our Stories Page */
  @media (max-width: 1200px) {
    .our-stories-page .hero-title {
      font-size: 60px;
    }

    .our-stories-page .hero-video-title {
      font-size: 48px;
    }

    .our-stories-page .hero-video-subtitle {
      font-size: 20px;
    }

    .our-stories-page .hero-video-title-overlay {
      bottom: 110px;
      padding: 0 30px;
    }

    .our-stories-page .hero-video-wrapper {
      padding: 0 8%;
    }

    .our-stories-page .section-title,
    .our-stories-page .success-title,
    .our-stories-page .team-title {
      font-size: 60px;
    }

    .our-stories-page .legacy-main-title {
      font-size: 48px;
      line-height: 1.2;
    }

    .our-stories-page .locations-title {
      font-size: 70px;
    }

    .our-stories-page .legacy-section {
      padding: 60px 0;
    }

    .our-stories-page .legacy-row:first-of-type {
      padding-left: 40px;
    }

    .our-stories-page .legacy-row-reverse {
      padding-left: 0;
      padding-right: 40px;
    }

    .our-stories-page .legacy-row {
      gap: 40px;
    }

    .our-stories-page .founder-content {
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .our-stories-page {
      padding-top: 180px;
    }

    .our-stories-page .hero-title {
      font-size: 40px;
      white-space: normal;
    }

    .our-stories-page .hero-video-title {
      font-size: 36px;
    }

    .our-stories-page .hero-video-subtitle {
      font-size: 18px;
    }

    .our-stories-page .hero-video-title-overlay {
      bottom: 100px;
      padding: 0 20px;
    }

    .our-stories-page .hero-video-logo {
      width: 50px;
      height: 50px;
      top: 15px;
      left: 15px;
      padding: 6px;
    }

    .our-stories-page .hero-video-play-button svg {
      width: 56px;
      height: 40px;
    }

    .our-stories-page .hero-video-share-button {
      width: 36px;
      height: 36px;
      bottom: 15px;
      left: 15px;
    }

    .our-stories-page .hero-video-watch-button {
      padding: 8px 14px;
      bottom: 15px;
      right: 15px;
      font-size: 12px;
    }

    .our-stories-page .watch-button-text {
      font-size: 12px;
    }

    .our-stories-page .youtube-icon {
      width: 18px;
      height: 18px;
    }

    .our-stories-page .hero-video-wrapper {
      padding: 0 5%;
    }

    .our-stories-page .hero-section {
      gap: 30px;
    }

    .our-stories-page .section-title,
    .our-stories-page .success-title,
    .our-stories-page .team-title {
      font-size: 40px;
      white-space: normal;
    }

    .our-stories-page .legacy-main-title {
      font-size: 36px;
      line-height: 1.2;
      margin-bottom: 40px;
    }

    .our-stories-page .locations-title {
      font-size: 50px;
    }

    .our-stories-page .feature-title,
    .our-stories-page .why-choose-feature-title {
      font-size: 32px;
    }

    .our-stories-page .feature-description,
    .our-stories-page .why-choose-feature-description {
      font-size: 24px;
    }

    .our-stories-page .stat-value {
      font-size: 70px;
    }

    .our-stories-page .why-harith-section {
      flex-direction: column;
      background: #F5EDE5;
      min-height: auto;
    }

    .our-stories-page .why-harith-content {
      padding: var(--spacing-xl) var(--spacing-lg);
      flex: 1;
    }

    .our-stories-page .why-harith-image-wrapper {
      padding: var(--spacing-xl);
      flex: 1;
    }

    .our-stories-page .why-harith-image {
      max-width: 400px;
    }

    .our-stories-page .why-harith-features {
      padding: 0;
      gap: 30px;
    }

    .our-stories-page .legacy-section {
      padding: 40px 0;
    }

    .our-stories-page .legacy-row:first-of-type {
      padding-left: 20px;
    }

    .our-stories-page .legacy-row-reverse {
      padding-left: 0;
      padding-right: 20px;
    }

    .our-stories-page .legacy-row {
      flex-direction: column !important;
      gap: 30px;
      margin-bottom: 40px;
    }

    .our-stories-page .legacy-container .team-title,
    .our-stories-page .legacy-container .success-title {
      font-size: 36px;
    }

    .our-stories-page .legacy-container .success-stats {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .our-stories-page .legacy-container .stat-value {
      font-size: 48px;
    }

    .our-stories-page .legacy-image-wrapper,
    .our-stories-page .legacy-story-primary,
    .our-stories-page .legacy-story-secondary {
      max-width: 100%;
    }

    .our-stories-page .founder-content {
      flex-direction: column;
      gap: 30px;
    }

    .our-stories-page .founder-text,
    .our-stories-page .founder-image-wrapper {
      max-width: 100%;
    }

    .our-stories-page .founder-text p {
      font-size: 20px;
    }

    .our-stories-page .founder-greeting {
      font-size: 28px;
    }

    .our-stories-page .founder-closing {
      font-size: 24px;
    }

    .our-stories-page .legacy-story-primary p,
    .our-stories-page .legacy-story-secondary p {
      font-size: 18px;
    }

    .our-stories-page .founder-name {
      font-size: 20px;
    }

    .our-stories-page .founder-title {
      font-size: 16px;
    }

    .our-stories-page .location-name {
      font-size: 28px;
    }

    .our-stories-page .location-address {
      font-size: 28px;
    }

    .our-stories-page .location-phone {
      font-size: 24px;
    }
  }

  @media (max-width: 480px) {
    .our-stories-page .hero-video-wrapper {
      padding: 0 3%;
    }

    .our-stories-page .hero-section {
      gap: 25px;
    }

    .our-stories-page .hero-video-title {
      font-size: 28px;
    }

    .our-stories-page .hero-video-subtitle {
      font-size: 14px;
    }

    .our-stories-page .hero-video-logo {
      width: 40px;
      height: 40px;
      top: 12px;
      left: 12px;
      padding: 5px;
    }

    .our-stories-page .hero-video-play-button svg {
      width: 48px;
      height: 34px;
    }

    .our-stories-page .hero-video-title-overlay {
      bottom: 80px;
      padding: 0 15px;
    }

    .our-stories-page .hero-video-share-button {
      width: 32px;
      height: 32px;
      bottom: 12px;
      left: 12px;
    }

    .our-stories-page .hero-video-share-button svg {
      width: 16px;
      height: 16px;
    }

    .our-stories-page .hero-video-watch-button {
      padding: 6px 10px;
      bottom: 12px;
      right: 12px;
      font-size: 10px;
      gap: 6px;
    }

    .our-stories-page .watch-button-text {
      font-size: 10px;
    }

    .our-stories-page .youtube-icon {
      width: 14px;
      height: 14px;
    }
  }

  /* ==========================================
     CRAFT YOUR OWN PAGE STYLES
     ========================================== */

  /* Hero Section */
  .craft-hero {
    position: relative;
    width: 100%;
    height: 719px;
    overflow: hidden;
    background-color: #6b4f4f;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .craft-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .craft-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .craft-hero-title {
    color: var(--text-light);
    font-size: 120px;
    font-weight: 700;
    font-family: 'The Seasons', serif;
    line-height: 1.2;
    text-align: center;
  }

  /* Story Section (Image Full Width, Content Below) */
  .craft-story-section {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--text-light);
  }

  .craft-story-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .craft-story-content {
    width: 100%;
    padding: 68px 80px;
    background-color: #fbead1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
  }

  .craft-section-title {
    color: #303f3c;
    font-size: 64px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 819px;
  }

  .craft-section-text {
    color: #303f3c;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-align: center;
    line-height: 1.5;
    max-width: 763px;
  }

  /* Mastery Section (Content Full Width, Image Full Width Below) */
  .craft-mastery-section {
    display: flex;
    flex-direction: column;
    background-color: var(--text-light);
    box-shadow: 0px -12px 24.4px 0px rgba(0, 0, 0, 0.07);
    position: relative;
  }

  .craft-mastery-content {
    width: 100%;
    padding: 68px 80px;
    background-color: #fbead1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
  }

  .craft-mastery-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .mastery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Engraving Banner */
  .craft-engraving-banner {
    position: relative;
    width: 100%;
    height: 471px;
    overflow: hidden;
    background-color: #6b4f4f;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .engraving-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .engraving-banner-title {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    font-size: 120px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-align: center;
    text-shadow: 0px 10px 4px rgba(0, 0, 0, 0.25);
  }

  /* Unique Section (Content Full Width, Images Full Width Below) */
  .craft-unique-section {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--text-light);
  }

  .craft-unique-content {
    width: 100%;
    padding: 68px 80px;
    background-color: #fbead1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
  }

  .craft-unique-images {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
  }

  .craft-image-circle {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
  }

  .circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .craft-cta-button {
    border: 2px solid #303f3c;
    border-radius: 4px;
    padding: 19px 51px;
    background-color: transparent;
    color: #303f3c;
    font-size: 32px;
    font-weight: 300;
    font-family: var(--font-secondary);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-block;
    margin-top: var(--spacing-lg);
  }

  .craft-cta-button:hover {
    background-color: #303f3c;
    color: var(--text-light);
  }

  /* Responsive Styles for Craft Your Own Page */
  @media (max-width: 1200px) {
    .craft-hero-title,
    .engraving-banner-title {
      font-size: 80px;
    }

    .craft-section-title {
      font-size: 48px;
    }

    .craft-section-text {
      font-size: 28px;
    }

    .craft-story-image {
      height: 500px;
    }

    .craft-story-content {
      padding: 50px 60px;
    }

    .craft-mastery-content {
      padding: 50px 60px;
    }

    .craft-mastery-image {
      height: 500px;
    }

    .craft-unique-content {
      padding: 50px 60px;
    }

    .craft-image-circle {
      height: 400px;
    }
  }

  @media (max-width: 768px) {
    .craft-hero {
      height: 400px;
    }

    .craft-hero-title,
    .engraving-banner-title {
      font-size: 48px;
      padding: 0 20px;
    }

    .craft-section-title {
      font-size: 36px;
    }

    .craft-section-text {
      font-size: 20px;
    }

    .craft-story-image {
      height: 350px;
    }

    .craft-story-content,
    .craft-mastery-content,
    .craft-unique-content {
      padding: 40px 30px;
    }

    .craft-mastery-image {
      height: 350px;
    }

    .craft-unique-images {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .craft-image-circle {
      height: 300px;
    }

    .craft-cta-button {
      font-size: 24px;
      padding: 15px 40px;
    }

    .craft-engraving-banner {
      height: 300px;
    }
  }

  @media (max-width: 480px) {
    .craft-hero {
      height: 300px;
    }

    .craft-hero-title,
    .engraving-banner-title {
      font-size: 36px;
    }

    .craft-section-title {
      font-size: 28px;
    }

    .craft-section-text {
      font-size: 16px;
    }

    .craft-story-image,
    .craft-mastery-image {
      height: 250px;
    }

    .craft-story-content,
    .craft-mastery-content,
    .craft-unique-content {
      padding: 30px 20px;
    }

    .craft-image-circle {
      height: 250px;
    }

    .craft-cta-button {
      font-size: 18px;
      padding: 12px 30px;
    }
  }

  /* Product Link Styling for Shop Page */
  .product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 1;
  }

  .product-link:hover {
    text-decoration: none;
    color: inherit;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-card .product-actions {
    margin-top: auto;
  }

  /* ============================================ */
  /* SINGLE PRODUCT PAGE STYLES */
  /* ============================================ */

  .product-details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Red Hat Display', sans-serif;
  }

  .product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }

  /* Product Images Section */
  .product-images-section {
    position: sticky;
    top: 100px;
    height: fit-content;
  }

  .main-image-container {
    width: 100%;
    aspect-ratio: 1;
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .main-image-container:hover .main-product-image {
    transform: scale(1.05);
  }

  .thumbnail-images-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .thumbnail-image {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f8f8f8;
  }

  .thumbnail-image:hover {
    border-color: #C5A05E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 94, 0.2);
  }

  .thumbnail-image.active {
    border-color: #C5A05E;
    box-shadow: 0 4px 12px rgba(197, 160, 94, 0.3);
  }

  .thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Product Info Section */
  .product-info-section {
    padding-top: 10px;
  }

  .product-details-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
  }

  .product-rating i {
    color: #FFD700;
    font-size: 18px;
  }

  .rating-count {
    margin-left: 10px;
    color: #666;
    font-size: 14px;
  }

  .product-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }

  .product-current-price {
    font-size: 36px;
    font-weight: 700;
    color: #C5A05E;
  }

  .product-original-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
  }

  .product-discount-badge {
    background: #ff4444;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
  }

  /* Product Options */
  .product-options-section {
    margin-bottom: 30px;
  }

  .option-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
  }

  .product-variants {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .variant-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
  }

  .variant-option:hover {
    border-color: #C5A05E;
    background: #fafafa;
    transform: translateX(4px);
  }

  .variant-option.active {
    border-color: #C5A05E;
    background: #fff9f0;
    box-shadow: 0 2px 8px rgba(197, 160, 94, 0.15);
  }

  .variant-info {
    display: flex;
    gap: 20px;
  }

  .variant-size {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
  }

  .variant-weight {
    color: #666;
    font-size: 16px;
  }

  .variant-price {
    font-weight: 700;
    color: #C5A05E;
    font-size: 18px;
  }

  /* Variant Select Dropdown */
  .variant-select-wrapper {
    position: relative;
    width: 100%;
  }

  .variant-select {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
  }

  .variant-select:hover {
    border-color: #C5A05E;
    background: #fafafa;
  }

  .variant-select:focus {
    outline: none;
    border-color: #C5A05E;
    background: #fff9f0;
    box-shadow: 0 2px 8px rgba(197, 160, 94, 0.15);
  }

  .variant-select option {
    padding: 12px;
    font-size: 16px;
    color: #1a1a1a;
    background: white;
  }

  .select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
  }

  .variant-select-wrapper:hover .select-arrow {
    color: #C5A05E;
  }

  /* Quantity Selector */
  .quantity-section {
    margin-bottom: 30px;
  }

  .quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: white;
  }

  .quantity-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a1a1a;
  }

  .quantity-btn:hover {
    background: #f5f5f5;
    color: #C5A05E;
  }

  .quantity-input {
    width: 60px;
    height: 48px;
    border: none;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .quantity-input:focus {
    outline: none;
  }

  /* Product Actions */
  .product-actions-section {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
  }

  .btn-add-to-cart-large {
    flex: 1;
    padding: 18px 40px;
    background: #C5A05E;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .btn-add-to-cart-large:hover {
    background: #b08d4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 94, 0.3);
  }

  .btn-add-to-cart-large i {
    font-size: 22px;
  }

  .btn-wishlist-large {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #C5A05E;
    border-radius: 12px;
    color: #C5A05E;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

  .btn-wishlist-large:hover {
    background: #C5A05E;
    color: white;
    transform: scale(1.05);
  }

  /* Product Details Table */
  .product-details-table {
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
  }

  .details-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
  }

  .specifications-table {
    width: 100%;
    border-collapse: collapse;
  }

  .specifications-table tr {
    border-bottom: 1px solid #e5e5e5;
  }

  .specifications-table tr:last-child {
    border-bottom: none;
  }

  .spec-label {
    padding: 12px 0;
    font-weight: 600;
    color: #666;
    width: 40%;
  }

  .spec-value {
    padding: 12px 0;
    color: #1a1a1a;
    font-weight: 500;
  }

  /* Product Description */
  .product-description-section {
    padding-top: 20px;
  }

  .description-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
  }

  .description-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
  }

  /* Related Products Section */
  .related-products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    background: linear-gradient(to bottom, #fafafa, white);
  }

  .related-products-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .related-products-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
  }

  .related-products-subtitle {
    font-size: 18px;
    color: #666;
  }

  .related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .product-details-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .product-images-section {
      position: static;
    }

    .product-details-title {
      font-size: 36px;
    }

    .related-products-grid {
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
  }

  @media (max-width: 768px) {
    .product-details-container {
      padding: 40px 15px;
    }

    .product-details-title {
      font-size: 28px;
    }

    .product-current-price {
      font-size: 28px;
    }

    .product-original-price {
      font-size: 20px;
    }

    .thumbnail-images-container {
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .product-actions-section {
      flex-direction: column;
    }

    .btn-wishlist-large {
      width: 100%;
    }

    .related-products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .related-products-title {
      font-size: 32px;
    }
  }

  @media (max-width: 480px) {
    .product-details-title {
      font-size: 24px;
    }

    .variant-info {
      flex-direction: column;
      gap: 5px;
    }

    .related-products-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ========== Login Page Styles ========== */
  .login-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    position: relative;
    background: linear-gradient(135deg, #f5f3f0 0%, #faf8f5 50%, #f0ede8 100%);
    overflow: hidden;
  }

  .login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .login-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(212, 175, 55, 0.02) 100px,
        rgba(212, 175, 55, 0.02) 102px
      );
    animation: subtle-shift 20s linear infinite;
    pointer-events: none;
  }

  @keyframes subtle-shift {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(100px, 100px);
    }
  }

  .login-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .login-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.12),
      0 8px 25px rgba(104, 22, 24, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

  .login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #d4af37 50%, var(--primary-color) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .login-card:hover {
    transform: translateY(-2px);
    box-shadow:
      0 25px 70px rgba(0, 0, 0, 0.15),
      0 10px 30px rgba(104, 22, 24, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .login-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }

  .login-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
  }

  .login-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 400;
  }

  .login-form {
    margin-bottom: var(--spacing-lg);
  }

  .form-group {
    margin-bottom: var(--spacing-md);
  }

  .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
  }

  .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .input-icon {
    position: absolute;
    left: var(--spacing-sm);
    color: var(--text-gray);
    font-size: 1.1rem;
    z-index: 1;
  }

  .form-input {
    width: 100%;
    padding: 0.875rem var(--spacing-sm) 0.875rem 2.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--text-light);
    transition: all var(--transition-normal);
    outline: none;
  }

  .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(104, 22, 24, 0.1);
  }

  .form-input::placeholder {
    color: var(--text-muted);
  }

  .password-toggle {
    position: absolute;
    right: var(--spacing-sm);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
    z-index: 1;
  }

  .password-toggle:hover {
    color: var(--primary-color);
  }

  .password-toggle i {
    font-size: 1.1rem;
  }

  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-xs);
  }

  .checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }

  .checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: var(--spacing-xs);
    cursor: pointer;
    accent-color: var(--primary-color);
  }

  .checkbox-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
  }

  .forgot-password-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
  }

  .forgot-password-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
  }

  .login-button {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .login-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 22, 24, 0.3);
  }

  .login-button:active {
    transform: translateY(0);
  }

  .login-divider {
    position: relative;
    text-align: center;
    margin: var(--spacing-lg) 0;
  }

  .login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
  }

  .login-divider span {
    position: relative;
    background: var(--text-light);
    padding: 0 var(--spacing-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
  }

  .membership-info,
  .membership-notification {
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 2px solid #ffc107;
    border-left: 4px solid #ffc107;
    border-radius: var(--radius-md);
    box-shadow:
      0 4px 12px rgba(255, 193, 7, 0.15),
      0 2px 4px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease-in;
  }

  .membership-notification {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 248, 220, 0.95) 100%);
  }

  .notification-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .notification-icon {
    color: #ff9800;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    animation: pulse 2s ease-in-out infinite;
  }

  .notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .notification-text strong {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
  }

  .notification-fee {
    color: #d97706;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 4px;
    margin-top: 0.25rem;
  }

  .membership-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    display: flex;
    align-items: center;
  }

  .membership-info i {
    margin-right: 0.5rem;
    color: #d4af37;
    font-size: 1.1rem;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.8;
      transform: scale(1.05);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .login-footer {
    text-align: center;
  }

  .first-time-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    margin-bottom: var(--spacing-md);
  }

  .first-time-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
  }

  .first-time-link i {
    font-size: 1rem;
  }

  .register-prompt {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
  }

  .register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
  }

  .register-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
  }

  /* Responsive Design for Login */
  @media (max-width: 768px) {
    .login-section {
      padding: var(--spacing-xl) var(--spacing-sm);
      min-height: calc(100vh - 150px);
    }

    .login-card {
      padding: var(--spacing-lg);
    }

    .login-title {
      font-size: 1.75rem;
    }

    .form-options {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--spacing-sm);
    }

    .first-time-link {
      width: 100%;
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .login-card {
      padding: var(--spacing-md);
    }

    .login-title {
      font-size: 1.5rem;
    }

    .form-input {
      font-size: 16px; /* Prevents zoom on iOS */
    }
  }

  /* Product Details Component Styles */
  .product-details-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
  }

  .product-details-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
  }

  @media (max-width: 768px) {
      .product-details-wrapper {
          grid-template-columns: 1fr;
          gap: 1.5rem;
      }
  }

  /* Product Images */
  .product-images-section {
      position: sticky;
      top: 2rem;
  }

  .main-image-container {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 12px;
      overflow: hidden;
      background: #f8f9fa;
      margin-bottom: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .main-product-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
  }

  .thumbnail-images-container {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
  }

  .thumbnail-image {
      width: 80px;
      height: 80px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      background: #f8f9fa;
  }

  .thumbnail-image:hover {
      border-color: #007bff;
      transform: scale(1.05);
  }

  .thumbnail-image.active {
      border-color: #007bff;
      box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  }

  .thumbnail-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* Product Info Section */
  .product-info-section {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .product-header {
      border-bottom: 1px solid #e9ecef;
      padding-bottom: 0.75rem;
  }

  .product-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #212529;
      margin: 0 0 0.25rem 0;
      line-height: 1.3;
  }

  .product-category {
      color: #6c757d;
      margin: 0;
      font-size: 0.875rem;
  }

  /* Variant Selector */
  .product-variant-selector {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
  }

  .variant-label {
      font-weight: 600;
      color: #495057;
      font-size: 0.875rem;
      display: flex;
      align-items: center;
  }

  .variant-select {
      padding: 0.5rem 0.75rem;
      border: 2px solid #dee2e6;
      border-radius: 6px;
      font-size: 0.875rem;
      transition: border-color 0.3s ease;
  }

  .variant-select:focus {
      border-color: #007bff;
      box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
      outline: none;
  }

  /* Product Details Card */
  .product-details-card {
      background: #ffffff;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 1rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .sale-badge-container {
      margin-bottom: 0.75rem;
  }

  .sale-badge {
      display: inline-block;
      background: linear-gradient(135deg, #dc3545, #c82333);
      color: white;
      padding: 0.375rem 0.75rem;
      border-radius: 16px;
      font-weight: 600;
      font-size: 0.8rem;
      box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
  }

  .product-specs-compact {
      margin-bottom: 1rem;
  }

  .specs-table {
      width: 100%;
      border-collapse: collapse;
  }

  .specs-table tbody tr {
      border-bottom: 1px solid #e9ecef;
  }

  .specs-table tbody tr:last-child {
      border-bottom: none;
  }

  .spec-label-cell {
      padding: 0.375rem 0.5rem;
      font-size: 0.75rem;
      color: #6c757d;
      font-weight: 500;
      width: 35%;
      vertical-align: middle;
  }

  .spec-value-cell {
      padding: 0.375rem 0.5rem;
      font-size: 0.875rem;
      color: #212529;
      font-weight: 600;
      vertical-align: middle;
  }

  .dimension-item {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
  }

  .dimension-label {
      font-weight: 600;
      color: #6c757d;
  }

  .dimension-separator {
      margin: 0 0.5rem;
      color: #adb5bd;
  }

  /* Price Section */
  .product-price-section {
      padding-top: 0.75rem;
      border-top: 1px solid #e9ecef;
  }

  .price-old {
      font-size: 1rem;
      color: #6c757d;
      text-decoration: line-through;
      margin-bottom: 0.25rem;
  }

  .price-current {
      font-size: 1.5rem;
      font-weight: 700;
      color: #28a745;
      display: flex;
      align-items: baseline;
      gap: 0.375rem;
      flex-wrap: wrap;
  }

  .price-note {
      font-size: 0.8rem;
      font-weight: 400;
      color: #6c757d;
  }

  /* Action Buttons */
  .product-actions {
      margin-top: auto;
  }

  .action-buttons-grid {
      display: grid;
      grid-template-columns: 1fr min-content;
      gap: 0.75rem;
  }

  @media (max-width: 576px) {
      .action-buttons-grid {
          grid-template-columns: 1fr;
      }
  }

  .btn-add-cart {
      padding: 0.625rem 1.25rem;
      font-weight: 600;
      font-size: 0.875rem;
      border-radius: 6px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .btn-add-cart:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  }

  .btn-wishlist {
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
      border-radius: 6px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: fit-content;
      white-space: nowrap;
  }

  .btn-wishlist:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
  }

  /* Out of Stock */
  .out-of-stock-message {
      text-align: center;
      padding: 2rem 1rem;
      background: #f8f9fa;
      border-radius: 8px;
      border: 2px dashed #dee2e6;
  }

  .out-of-stock-icon {
      font-size: 2rem;
      color: #ffc107;
      margin-bottom: 0.75rem;
  }

  .out-of-stock-message h3 {
      color: #495057;
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
  }

  .out-of-stock-message p {
      color: #6c757d;
      margin: 0;
  }

  /* Product Not Found */
  .product-not-found {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      padding: 2rem;
  }

  .not-found-content {
      text-align: center;
  }

  .not-found-content i {
      font-size: 4rem;
      color: #6c757d;
      margin-bottom: 1rem;
  }

  .not-found-content h2 {
      color: #495057;
      margin-bottom: 0.5rem;
  }

  .not-found-content p {
      color: #6c757d;
  }


