/* ========================================
   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);
}

.expert-jewellery-care-section {
    padding-bottom: 0.01rem !important;
}

/* ========== 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: 0 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.9;
}

/* Custom Design Right Content Wrapper */
.custom-design-right-content {
    position: absolute;
    top: 28%;
    right: 10%;
    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 1.2em 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: 1rem;
}

.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;
    margin-bottom: 0.1rem;
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

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

.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;
    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: 48px;
    font-family: 'The Seasons', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: 48px;
    font-family: 'The Seasons', serif;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0;
}

.service-title {
    font-size: 48px;
    font-family: 'The Seasons', serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    font-size: 27px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    color: #333;
    margin: 0;
}

.services-section {
    width: 100%;
    margin: -10rem 0 var(--spacing-sm) 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 25%;
    min-height: 550px;
    max-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: -3%;
    z-index: 2;
    max-width: 500px;
}

.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;
    align-items: center;
    text-align: center;
    gap: 0;
    color: var(--text-light);
    justify-content: center;
    height: 100%;
    position: relative;
    background: #a37172;
    min-height: 500px;
    z-index: 1;
    width: 100%;
}

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

.service-item .service-title {
    color: var(--text-light);
    text-align: center;
    font-size: 48px;
    font-family: 'The Seasons', serif;
}

.service-item .service-description {
    color: var(--text-light);
    text-align: center;
    font-size: 27px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    margin: 0;
}

/* 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;
}

/* ========== Crafted Uniquely Videos Section ========== */
.craft-videos-section {
    width: 100%;
    margin: 0;
    padding: var(--spacing-2xl) 3%;
    background-color: #ffffff;
}

.craft-videos-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.craft-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
}

.craft-video-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 177.78%;
    /* 16:9 aspect ratio for vertical videos (9:16) */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.craft-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* ========== 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: #a37172;
    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;
    align-items: center;
    text-align: 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: 48px;
    font-family: 'The Seasons', serif;
}

.care-content .service-description {
    font-size: 27px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    margin: 0;
}

/* 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: 12%;
    padding-right: 12%;
}

.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: 48px;
    font-family: 'The Seasons', serif;
}

.repairing-content .service-description {
    font-size: 27px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    margin: 0;
}

/* ========== 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: 48px;
    font-family: 'The Seasons', serif;
}

.aftercare-content .service-description {
    font-size: 27px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    margin: 0;
}


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

.cleaning-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.banner-title {
    font-size: 48px;
    font-family: 'The Seasons', serif;
    font-weight: 700;
    /* margin-bottom: var(--spacing-sm); */
}

.banner-text {
    font-size: 27px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.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: 48px;
    font-family: 'The Seasons', serif;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: #010101;
}

.stores-subtitle {
    font-size: 27px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.2;
}

.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: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #5C2E2E;
    line-height: 1.3;
    /* letter-spacing: 0.05em; */
}

.store-name br {
    content: '';
    display: block;
    margin-bottom: 12px;
}

.store-address {
    font-size: 27px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.store-phone {
    font-size: 27px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

/* ========== 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) {
    body {
        overflow-x: hidden;
    }

    .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: 45px 30px;
    }

    .collections-title {
        margin-bottom: 15px !important;
    }

    .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);
    }

    .services-section {
        margin-top: 0;
        /* padding-top: var(--spacing-2xl); */
    }

    /* Keep horizontal layout for services-section on mobile - scaled down */
    .service-horizontal {
        flex-direction: row;
        width: calc(100% + 5%);
        margin-left: -2.5%;
        gap: 0;
    }

    .service-image-wrapper {
        position: relative;
        flex: 0 0 30%;
        min-height: 350px;
        max-height: none;
        height: auto;
        width: auto;
        max-width: 200px;
        min-width: 160px;
        top: 0;
        bottom: 0;
        left: 0;
        background: #ffffff;
        margin-left: -2%;
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

    .service-content-wrapper {
        padding: var(--spacing-xs) var(--spacing-sm);
        padding-left: 5%;
        padding-right: 3%;
        background: #a37172;
        flex: 1;
        min-width: 200px;
        min-height: 300px;
        gap: var(--spacing-xs);
    }

    .service-item {
        gap: var(--spacing-xs);
    }

    .service-item .service-title {
        font-size: 28px;
        font-family: 'The Seasons', serif;
        line-height: 1.15;
        margin-bottom: var(--spacing-xs);
    }

    .service-item .service-description {
        font-size: 16px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.2;
        margin: 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .expert-jewellery-care-section .section-title {
        font-size: 24px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-text {
        font-size: 16px;
    }

    .stores-title {
        font-size: 28px;
    }

    .stores-subtitle {
        font-size: 16px;
    }

    .store-name {
        font-size: 28px;
        /* letter-spacing: 0.05em; */
    }

    .store-address,
    .store-phone {
        font-size: 16px;
    }

    .cleaning-banner {
        margin-top: var(--spacing-xl);
        margin-bottom: var(--spacing-xl);
    }

    .cta-button,
    .cta-button-light,
    .cta-button-dark {
        padding: 0.5rem 1rem;
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        border-width: 1.5px;
    }

    /* Keep horizontal layout for craft-service-horizontal on mobile - scaled down */
    .craft-services-section {
        padding-top: 0;
        padding-bottom: 0;
        overflow-x: hidden;
    }

    .craft-service-horizontal {
        flex-direction: row;
        width: calc(100% + 5%);
        margin-left: -2.5%;
        gap: 0;
        overflow: visible;
    }

    .craft-service-image-wrapper {
        position: relative;
        flex: 0 0 30%;
        min-height: 350px;
        max-height: none;
        height: auto;
        width: auto;
        max-width: 200px;
        min-width: 160px;
        top: 0;
        bottom: 0;
        left: 0;
        background: transparent;
        margin-left: -2%;
        margin-top: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

    .craft-service-content-wrapper {
        padding: var(--spacing-xs) var(--spacing-sm);
        padding-left: 5%;
        padding-right: 3%;
        background: #F5EDE4;
        flex: 1;
        min-width: 200px;
        min-height: 300px;
        gap: var(--spacing-xs);
    }

    .craft-service-item {
        gap: var(--spacing-xs);
        max-width: 100%;
    }

    .craft-service-item .craft-service-title {
        font-size: 28px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.15;
        margin-bottom: var(--spacing-xs);
    }

    .craft-service-item .craft-service-description {
        font-size: 16px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.2;
        margin: 0;
    }

    /* Keep horizontal layout for craft-unique-section on mobile - scaled down */
    .craft-unique-section {
        padding-top: 0;
        padding-bottom: 0;
        overflow-x: hidden;
    }

    .craft-unique-horizontal {
        flex-direction: row;
        width: calc(100% + 5%);
        margin-left: -2.5%;
        gap: 0;
        overflow: visible;
    }

    .craft-unique-image-wrapper {
        position: relative;
        flex: 0 0 30%;
        min-height: 350px;
        max-height: none;
        height: auto;
        width: auto;
        max-width: 200px;
        min-width: 160px;
        top: 0;
        bottom: 0;
        left: 0;
        background: transparent;
        margin-left: -2%;
        margin-top: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

    .craft-unique-content-wrapper {
        padding: var(--spacing-xs) var(--spacing-sm);
        padding-left: 5%;
        padding-right: 3%;
        background: #F5EDE4;
        flex: 1;
        min-width: 200px;
        min-height: 300px;
        gap: var(--spacing-xs);
        margin-left: 0;
    }

    .craft-unique-item {
        gap: var(--spacing-xs);
        max-width: 100%;
    }

    .craft-unique-item .craft-unique-title {
        font-size: 28px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.15;
        margin-bottom: var(--spacing-xs);
    }

    .craft-unique-item .craft-unique-description {
        font-size: 16px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.2;
        margin: 0;
    }

    .craft-cta-button {
        padding: 0.5rem 1rem;
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        border-width: 1.5px;
    }

    /* Crafted Uniquely Videos Section - Mobile */
    .craft-videos-section {
        padding: var(--spacing-lg) 3%;
    }

    .craft-videos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Keep horizontal layout for corporate-gift-section on mobile */
    .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: row;
        width: 100%;
        padding-left: 3%;
        padding-right: 3%;
        gap: 0;
    }

    .corporate-gift-content-wrapper {
        flex: 1;
        padding: var(--spacing-sm) var(--spacing-md);
        padding-left: 8%;
        padding-right: 8%;
        background: #a37172;
        min-height: auto;
        min-width: 200px;
    }

    .corporate-gift-image-wrapper {
        position: relative;
        flex: 0 0 auto;
        min-height: auto;
        max-height: none;
        height: auto;
        width: auto;
        max-width: 200px;
        min-width: 150px;
        top: 0;
        bottom: 0;
        left: 0;
        background: transparent;
        margin-left: -5%;
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

    .corporate-gift-item .corporate-gift-title {
        margin-top: 0;
        margin-bottom: var(--spacing-xs);
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        line-height: 1.15;
    }

    .corporate-gift-item .corporate-gift-description {
        font-size: clamp(0.6rem, 2vw, 0.8rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-xs);
    }

    /* Keep horizontal layout for after-care-service sections on mobile - scaled down */
    .care-section,
    .repairing-section {
        flex-direction: row;
        gap: 0;
        padding-left: 2%;
        padding-right: 2%;
    }

    .aftercare-section {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .why-choose-section {
        flex-direction: row;
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
        align-items: flex-start;
    }

    /* Keep horizontal layout for craft-personalize-section on mobile - scaled down */
    .craft-personalize-section {
        flex-direction: row;
        gap: 0;
        padding-left: 3%;
        padding-right: 3%;
        /* width: calc(100% + 5%); */
        margin-left: -2.5%;
        overflow-x: hidden;
    }

    /* Keep horizontal layout for aftercare-cleaning-section on mobile */
    .aftercare-cleaning-section {
        flex-direction: row;
        margin-bottom: 0;
        padding-bottom: 0;
        padding-top: 0;
        padding-left: 3%;
        padding-right: 3%;
        gap: 0;
    }

    .aftercare-cleaning-content {
        padding: var(--spacing-xs) var(--spacing-sm);
        padding-left: 6%;
        padding-right: 4%;
        min-width: 200px;
        gap: var(--spacing-xs);
    }

    .aftercare-cleaning-content .aftercare-cleaning-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: var(--spacing-xs);
    }

    .aftercare-cleaning-content .aftercare-cleaning-description {
        font-size: clamp(0.75rem, 2.5vw, 1rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-xs);
    }

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

    .care-image-wrapper {
        margin-right: -5%;
        margin-left: -2%;
        margin-bottom: 0;
        max-width: 180px;
        min-width: 140px;
        flex-shrink: 0;
        border: 6px solid var(--text-light);
    }

    /* Keep aftercare-cleaning-image-wrapper smaller for mobile with horizontal layout */
    .aftercare-cleaning-image-wrapper {
        margin-right: -5%;
        margin-bottom: 0;
        max-width: 200px;
        min-width: 150px;
        flex-shrink: 0;
        border: 8px solid var(--text-light);
    }

    .care-content {
        padding: var(--spacing-xs) var(--spacing-sm);
        padding-left: 6%;
        padding-right: 3%;
        min-width: 200px;
        gap: var(--spacing-xs);
        flex: 1;
    }

    .care-content .service-title {
        font-size: 28px;
        font-family: 'The Seasons', serif;
        line-height: 1.15;
        margin-bottom: var(--spacing-xs);
    }

    .care-content .service-description {
        font-size: 16px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.2;
        margin: 0;
    }

    .repairing-image-wrapper {
        margin-left: -5%;
        margin-right: -2%;
        margin-bottom: 0;
        max-width: 180px;
        min-width: 140px;
        flex-shrink: 0;
        border: 6px solid var(--text-light);
    }

    .why-choose-image-wrapper {
        margin-left: 0;
        margin-bottom: 0;
        flex: 0 0 40%;
        max-width: 40%;
        min-width: 0;
        border: 10px solid var(--text-light);
    }

    .craft-personalize-image-wrapper {
        position: relative;
        flex: 0 0 35%;
        max-width: 200px;
        min-width: 160px;
        border: 8px solid var(--text-light);
        border-radius: var(--radius-round);
        aspect-ratio: 1;
        overflow: hidden;
        margin-left: -5%;
        margin-bottom: 0;
        flex-shrink: 0;
        z-index: 2;
    }

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

    .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 {
        padding: var(--spacing-xs) var(--spacing-sm);
        padding-left: 6%;
        padding-right: 3%;
        min-width: 200px;
        gap: var(--spacing-xs);
        flex: 1;
    }

    .repairing-content .service-title {
        font-size: 28px;
        font-family: 'The Seasons', serif;
        line-height: 1.15;
        margin-bottom: var(--spacing-xs);
    }

    .repairing-content .service-description {
        font-size: 16px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.2;
        margin: 0;
    }

    .why-choose-content {
        padding: var(--spacing-lg);
        min-width: 0;
        flex: 1;
        max-width: 60%;
    }

    .craft-personalize-content {
        padding: var(--spacing-xs) var(--spacing-sm);
        padding-left: 6%;
        padding-right: 4%;
        min-width: 200px;
        width: auto;
        flex: 1;
        background: #F5EDE4;
        gap: var(--spacing-xs);
        z-index: 1;
    }

    .craft-personalize-content .craft-personalize-title {
        font-size: 28px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.15;
        margin-bottom: var(--spacing-xs);
    }

    .craft-personalize-content .craft-personalize-description {
        font-size: 16px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.2;
        margin: 0 0 var(--spacing-xs) 0;
    }

    .craft-personalize-button {
        padding: 0.5rem 1rem;
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        border-width: 1.5px;
        margin-top: var(--spacing-xs);
    }

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

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

    .aftercare-image-wrapper {
        margin-left: 0;
        margin-bottom: 0;
        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: 10px !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .gold-price-table-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin-bottom: 0.15rem !important;
        margin-top: 0.15rem !important;
    }

    .gold-saving-price-label {
        font-size: clamp(1rem, 3vw, 1.5rem);
        margin-bottom: 0.15rem !important;
    }

    .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: 0.75rem;
        padding: 0 var(--spacing-sm);
    }

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

    .desktop1-thq-gold-saving-content {
        display: flex;
        flex-direction: row;
        gap: 0;
        margin-bottom: var(--spacing-lg);
        align-items: center;
        justify-content: center;
    }

    .desktop1-thq-text-content {
        flex: 1;
        text-align: center !important;
    }

    .desktop1-thq-text-elm28 {
        font-size: 1.5rem;
    }

    .desktop1-thq-text-elm31 {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .membership-card-image {
        flex-shrink: 0;
        width: 40%;
        max-width: 200px;
        margin-left: auto;
    }
}

@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: repeat(3, 1fr);
        gap: 15px 10px;
    }

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

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

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

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

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

    .gold-saving-tables-section {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        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: 0.1rem;
        margin-top: 0.15rem;
        padding: 0 var(--spacing-xs);
    }

    .gold-saving-price-label {
        font-size: clamp(0.875rem, 3.5vw, 1.25rem);
        margin-bottom: 0.10rem;
        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 */
    /* Keep horizontal layout for smaller screens */
    .corporate-gift-section {
        margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
        padding: var(--spacing-md) 2%;
        padding-top: var(--spacing-lg);
    }

    .corporate-gift-horizontal {
        flex-direction: row;
        padding-left: 2%;
        padding-right: 2%;
        gap: 0;
    }

    .corporate-gift-content-wrapper {
        padding: var(--spacing-xs) var(--spacing-sm);
        padding-left: 6%;
        padding-right: 4%;
        min-width: 180px;
    }

    .corporate-gift-image-wrapper {
        max-width: 150px;
        min-width: 120px;
        margin-left: -3%;
    }

    .corporate-gift-item {
        gap: 0.25rem;
    }

    .corporate-gift-item .corporate-gift-title {
        margin-top: 0;
        margin-bottom: 0.25rem;
        font-size: clamp(1.25rem, 4.5vw, 1.8rem);
        line-height: 1.1;
    }

    .corporate-gift-item .corporate-gift-description {
        font-size: clamp(0.55rem, 1.6vw, 0.7rem);
        line-height: 1.15;
        margin-bottom: 0.25rem;
    }

    .corporate-gift-item .harith-button-center {
        margin-top: 0.25rem;
    }

    .corporate-gift-item .harith-cta-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    /* Keep horizontal layout for after-care-service sections on smaller screens - scaled down */
    .care-section,
    .repairing-section {
        flex-direction: row;
        gap: 0;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }

    .care-image-wrapper {
        max-width: 180px;
        min-width: 120px;
        margin-right: -3%;
        margin-left: -1.5%;
        border: 5px solid var(--text-light);
    }

    .care-content {
        padding: 0.3rem;
        padding-left: 5%;
        padding-right: 2%;
        min-width: 180px;
        gap: 0.25rem;
    }

    .care-content .service-title {
        font-size: 24px;
        font-family: 'The Seasons', serif;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }

    .care-content .service-description {
        font-size: 14px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.15;
        margin: 0;
    }

    .repairing-image-wrapper {
        max-width: 150px;
        min-width: 120px;
        margin-left: -3%;
        margin-right: -1.5%;
        border: 5px solid var(--text-light);
    }

    .repairing-content {
        padding: 0.3rem;
        padding-left: 5%;
        padding-right: 2%;
        min-width: 180px;
        gap: 0.25rem;
    }

    .repairing-content .service-title {
        font-size: 24px;
        font-family: 'The Seasons', serif;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }

    .repairing-content .service-description {
        font-size: 14px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.15;
        margin: 0;
    }

    /* Keep horizontal layout for services-section on smaller screens */
    .service-horizontal {
        width: calc(100% + 4%);
        margin-left: -2%;
    }

    .service-image-wrapper {
        max-width: 180px;
        min-width: 140px;
        min-height: 300px;
        margin-left: -1.5%;
    }

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

    .service-content-wrapper {
        padding: 0.3rem;
        padding-left: 4%;
        padding-right: 2%;
        min-width: 180px;
        min-height: 250px;
        gap: 0.25rem;
    }

    .service-item .service-title {
        font-size: 24px;
        font-family: 'The Seasons', serif;
        line-height: 1.1;
        margin-bottom: 0.02rem;
    }

    .service-item .service-description {
        font-size: 14px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.15;
        margin: 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .expert-jewellery-care-section .section-title {
        font-size: 25px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-text {
        font-size: 14px;
    }

    .stores-title {
        font-size: 24px;
    }

    .stores-subtitle {
        font-size: 14px;
    }

    .store-name {
        font-size: 24px;
        /* letter-spacing: 0.05em; */
    }

    .store-address,
    .store-phone {
        font-size: 14px;
    }

    .cleaning-banner {
        margin-top: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .cta-button,
    .cta-button-light,
    .cta-button-dark {
        padding: 0.4rem 0.8rem;
        font-size: clamp(0.65rem, 1.8vw, 0.8rem);
        border-width: 1.5px;
    }

    /* Keep horizontal layout for smaller screens */
    .aftercare-cleaning-section {
        flex-direction: row;
        margin-bottom: 0;
        padding-bottom: 0;
        padding-top: 0;
        padding-left: 2%;
        padding-right: 2%;
        gap: 0;
    }

    .aftercare-cleaning-image-wrapper {
        max-width: 150px;
        min-width: 120px;
        margin-right: -3%;
        border: 6px solid var(--text-light);
    }

    .aftercare-cleaning-content {
        padding: var(--spacing-xs);
        padding-left: 5%;
        padding-right: 3%;
        min-width: 180px;
        gap: 0.25rem;
    }

    .aftercare-cleaning-content .aftercare-cleaning-title {
        font-size: clamp(1.25rem, 4.5vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }

    .aftercare-cleaning-content .aftercare-cleaning-description {
        font-size: clamp(0.65rem, 2vw, 0.85rem);
        line-height: 1.15;
        margin-bottom: 0.25rem;
    }

    .aftercare-cleaning-content .harith-button-center {
        margin-top: 0.25rem;
    }

    .aftercare-cleaning-content .harith-cta-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .desktop1-thq-gold-saving-content {
        display: flex;
        flex-direction: row;
        gap: 0;
        margin-bottom: var(--spacing-sm);
        align-items: center;
        justify-content: center;
    }

    .desktop1-thq-text-content {
        padding: var(--spacing-sm);
        flex: 1;
        text-align: center !important;
    }

    .desktop1-thq-text-elm28 {
        font-size: 1.25rem;
    }

    .desktop1-thq-text-elm31 {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .membership-card-image {
        padding-top: 20px;
        flex-shrink: 0;
        width: 45%;
        max-width: 150px;
        margin-left: auto;
    }
}

/* ========================================
     EXTRA SMALL MOBILE RESPONSIVE (Max-width: 360px)
     ======================================== */
@media (max-width: 360px) {
    .gold-price-table-wrapper {
        padding: var(--spacing-xs);
        margin: 0;
    }

    .gold-price-table-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 0.15rem;
        margin-top: 0.2rem;
    }

    .gold-saving-price-label {
        font-size: clamp(0.75rem, 4vw, 1rem);
        margin-bottom: 0.2rem;
    }

    .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: 0.4rem 0.5rem;
        font-size: clamp(0.65rem, 3.5vw, 0.8rem);
        white-space: nowrap;
    }

    .gold-saving-tables-section {
        gap: 0.1rem;
        padding: 0;
    }

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

    /* Keep horizontal layout for after-care-service sections on extra small screens - scaled down */
    .care-section,
    .repairing-section {
        flex-direction: row;
        gap: 0;
        padding-left: 1%;
        padding-right: 1%;
    }

    .care-image-wrapper {
        max-width: 120px;
        min-width: 100px;
        margin-right: -2%;
        margin-left: -1%;
        border: 5px solid var(--text-light);
    }

    .care-content {
        padding: 0.3rem;
        padding-left: 4%;
        padding-right: 2%;
        min-width: 160px;
        gap: 0.15rem;
    }

    .care-content .service-title {
        font-size: 20px;
        font-family: 'The Seasons', serif;
        line-height: 1.05;
        margin-bottom: 0.15rem;
    }

    .care-content .service-description {
        font-size: 12px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.1;
        margin: 0;
    }

    .repairing-image-wrapper {
        max-width: 120px;
        min-width: 100px;
        margin-left: -2%;
        margin-right: -1%;
        border: 5px solid var(--text-light);
    }

    .repairing-content {
        padding: 0.3rem;
        padding-left: 4%;
        padding-right: 2%;
        min-width: 160px;
        gap: 0.15rem;
    }

    .repairing-content .service-title {
        font-size: 20px;
        font-family: 'The Seasons', serif;
        line-height: 1.05;
        margin-bottom: 0.15rem;
    }

    .repairing-content .service-description {
        font-size: 12px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.1;
        margin: 0;
    }

    /* Keep horizontal layout for services-section on extra small screens */
    .service-horizontal {
        width: calc(100% + 3%);
        margin-left: -1.5%;
    }

    .service-image-wrapper {
        max-width: 150px;
        min-width: 120px;
        min-height: 250px;
        margin-left: -1%;
    }

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

    .service-content-wrapper {
        padding: 0.3rem;
        padding-left: 3%;
        padding-right: 2%;
        min-width: 160px;
        min-height: 200px;
        gap: 0.15rem;
    }

    .service-item .service-title {
        font-size: 20px;
        font-family: 'The Seasons', serif;
        line-height: 1.05;
        margin-bottom: 0.15rem;
    }

    .service-item .service-description {
        font-size: 12px;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1.1;
        margin: 0;
    }

    .hero-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .expert-jewellery-care-section .section-title {
        font-size: 20px;
    }

    .banner-title {
        font-size: 20px;
    }

    .banner-text {
        font-size: 12px;
    }

    .stores-title {
        font-size: 20px;
    }

    .stores-subtitle {
        font-size: 12px;
    }

    .store-name {
        font-size: 20px;
        /* letter-spacing: 0.05em; */
    }

    .store-address,
    .store-phone {
        font-size: 12px;
    }

    .cleaning-banner {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .cta-button,
    .cta-button-light,
    .cta-button-dark {
        padding: 0.35rem 0.7rem;
        font-size: clamp(0.6rem, 1.6vw, 0.75rem);
        border-width: 1.5px;
    }

    /* Keep horizontal layout for extra small screens */
    .aftercare-cleaning-section {
        flex-direction: row;
        padding-left: 1%;
        padding-right: 1%;
    }

    .aftercare-cleaning-image-wrapper {
        max-width: 120px;
        min-width: 100px;
        margin-right: -2%;
        border: 5px solid var(--text-light);
    }

    .aftercare-cleaning-content {
        padding: 0.3rem;
        padding-left: 4%;
        padding-right: 2%;
        min-width: 160px;
        gap: 0.15rem;
    }

    .aftercare-cleaning-content .aftercare-cleaning-title {
        font-size: clamp(1rem, 4vw, 1.4rem);
        line-height: 1.05;
        margin-bottom: 0.15rem;
    }

    .aftercare-cleaning-content .aftercare-cleaning-description {
        font-size: clamp(0.55rem, 1.8vw, 0.75rem);
        line-height: 1.1;
        margin-bottom: 0.15rem;
    }

    .aftercare-cleaning-content .harith-button-center {
        margin-top: 0.15rem;
    }

    .aftercare-cleaning-content .harith-cta-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }

    /* Corporate Gift Section - Extra Small */
    .corporate-gift-section {
        padding: var(--spacing-sm) 1%;
    }

    .corporate-gift-horizontal {
        flex-direction: row;
        padding-left: 1%;
        padding-right: 1%;
    }

    .corporate-gift-content-wrapper {
        padding: 0.3rem;
        padding-left: 4%;
        padding-right: 2%;
        min-width: 160px;
    }

    .corporate-gift-image-wrapper {
        max-width: 120px;
        min-width: 100px;
        margin-left: -2%;
    }

    .corporate-gift-item {
        gap: 0.15rem;
    }

    .corporate-gift-item .corporate-gift-title {
        font-size: clamp(1rem, 4vw, 1.4rem);
        line-height: 1.05;
        margin-bottom: 0.15rem;
    }

    .corporate-gift-item .corporate-gift-description {
        font-size: clamp(0.5rem, 1.4vw, 0.65rem) !important;
        line-height: 1.1;
        margin-bottom: 0.15rem;
    }

    .corporate-gift-item .harith-button-center {
        margin-top: 0.15rem;
    }

    .corporate-gift-item .harith-cta-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }
}

/* ========================================
     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: 48px;
    font-family: 'The Seasons', serif;
    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: 1.2rem 0 2.2em 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;
}

.contact-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    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-sm);
    }

    .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 0px 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-icon-image {
    flex-shrink: 0;
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.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: 70%;
}

.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 0px 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: 0 0 30%;
    max-width: 30%;
    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: 0px;
}

.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 0px 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: 24px;
        line-height: 1.2;
    }

    .our-stories-page .feature-description,
    .our-stories-page .why-choose-feature-description {
        font-size: 18px;
        line-height: 1.3;
    }

    .our-stories-page .why-choose-section {
        flex-direction: row;
        gap: 20px;
        padding: var(--spacing-lg) 20px;
        align-items: center;
        background: transparent;
    }

    .our-stories-page .why-choose-content {
        flex: 1;
        max-width: 55%;
        min-width: 0;
        padding: var(--spacing-md) var(--spacing-sm);
        gap: var(--spacing-sm);
        background: #F5EDE5;
    }

    .our-stories-page .why-choose-image-wrapper {
        flex: 0 0 45%;
        max-width: 45%;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
        border: 10px solid var(--text-light);
        border-radius: 50%;
        aspect-ratio: 1;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .our-stories-page .why-choose-title {
        font-size: 28px !important;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .our-stories-page .why-choose-feature-item {
        gap: 12px;
    }

    .our-stories-page .why-choose-feature-icon {
        min-width: 45px;
        min-height: 45px;
        transform: scale(0.55);
        transform-origin: top left;
    }

    .our-stories-page .why-choose-feature-icon-image {
        width: 60px;
        height: 60px;
    }

    .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;
        padding-right: 20px;
    }

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

    .our-stories-page .legacy-row {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 40px;
        align-items: flex-start;
    }

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

    .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 {
        flex: 0 0 45%;
        max-width: 45%;
        min-width: 0;
    }

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

    .our-stories-page .legacy-image-primary,
    .our-stories-page .legacy-image-secondary {
        border-radius: 6px;
        object-fit: cover;
    }

    .our-stories-page .founder-content {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
    }

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

    .our-stories-page .founder-image-wrapper {
        flex: 0 0 35%;
        max-width: 35%;
        min-width: 0;
    }

    .our-stories-page .founder-message {
        padding: 30px 20px;
    }

    .our-stories-page .founder-text p {
        font-size: 14px;
        text-align: left;
        line-height: 1.5;
    }

    .our-stories-page .founder-greeting {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .our-stories-page .founder-closing {
        font-size: 20px;
        margin-top: 20px;
    }

    .our-stories-page .legacy-story-primary p,
    .our-stories-page .legacy-story-secondary p {
        font-size: 16px;
        text-align: left;
        line-height: 1.5;
    }

    .our-stories-page .legacy-main-title {
        font-size: 28px;
        text-align: left;
        margin-bottom: 20px;
    }

    .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 .legacy-row {
        gap: 15px;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .our-stories-page .legacy-row:first-of-type {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .our-stories-page .legacy-row-reverse {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

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

    .our-stories-page .legacy-story-primary,
    .our-stories-page .legacy-story-secondary {
        flex: 1;
        max-width: 60%;
    }

    .our-stories-page .legacy-story-primary p,
    .our-stories-page .legacy-story-secondary p {
        font-size: 14px;
        line-height: 1.4;
    }

    .our-stories-page .legacy-main-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .our-stories-page .founder-message {
        padding: 20px 15px;
    }

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

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

    .our-stories-page .founder-image-wrapper {
        flex: 0 0 32%;
        max-width: 32%;
    }

    .our-stories-page .founder-text p {
        font-size: 10px;
        line-height: 1.4;
    }

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

    .our-stories-page .founder-closing {
        font-size: 18px;
        margin-top: 20px;
    }

    .our-stories-page .founder-image {
        width: 100%;
        height: auto;
    }

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

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

    .our-stories-page .why-choose-section {
        flex-direction: row;
        gap: 15px;
        padding: var(--spacing-md) 15px;
        align-items: center;
        background: transparent;
    }

    .our-stories-page .why-choose-content {
        flex: 1;
        max-width: 55%;
        min-width: 0;
        padding: var(--spacing-sm) var(--spacing-xs);
        gap: 10px;
        background: #F5EDE5;
    }

    .our-stories-page .why-choose-image-wrapper {
        flex: 0 0 45%;
        max-width: 45%;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
        border: 6px solid var(--text-light);
        border-radius: 50%;
        aspect-ratio: 1;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .our-stories-page .why-choose-title {
        font-size: 20px !important;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .our-stories-page .why-choose-feature-title {
        font-size: 15px;
        line-height: 1.2;
    }

    .our-stories-page .why-choose-feature-description {
        font-size: 12px;
        line-height: 1.3;
    }

    .our-stories-page .why-choose-feature-item {
        gap: 8px;
    }

    .our-stories-page .why-choose-feature-icon {
        min-width: 30px;
        min-height: 30px;
        transform: scale(0.4);
    }

    .our-stories-page .why-choose-feature-icon-image {
        width: 40px;
        height: 40px;
    }

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

    .our-stories-page .legacy-container .team-section {
        margin: 20px 0;
    }

    .our-stories-page .legacy-container .team-title,
    .our-stories-page .legacy-container .success-title {
        font-size: 28px;
        padding: 0 15px;
    }

    .our-stories-page .legacy-container .team-divider-line {
        height: 60px;
        margin-bottom: 40px;
    }

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

    .our-stories-page .legacy-container .success-section {
        margin: 0px 0 0 0;
        gap: 30px;
    }

    .our-stories-page .legacy-container .success-stats {
        gap: 20px;
        padding: 0 15px;
    }

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

    .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;
}

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

.gs-container {
    background-color: #D4C4B7;
    min-height: 100vh;
    padding: 0;
}

.gs-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 20px;
}

.gs-banner-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid #8B7FA8;
    border-bottom: 2px solid #8B7FA8;
    margin-bottom: 40px;
}

.gs-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(212, 196, 183, 0.3), rgba(212, 196, 183, 0.5));
}

.gs-banner-title {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    font-weight: 400;
    color: #5C2E2E;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.gs-info-section {
    background-color: #F5F0EB;
    border-radius: 20px;
    padding: 40px 50px;
    margin: 0 auto 60px;
    max-width: 1200px;
}

.gs-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gs-info-item {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #5C2E2E;
    line-height: 1.8;
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
}

.gs-info-item::before {
    content: counter(info-counter) '.';
    counter-increment: info-counter;
    position: absolute;
    left: 0;
    font-weight: 400;
}

.gs-info-container {
    counter-reset: info-counter;
}

.gs-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    color: #5C2E2E;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
}

.gs-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #5C2E2E;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.gs-price-table {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.gs-price-table-inner {
    width: 100%;
    max-width: 650px;
    background: white;
    overflow: hidden;
}

.gs-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #C9A147;
    border-bottom: 3px solid white;
}

.gs-price-row:last-child {
    border-bottom: none;
}

.gs-price-cell {
    padding: 30px;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    border-right: 3px solid white;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.gs-price-cell:last-child {
    border-right: none;
}

.gs-price-purity {
    font-size: 38px;
    font-weight: 600;
}

.gs-price-amount {
    font-size: 32px;
    font-weight: 600;
}

.gs-calculator-card {
    background-color: #F5F0EB;
    padding: 50px 60px;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.gs-select-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #5C2E2E;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

.gs-purity-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.gs-purity-btn {
    width: 100%;
    padding: 20px;
    background-color: #5C2E2E;
    color: white;
    border: 3px solid transparent;
    font-size: 32px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.gs-purity-btn:first-child {
    border-bottom: 2px solid #F5F0EB;
}

.gs-purity-btn:hover {
    background-color: #7D1128;
}

.gs-purity-btn.active {
    background-color: #7D1128;
    border: 4px solid #C9A147;
    box-shadow: 0 0 0 3px rgba(201, 161, 71, 0.5), 0 4px 15px rgba(201, 161, 71, 0.4);
    transform: scale(1.02);
}

.gs-purity-btn.active::before {
    content: '✓';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #C9A147;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(201, 161, 71, 0.8);
}

.gs-amount-section {
    text-align: center;
    margin-bottom: 35px;
}

.gs-amount-label {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #5C2E2E;
    margin-bottom: 20px;
    font-weight: 400;
}

.gs-amount-input {
    width: 100%;
    max-width: 350px;
    padding: 20px;
    text-align: center;
    font-size: 52px;
    font-weight: 300;
    border: 2px solid #5C2E2E;
    background-color: transparent;
    color: #5C2E2E;
    font-family: 'Playfair Display', serif;
}

.gs-amount-input:focus {
    outline: none;
    border-color: #7D1128;
}

.gs-weight-section {
    text-align: center;
    margin-bottom: 40px;
}

.gs-weight-label {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #5C2E2E;
    margin-bottom: 15px;
    font-weight: 400;
}

.gs-weight-value {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #5C2E2E;
    font-weight: 400;
}

.gs-action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    margin: 0 auto;
}

.gs-buy-btn,
.gs-reset-btn {
    width: 100%;
    padding: 18px;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    border: 2px solid #5C2E2E;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 400;
}

.gs-buy-btn {
    background-color: transparent;
    color: #5C2E2E;
}

.gs-buy-btn:hover:not(:disabled) {
    background-color: #5C2E2E;
    color: white;
}

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

.gs-reset-btn {
    background-color: transparent;
    color: #5C2E2E;
}

.gs-reset-btn:hover {
    background-color: #5C2E2E;
    color: white;
}

.gs-gold-bars {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 280px;
    height: auto;
    pointer-events: none;
}

.gs-error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

.gs-promo-section {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.gs-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    overflow: hidden;
}

.gs-promo-content {
    background-color: #F5EDE4;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gs-promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: #5C2E2E;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gs-promo-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #5C2E2E;
    line-height: 1.6;
    margin-bottom: 40px;
}

.gs-apply-btn {
    width: fit-content;
    padding: 18px 60px;
    background-color: transparent;
    border: 2px solid #5C2E2E;
    color: #5C2E2E;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.gs-apply-btn:hover {
    background-color: #5C2E2E;
    color: white;
}

.gs-promo-video {
    position: relative;
    background: #E8DDD0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.gs-rings-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.gs-rings-section img {
    width: 100%;
    height: auto;
    display: block;
}

.gs-promo-video iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.gs-stores-section {
    background-color: #F5F0EB;
    padding: 80px 20px;
    margin-top: 60px;
}

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

.gs-stores-header {
    text-align: center;
    margin-bottom: 60px;
}

.gs-stores-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: #5C2E2E;
    margin-bottom: 20px;
}

.gs-stores-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #5C2E2E;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.gs-store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gs-store-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #F5F0EB;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gs-store-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.gs-store-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gs-store-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #5C2E2E;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.gs-store-name br {
    content: '';
    display: block;
    margin-bottom: 12px;
}

.gs-store-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5C2E2E;
    line-height: 1.5;
}

.gs-store-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #5C2E2E;
}

/* Responsive Styles for Gold Saving */
@media (max-width: 768px) {
    .gs-banner-section {
        min-height: 150px;
    }

    .gs-banner-title {
        font-size: 48px;
    }

    .gs-info-section {
        padding: 30px 25px;
        margin-bottom: 40px;
    }

    .gs-info-item {
        font-size: 16px;
        padding-left: 25px;
    }

    .gs-main-title {
        font-size: 42px;
    }

    .gs-subtitle {
        font-size: 12px;
    }

    .gs-price-cell {
        padding: 20px 15px;
    }

    .gs-price-purity,
    .gs-price-amount {
        font-size: 20px;
    }

    .gs-stores-section {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .gs-stores-title {
        font-size: 36px;
    }

    .gs-stores-subtitle {
        font-size: 16px;
    }

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

    .gs-store-card {
        padding: 30px 20px;
    }

    .gs-store-name {
        font-size: 24px;
    }

    .gs-store-address {
        font-size: 14px;
    }

    .gs-store-phone {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gs-price-cell {
        padding: 15px 10px;
    }

    .gs-price-purity {
        font-size: 18px;
    }

    .gs-price-amount {
        font-size: 16px;
    }

    .gs-calculator-card {
        padding: 40px 30px;
    }

    .gs-select-title,
    .gs-amount-label,
    .gs-weight-label {
        font-size: 24px;
    }

    .gs-amount-input {
        font-size: 36px;
    }

    .gs-weight-value {
        font-size: 40px;
    }

    .gs-purity-btn {
        font-size: 24px;
        padding: 15px;
    }

    .gs-buy-btn,
    .gs-reset-btn {
        font-size: 20px;
    }

    .gs-gold-bars {
        width: 180px;
        right: -20px;
        bottom: -10px;
    }

    .gs-promo-section {
        margin: 40px auto 0;
        padding: 0 10px;
    }

    .gs-promo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .gs-promo-content {
        padding: 20px 15px;
    }

    .gs-promo-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .gs-promo-description {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .gs-apply-btn {
        font-size: 12px;
        padding: 10px 20px;
        width: fit-content;
        text-align: center;
    }

    .gs-promo-video {
        min-height: 200px;
    }

    .gs-promo-video iframe {
        min-height: 200px;
    }
}

/* ========================================
   OUR NEWS PAGE STYLES
   ======================================== */

/* Scoped styles for our-news page */
#our-news-page * {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

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

#our-news-page .top-banner {
    width: 100%;
    height: 96px;
    display: flex;
    justify-content: center;
    background-color: #521011;
    margin-bottom: 20px;
}

#our-news-page .banner-text {
    margin-top: 27px;
    width: 642px;
    height: 42px;
    font-family: "Red Hat Display-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 32px;
    letter-spacing: 0;
    line-height: normal;
    text-align: center;
}

#our-news-page .hero-section {
    position: relative;
    width: 100%;
    height: 430px;
    background-color: #ffffff;
    margin: 0 auto 20px;
}

#our-news-page .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

#our-news-page .hero-title {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0px 4px 4px #00000040;
    font-family: "Cormorant Garamond-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 128px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

#our-news-page .content-section {
    width: 100%;
    margin: 0 auto;
    padding: 40px 80px;
    background-color: #ffffff;
}

#our-news-page .article-section {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0;
    margin-bottom: 40px;
}

#our-news-page .article-banner {
    width: 100%;
    height: auto;
    margin: 22px auto;
    display: block;
}

#our-news-page .banner-container {
    position: relative;
    width: 100%;
    margin: 22px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#our-news-page .banner-container img {
    width: 100%;
    height: auto;
    display: block;
}

#our-news-page .banner-overlay-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Arial Rounded MT Bold-Regular", Helvetica;
    font-weight: 700;
    color: #3a3a3a;
    font-size: 70px;
    text-align: center;
    letter-spacing: 0;
    line-height: 72.5px;
    margin: 0;
    padding: 20px;
    z-index: 10;
}

#our-news-page .article-title {
    font-family: "Abhaya Libre-Regular", Helvetica;
    font-weight: 400;
    color: #3a3a3a;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: 66.3px;
    margin: 40px 0;
}

#our-news-page .article-text {
    font-family: "Cormorant Garamond-SemiBold", Helvetica;
    font-weight: 600;
    color: #5c1e1f;
    font-size: 36px;
    text-align: justify;
    letter-spacing: 0;
    line-height: 40.4px;
    margin: 20px 0;
}

#our-news-page .two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0px 0;
}

#our-news-page .image-frame {
    background-color: #ffffff;
    box-shadow: 0px 1px 4px #00000040;
    padding: 20px;
}

#our-news-page .image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#our-news-page .three-column-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

#our-news-page .store-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 17px;
    padding: 53px 63px;
    background-color: #ffffff;
    box-shadow: 0px -12px 24.4px #00000012;
    margin-top: 60px;
}

#our-news-page .store-title {
    width: 100%;
    font-family: "Cormorant Garamond-Medium", Helvetica;
    font-weight: 500;
    color: #010101;
    font-size: 96px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

#our-news-page .store-subtitle {
    width: 100%;
    font-family: "Cormorant Garamond-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 42px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 40px;
}

#our-news-page .store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
}

#our-news-page .store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 41px;
    font-style: normal;
}

#our-news-page .store-icon {
    width: 224px;
    height: 224px;
}

#our-news-page .store-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

#our-news-page .store-name {
    font-family: "FONTSPRING DEMO - The Seasons-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 36px;
    letter-spacing: 0;
    line-height: normal;
}

#our-news-page .store-address {
    font-family: "Cormorant Garamond-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 40px;
    letter-spacing: 0;
    line-height: normal;
}

#our-news-page .store-tel {
    font-family: "Cormorant Garamond-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 36px;
    letter-spacing: 0;
    line-height: normal;
}

#our-news-page .anniversary-section {
    background-color: #fff6f1;
    padding: 0px 80px;
    width: 100%;
}

#our-news-page .event-title-large {
    font-family: "Arial Rounded MT Bold-Regular", Helvetica;
    font-weight: 400;
    color: #3a3a3a;
    font-size: 70px;
    text-align: center;
    letter-spacing: 0;
    line-height: 72.5px;
    margin: 40px 0;
}

#our-news-page .event-subtitle {
    font-family: "Abhaya Libre-Regular", Helvetica;
    font-weight: 400;
    color: #3a3a3a;
    font-size: 70px;
    text-align: center;
    letter-spacing: 0;
    line-height: 51.1px;
    margin: 20px 0;
}

/* Our News Store Section (renamed from gs-stores to on-stores to avoid conflicts) */
.on-stores-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 17px;
    padding: 53px 63px;
    background-color: #ffffff;
    box-shadow: 0px -12px 24.4px #00000012;
    margin-top: 60px;
}

.on-stores-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.on-stores-header {
    text-align: center;
    margin-bottom: 40px;
}

.on-stores-title {
    width: 100%;
    font-family: "Cormorant Garamond-Medium", Helvetica;
    font-weight: 500;
    color: #010101;
    font-size: 96px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.on-stores-subtitle {
    width: 100%;
    font-family: "Cormorant Garamond-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 42px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    margin-top: 20px;
}

.on-stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
}

.on-store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 41px;
    font-style: normal;
}

.on-store-icon {
    width: 224px;
    height: 224px;
}

.on-store-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.on-store-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.on-store-name {
    font-family: "FONTSPRING DEMO - The Seasons-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 36px;
    letter-spacing: 0;
    line-height: normal;
}

.on-store-address {
    font-family: "Cormorant Garamond-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 40px;
    letter-spacing: 0;
    line-height: normal;
}

.on-store-phone {
    font-family: "Cormorant Garamond-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 36px;
    letter-spacing: 0;
    line-height: normal;
}

/* Responsive design for our-news page */
@media (max-width: 1200px) {
    #our-news-page .hero-title {
        font-size: 96px;
    }
    #our-news-page .banner-overlay-title {
        font-size: 56px;
        line-height: 58px;
    }
    #our-news-page .content-section,
    #our-news-page .anniversary-section {
        padding: 40px 40px;
    }
    #our-news-page .two-column-layout,
    #our-news-page .three-column-layout,
    #our-news-page .store-grid {
        grid-template-columns: 1fr;
    }
    .on-stores-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop1-thq-group49-elm,
    .desktop1-thq-frame39-elm1 {
        min-height: 500px !important;
    }

    #our-news-page .hero-title {
        font-size: 64px;
    }
    #our-news-page .banner-overlay-title {
        font-size: 36px;
        line-height: 40px;
        padding: 10px;
    }
    #our-news-page .banner-overlay-title h2 {
        font-size: 42px !important;
    }
    #our-news-page .banner-overlay-title p {
        font-size: 28px !important;
    }
    #our-news-page .content-section,
    #our-news-page .anniversary-section {
        padding: 30px 20px;
    }
    #our-news-page .article-title {
        font-size: 42px;
    }
    #our-news-page .article-text {
        font-size: 24px;
    }
    #our-news-page .store-title {
        font-size: 64px;
    }
    #our-news-page .store-subtitle {
        font-size: 32px;
    }
    .on-stores-title {
        font-size: 64px;
    }
    .on-stores-subtitle {
        font-size: 32px;
    }
    .on-stores-section {
        padding: 30px 20px;
    }
}
