/**
 * Jewelry Section Main Styles
 * Contemporary Brilliant Earth Design Style
 * Clean, modern, generous white space
 */

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --jewelry-primary: #86614a;
    --jewelry-secondary: #8B7355;
    --jewelry-accent: #C9A96E;
    --jewelry-text: #614535;
    --jewelry-dark: #614535;
    --jewelry-text-light: #666666;
    --jewelry-border: #E5E5E5;
    --jewelry-bg-light: #fcf7f1;
    --jewelry-white: #ffffff;
    --jewelry-black: #000000;
    --jewelry-success: #4CAF50;
    --jewelry-sale: rgb(242 123 41);
    --jewelry-font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --jewelry-font-heading: 'Nunito Sans', Georgia, serif;
    --jewelry-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --jewelry-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --jewelry-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --jewelry-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.jewelry-main {
    font-family: var(--jewelry-font-primary);
    color: var(--jewelry-text);
    line-height: 1.6;
}

.jewelry-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 24px;
}

/* ============================================
   HEADER
   ============================================ */
.jewelry-header {
    background: #fcf7f1b8;
    /* border-bottom: 1px solid var(--jewelry-border); */
    position: sticky;
    top: 0;
    z-index: 1000;
    /* padding: 13px 0 13px 0; */
    backdrop-filter: blur(5px);
}

.jewelry-header-top {
    background: var(--jewelry-primary);
    color: var(--jewelry-white);
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
}

.jewelry-header-main {
    padding: 13px 0 13px 0;
}

.jewelry-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.jewelry-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.jewelry-logo-text {
    font-size: 30px;
    font-weight: 700;
    color: var(--jewelry-primary);
    letter-spacing: -0.5px;
    width: 184px;
}

.jewelry-logo-subtitle {
    font-size: 11px;
    color: var(--jewelry-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.jewelry-nav-desktop {
    flex: 1;
}

.jewelry-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    justify-content: center;
}

.jewelry-nav-item > a {
    text-decoration: none;
    color: var(--jewelry-text);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    position: relative;
    padding: 4px 0;
}

.jewelry-nav-item > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--jewelry-primary), var(--jewelry-accent));
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-nav-item:hover > a::after,
.jewelry-nav-item > a:hover::after {
    width: 100%;
    left: 0;
}

.jewelry-nav-item > a:hover {
    color: var(--jewelry-primary);
}
nav[aria-label="Breadcrumb"] {
    margin-top: 20px;
    font-size: 11px;
}
.jewelry_search-page nav[aria-label="Breadcrumb"] {
    margin-top: 0px;
}
.jewelry-nav-sale {
    color: var(--jewelry-sale) !important;
}

.jewelry-has-dropdown {
    position: relative;
}

.jewelry-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    /* background: var(--jewelry-white); */
    /* border: none; */
    /* border-radius: 16px; */
    /* box-shadow: 0 12px 48px rgba(97, 69, 53, 0.12), 0 2px 8px rgba(97, 69, 53, 0.06); */
    padding: 24px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
    pointer-events: none;
}

.jewelry-has-dropdown:hover .jewelry-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.jewelry-dropdown-content {
    display: flex;
    gap: 32px;
}

.jewelry-dropdown-column h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--jewelry-accent);
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(134, 97, 74, 0.08);
}

.jewelry-dropdown-column a {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 7px 10px;
    margin: 0 -10px;
    font-size: 13.5px;
    color: var(--jewelry-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-dropdown-column a:hover {
    color: var(--jewelry-primary);
    background: var(--jewelry-bg-light);
    padding-left: 14px;
}

/* ============================================
   LUXURY DROPDOWN STYLES (with image on right)
   ============================================ */

.jewelry-dropdown-luxury {
    min-width: 720px;
    max-width: 880px;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    padding-top: 13px;
}

.jewelry-dropdown-content-luxury {
    display: flex;
    gap: 0;
    background: var(--jewelry-white);
    border: none;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(97, 69, 53, 0.12), 0 2px 8px rgba(97, 69, 53, 0.06);
    border-radius: 7px;
    overflow: hidden;
    position: relative;
}

.jewelry-dropdown-left {
    flex: 1;
    display: flex;
    gap: 28px;
    padding: 28px 32px;
}

.jewelry-dropdown-right {
    flex: 0 0 260px;
    position: relative;
    overflow: hidden;
}

.jewelry-dropdown-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-has-dropdown:hover .jewelry-dropdown-right img {
    transform: scale(1.04);
}

/* Subtle gradient overlay on the featured image */
.jewelry-dropdown-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(97, 69, 53, 0.15), transparent);
    pointer-events: none;
}

/* Top accent bar on luxury dropdown */
.jewelry-dropdown-content-luxury::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--jewelry-primary), var(--jewelry-accent), var(--jewelry-primary));
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 0px;
}

/* "View All" link at bottom of dropdown columns */
.jewelry-dropdown-column .jewelry-dropdown-view-all {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(134, 97, 74, 0.06);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.3px;
    color: var(--jewelry-primary);
}

.jewelry-dropdown-column .jewelry-dropdown-view-all:hover {
    background: rgba(201, 169, 110, 0.08);
    color: var(--jewelry-accent);
}

/* ============================================
   CATEGORY CARD DROPDOWN STYLES
   ============================================ */

.jewelry-dropdown-wide {
    min-width: 600px;
    padding: 32px;
}

.jewelry-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.jewelry-category-card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    background: var(--jewelry-white);
    /* border: 1px solid var(--jewelry-border); */
    transition: all 0.3s ease;
    /* box-shadow: inset 0px 0px 1px 0px #978484; */
}

.jewelry-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--jewelry-primary);
}

.jewelry-category-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.jewelry-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.jewelry-category-card:hover .jewelry-category-image img {
    transform: scale(1.08);
}

.jewelry-category-overlay {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%); */
    /* display: flex; */
    /* align-items: flex-end; */
    /* justify-content: center; */
    /* padding: 20px; */
    /* opacity: 0; */
    /* transition: opacity 0.3s ease; */
}

.jewelry-category-card:hover .jewelry-category-overlay {
    opacity: 1;
}

.jewelry-category-cta {
    color: var(--jewelry-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.jewelry-category-info {
    padding: 16px;
    text-align: center;
}

.jewelry-category-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--jewelry-text);
    margin: 0 0 4px 0;
    letter-spacing: 0.3px;
}

.jewelry-category-count {
    font-size: 13px;
    color: var(--jewelry-text-light);
    margin: 0;
}

.jewelry-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.jewelry-header-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--jewelry-text);
    transition: var(--jewelry-transition);
    position: relative;
}

.jewelry-header-icon:hover {
    color: var(--jewelry-primary);
}

.jewelry-cart-icon {
    text-decoration: none;
}

.jewelry-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--jewelry-primary);
    color: var(--jewelry-white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Cart count update animation */
.jewelry-cart-count.updating {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(0.9);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.jewelry-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.jewelry-mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--jewelry-text);
    transition: var(--jewelry-transition);
}

/* ============================================
   LUXURY MOBILE MENU
   ============================================ */

/* Mobile Menu Overlay */
.jewelry-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: linear-gradient(135deg, var(--jewelry-bg-light) 0%, #ffffff 100%);
    z-index: 3000;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(97, 69, 53, 0.15);
}

.jewelry-mobile-menu.active {
    right: 0;
}

/* Backdrop */
.jewelry-mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(97, 69, 53, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.jewelry-mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Header with Gradient Accent */
.jewelry-mobile-menu-header {
    position: relative;
    padding: 28px 24px;
    /* background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-secondary) 100%); */
    box-shadow: 0 4px 16px rgba(97, 69, 53, 0.12);
}

/* Decorative gradient bar */
.jewelry-mobile-menu-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--jewelry-accent), transparent 50%, var(--jewelry-accent));
}

.jewelry-mobile-menu-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jewelry-mobile-menu-logo {
    color: var(--jewelry-white);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.jewelry-mobile-menu-logo-subtitle {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.85;
}

.jewelry-mobile-menu-close {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--jewelry-white);
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.jewelry-mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* Menu Body */
.jewelry-mobile-menu-body {
    padding: 32px 24px;
}

/* Navigation Items */
.jewelry-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jewelry-mobile-nav-item {
    margin-bottom: 8px;
}

.jewelry-mobile-nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    text-decoration: none;
    color: var(--jewelry-text);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 12px;
    background: var(--jewelry-white);
    border: 1px solid rgba(134, 97, 74, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle shimmer effect on hover */
.jewelry-mobile-nav-item > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.1), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-mobile-nav-item > a:hover::before {
    left: 100%;
}

.jewelry-mobile-nav-item > a:hover {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(134, 97, 74, 0.05) 100%);
    border-color: rgba(134, 97, 74, 0.15);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(134, 97, 74, 0.08);
}

/* Icon for nav items */
.jewelry-mobile-nav-icon {
    font-size: 18px;
    color: var(--jewelry-accent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-mobile-nav-item > a:hover .jewelry-mobile-nav-icon {
    transform: translateX(4px);
}

/* Sale item highlight */
.jewelry-mobile-nav-sale {
    position: relative;
}

.jewelry-mobile-nav-sale > a {
    background: linear-gradient(135deg, rgba(242, 123, 41, 0.08) 0%, rgba(242, 123, 41, 0.04) 100%);
    border-color: rgba(242, 123, 41, 0.2);
}

.jewelry-mobile-nav-sale > a .jewelry-mobile-nav-text {
    color: var(--jewelry-sale);
    font-weight: 600;
}

/* Dropdown Items */
.jewelry-mobile-has-dropdown {
    position: relative;
}

.jewelry-mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    padding-left: 12px;
}

.jewelry-mobile-dropdown.active {
    max-height: 1000px;
}

.jewelry-mobile-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 6px;
    text-decoration: none;
    color: var(--jewelry-text);
    font-size: 14px;
    border-radius: 10px;
    background: rgba(252, 247, 241, 0.5);
    border: 1px solid rgba(134, 97, 74, 0.06);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-mobile-dropdown a:hover {
    background: var(--jewelry-white);
    border-color: rgba(134, 97, 74, 0.12);
    padding-left: 20px;
}

.jewelry-mobile-dropdown a::before {
    content: '→';
    color: var(--jewelry-accent);
    font-size: 14px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-mobile-dropdown a:hover::before {
    transform: translateX(3px);
}

/* Dropdown toggle icon */
.jewelry-mobile-dropdown-toggle {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-mobile-has-dropdown.active .jewelry-mobile-dropdown-toggle {
    transform: rotate(90deg);
}

/* Menu Divider */
.jewelry-mobile-menu-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(134, 97, 74, 0.12), transparent);
    margin: 24px 0;
}

/* Menu Footer Actions */
.jewelry-mobile-menu-footer {
    padding: 0 24px 32px;
}

.jewelry-mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.jewelry-mobile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: var(--jewelry-white);
    border: 1px solid rgba(134, 97, 74, 0.12);
    border-radius: 12px;
    text-decoration: none;
    color: var(--jewelry-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-mobile-action-btn:hover {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(134, 97, 74, 0.05));
    border-color: var(--jewelry-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(134, 97, 74, 0.1);
}

.jewelry-mobile-action-icon {
    font-size: 24px;
    color: var(--jewelry-accent);
}

.jewelry-mobile-action-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Contact Info */
.jewelry-mobile-contact {
    background: linear-gradient(135deg, rgba(134, 97, 74, 0.05) 0%, rgba(201, 169, 110, 0.05) 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(134, 97, 74, 0.08);
}

.jewelry-mobile-contact-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--jewelry-accent);
    margin-bottom: 12px;
}

.jewelry-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--jewelry-text);
}

.jewelry-mobile-contact-item:last-child {
    margin-bottom: 0;
}

.jewelry-mobile-contact-icon {
    font-size: 16px;
    color: var(--jewelry-primary);
}

/* Animated hamburger icon */
.jewelry-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.jewelry-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.jewelry-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Search Overlay */
.jewelry-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    padding: 80px 24px;
}

.jewelry-search-overlay.active {
    display: block;
}

.jewelry-search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.jewelry-search-input {
    width: 100%;
    padding: 20px 60px 20px 24px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.jewelry-search-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--jewelry-text-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   HERO SECTION — Marketplace Price Comparison
   ============================================ */
.jewelry-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: radial-gradient(ellipse at 30% 80%, #f7f3e7 0%, #efe4d6 40%, #e5dace 70%, #dcd2c7 100%);
    min-height: 560px;
    height: calc(100vh - 210px);
}

/* Background orbs for depth */
.jewelry-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.jewelry-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.jewelry-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(201, 169, 110, 0.15);
    top: -150px;
    right: -100px;
    animation: heroOrbFloat 12s ease-in-out infinite;
}

.jewelry-hero-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(134, 97, 74, 0.08);
    bottom: -100px;
    left: -60px;
    animation: heroOrbFloat 15s ease-in-out infinite reverse;
}

.jewelry-hero-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(201, 169, 110, 0.1);
    top: 40%;
    left: 45%;
    animation: heroOrbFloat 10s ease-in-out infinite 3s;
}

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

.jewelry-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 560px;
}

/* Hero Eyebrow */
.jewelry-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--jewelry-text);
    margin-bottom: 16px;
}

.jewelry-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

.jewelry-hero-title {
    font-family: var(--jewelry-font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: var(--jewelry-text);
    letter-spacing: -0.5px;
}

.jewelry-hero-highlight {
    color: var(--jewelry-primary);
    font-weight: 800;
}

.jewelry-hero-subtitle {
    font-size: 17px;
    color: #8a7a6e;
    margin: 0 0 28px 0;
    line-height: 1.7;
    max-width: 460px;
}

.jewelry-hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

/* Hero Primary Button */
.jewelry-btn-hero-primary.jewelry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--jewelry-primary);
    color: white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(134, 97, 74, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-btn-hero-primary:hover {
    background: #614535;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(134, 97, 74, 0.45);
}

.jewelry-btn-hero-primary svg {
    flex-shrink: 0;
}

/* Hero Secondary Button */
.jewelry-btn-hero-secondary.jewelry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--jewelry-primary);
    border: 1.5px solid rgba(134, 97, 74, 0.2);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--jewelry-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(134, 97, 74, 0.15);
}

.jewelry-btn-hero-secondary svg {
    flex-shrink: 0;
}

/* Hero Trust Row */
.jewelry-hero-trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.jewelry-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #8a7a6e;
    font-weight: 500;
}

.jewelry-hero-trust-item svg {
    flex-shrink: 0;
}

/* ============================================
   HERO VISUAL — Animated Price Comparison
   ============================================ */
.jewelry-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jewelry-hero-visual-inner {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 5 / 4;
}

/* Central ring card (clickable <a> tag) */
.jewelry-hero-ring-card {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 13px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 48px rgba(134, 97, 74, 0.2), 0 0 0 8px rgba(201, 169, 110, 0.08);
    z-index: 3;
    animation: heroRingPulse 4s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

/* Stacked product images — carousel slide left/right */
.jewelry-hero-ring-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.jewelry-hero-ring-img.active {
    transform: translateX(0);
}

.jewelry-hero-ring-img.slide-out {
    transform: translateX(-100%);
}

/* Skip transition when resetting position after slide-out */
.jewelry-hero-ring-img.no-transition {
    transition: none;
}

@keyframes heroRingPulse {
    0%, 100% { box-shadow: 0 16px 48px rgba(134, 97, 74, 0.2), 0 0 0 8px rgba(201, 169, 110, 0.08); }
    50% { box-shadow: 0 20px 56px rgba(134, 97, 74, 0.25), 0 0 0 12px rgba(201, 169, 110, 0.12); }
}

/* Floating price tags */
.jewelry-hero-price-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(134, 97, 74, 0.12);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 110px;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade-out state during product rotation */
.jewelry-hero-price-tag.fading {
    opacity: 0;
    animation-play-state: paused;
    transform: translateY(8px) !important;
}

/* Generic label (replaces store name) */
.jewelry-hero-tag-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a7a6e;
}

.jewelry-hero-tag-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--jewelry-text);
    letter-spacing: -0.3px;
}

/* Retailer tags — expensive/negative visual treatment */
.jewelry-hero-tag-retailer {
    background: rgb(255 255 255 / 42%);
    border: 1px solid rgb(228 228 228);
    box-shadow: 0 6px 24px rgb(211 47 47 / 0%);
    border-radius: 7px;
}

.jewelry-hero-tag-retailer .jewelry-hero-tag-label {
    color: #8a7a6e;
}

.jewelry-hero-tag-retailer .jewelry-hero-tag-price {
    color: #c62828;
    text-decoration: line-through;
    text-decoration-color: rgba(198, 40, 40, 0.35);
}

/* Individual tag positions + staggered float */
.jewelry-hero-tag-1 {
    top: 30%;
    right: -18%;
    animation-name: heroTagFloat1;
    animation-delay: 0s;
}

.jewelry-hero-tag-2 {
    top: 2%;
    right: 0%;
    animation-name: heroTagFloat2;
    animation-delay: 1s;
}

.jewelry-hero-tag-3 {
    bottom: 23%;
    right: -16%;
    animation-name: heroTagFloat3;
    animation-delay: 2s;
}

/* Best deal tag — positive green treatment */
.jewelry-hero-tag-best {
    bottom: 7%;
    left: -20%;
    background: rgb(255 255 255);
    border: 1px solid rgb(228 228 228);
    box-shadow: 0 12px 40px rgba(67, 160, 71, 0);
    padding: 14px 18px;
    min-width: 140px;
}

.jewelry-hero-tag-best .jewelry-hero-tag-label {
    color: var(--jewelry-text);
}

.jewelry-hero-tag-best .jewelry-hero-tag-price {
    font-size: 22px;
    color: #1a8f35;
}

.jewelry-hero-tag-save {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #1a8f35;
    margin-top: 2px;
}

.jewelry-hero-tag-save svg {
    flex-shrink: 0;
}

/* Float animations — subtle, staggered */
@keyframes heroTagFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(6px, -8px); }
}

@keyframes heroTagFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -10px); }
}

@keyframes heroTagFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, 5px); }
}

@keyframes heroTagBestPulse {
    0%, 100% {
        transform: translate(0, 0);
        box-shadow: 0 12px 40px rgba(67, 160, 71, 0.15), 0 0 0 4px rgba(67, 160, 71, 0.06);
    }
    50% {
        transform: translate(4px, -6px);
        box-shadow: 0 16px 48px rgba(67, 160, 71, 0.2), 0 0 0 6px rgba(67, 160, 71, 0.1);
    }
}

/* Connector lines SVG */
.jewelry-hero-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.jewelry-hero-line {
    stroke-dashoffset: 0;
    animation: heroLineDash 3s linear infinite;
}

@keyframes heroLineDash {
    to { stroke-dashoffset: -24; }
}

/* Progress dots */
.jewelry-hero-dots {
    position: absolute;
    bottom: -79px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.jewelry-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(134, 97, 74, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-hero-dot.active {
    background: var(--jewelry-primary);
    width: 22px;
    border-radius: 4px;
}

.jewelry-hero-dot:hover:not(.active) {
    background: rgba(134, 97, 74, 0.4);
}

.jewelry-btn {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--jewelry-transition);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    align-items: center;
    display: flex;
}

.jewelry-btn-primary {
    background: var(--jewelry-primary);
    color: var(--jewelry-white);
}

.jewelry-btn-primary:hover {
    background: #614535;
    transform: translateY(-2px);
    box-shadow: var(--jewelry-shadow-md);
}

.jewelry-btn-secondary {
    background: transparent;
    color: var(--jewelry-primary);
    border: 0px solid var(--jewelry-primary);
    text-decoration: underline;
}

.jewelry-btn-secondary:hover {
    /* background: var(--jewelry-primary); */
    color: #614535;
    /* opacity: 0.8; */
    /* text-decoration: unset; */
}

.jewelry-btn-light {
    background: var(--jewelry-white);
    color: var(--jewelry-primary);
}

.jewelry-btn-light:hover {
    background: var(--jewelry-bg-light);
}

/* Legacy hero image (replaced by hero visual) */

/* ============================================
   TRUST BAR
   ============================================ */
.jewelry-trust-bar {
    background: var(--jewelry-bg-light);
    padding: 32px 0;
    border-top: 1px solid var(--jewelry-border);
    border-bottom: 1px solid var(--jewelry-border);
    /* display: none; */
}

.jewelry-trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.jewelry-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jewelry-trust-icon {
    color: var(--jewelry-primary);
    flex-shrink: 0;
}

.jewelry-trust-text {
    display: flex;
    flex-direction: column;
}

.jewelry-trust-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--jewelry-text);
}

.jewelry-trust-text span {
    font-size: 12px;
    color: var(--jewelry-text-light);
}

/* ============================================
   TRUST LOGOS BAR (INFINITE SCROLL)
   ============================================ */
.jewelry-trust-logos-bar {
    background: var(--jewelry-white);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--jewelry-border);
}

.jewelry-logos-track {
    display: flex;
    width: fit-content;
    animation: scrollLogos 40s linear infinite;
    gap: 0px;
}

.jewelry-logos-slide {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0 17px;
}

.jewelry-company-logo {
    max-height: 15px;
    min-width: 106px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.jewelry-company-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.jewelry-trust-logos-bar:hover .jewelry-logos-track {
    animation-play-state: paused;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.jewelry-section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.jewelry-section-header h2 {
    font-family: var(--jewelry-font-heading);
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 12px 0;
    color: var(--jewelry-text);
}

.jewelry-section-header p {
    font-size: 16px;
    color: var(--jewelry-text-light);
    margin: 0;
}

.jewelry-view-all {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jewelry-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--jewelry-transition);
}

.jewelry-view-all:hover {
    text-decoration: underline;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.jewelry-categories {
    padding: 80px 0;
}

.jewelry-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0px;
}

.jewelry-category-card {
    text-decoration: none;
    display: block;
    border-radius: 0px;
    overflow: hidden;
    transition: var(--jewelry-transition);
    /* border-bottom: 1px solid var(--jewelry-border); */
}

.jewelry-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--jewelry-shadow-md);
}

.jewelry-category-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--jewelry-bg-light);
}

.jewelry-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--jewelry-transition);
}

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

.jewelry-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--jewelry-dark), transparent);
    padding: 24px;
    opacity: 0;
    transition: var(--jewelry-transition);
    height: 40px;
    display: flex;
    align-items: flex-end;
}

.jewelry-category-card:hover .jewelry-category-overlay {
    opacity: 1;
}

.jewelry-category-cta {
    color: var(--jewelry-white);
    font-weight: 500;
}

.jewelry-category-info {
    /* padding: 20px; */
    /* text-align: center; */
    /* border-right: 1px solid var(--jewelry-border); */
    /* border-bottom: 1px solid var(--jewelry-border); */
}

.jewelry-category-name {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: var(--jewelry-text);
}

.jewelry-category-count {
    font-size: 14px;
    color: var(--jewelry-text-light);
    margin: 0;
    display: none;
}

/* ============================================
   PRODUCT SECTIONS - Shared Header Styles
   ============================================ */

/* Shared eyebrow */
.jewelry-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--jewelry-accent);
    margin-bottom: 16px;
}

.jewelry-section-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--jewelry-accent);
    border-radius: 1px;
}

/* Shared title */
.jewelry-section-title {
    font-family: var(--jewelry-font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--jewelry-text);
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-align: left!important;
}

.jewelry-section-title em {
    font-style: italic;
    color: var(--jewelry-primary);
}

/* Shared description */
.jewelry-section-desc {
    font-size: 16px;
    color: var(--jewelry-text-light);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

/* Shared View All pill */
.jewelry-section-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--jewelry-primary);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(134, 97, 74, 0.2);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.jewelry-section-view-all:hover {
    background: var(--jewelry-primary);
    color: #fff;
    border-color: var(--jewelry-primary);
    box-shadow: 0 4px 16px rgba(134, 97, 74, 0.2);
}

.jewelry-section-view-all svg {
    transition: transform 0.3s ease;
}

.jewelry-section-view-all:hover svg {
    transform: translateX(3px);
}

/* --- Best Sellers Section --- */
.jewelry-best-sellers {
    padding: 0px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--jewelry-bg-light) 0%, #fff 100%);
}

.jewelry-best-sellers .jewelry-container {
    position: relative;
    z-index: 1;
}

.jewelry-bestseller-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.jewelry-bestseller-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
}

.jewelry-bestseller-orb-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2), transparent 70%);
    top: -100px;
    right: -60px;
}

.jewelry-bestseller-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(134, 97, 74, 0.12), transparent 70%);
    bottom: -80px;
    left: -80px;
}

.jewelry-bestseller-header,
.jewelry-arrivals-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

/* --- New Arrivals Section --- */
section.jewelry-new-arrivals {
    padding: 100px 0 80px;
    /* background: linear-gradient(180deg, #fff 0%, #f9f8f5 100%); */
}

/* ============================================
   SHOP BY BUDGET SECTION
   ============================================ */
.jewelry-shop-by-budget {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--jewelry-bg-light) 100%);
}

.jewelry-budget-header {
    margin-bottom: 32px;
}

.jewelry-budget-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
}

.jewelry-budget-tab {
    padding: 10px 28px;
    border-radius: 30px;
    border: 1.5px solid rgba(134, 97, 74, 0.15);
    background: rgba(255, 255, 255, 0.8);
    color: var(--jewelry-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--jewelry-font-primary);
    letter-spacing: 0.2px;
}

.jewelry-budget-tab:hover {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(252, 247, 241, 0.6);
    transform: translateY(-1px);
}

.jewelry-budget-tab.active {
    background: var(--jewelry-primary);
    color: white;
    border-color: var(--jewelry-primary);
    box-shadow: 0 4px 16px rgba(134, 97, 74, 0.25);
}

.jewelry-budget-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.jewelry-budget-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 4px;
    scroll-snap-type: x mandatory;
    flex: 1;
}

.jewelry-budget-carousel::-webkit-scrollbar {
    display: none;
}

.jewelry-budget-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(134, 97, 74, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--jewelry-text);
}

.jewelry-budget-arrow:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(134, 97, 74, 0.15);
    border-color: rgba(134, 97, 74, 0.2);
}

/* Budget carousel uses standard .jewelry-product-card */
.jewelry-budget-carousel .jewelry-product-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    min-width: 0;
}

.jewelry-budget-footer {
    margin-top: 28px;
    text-align: center;
}

@media (max-width: 768px) {
    .jewelry-shop-by-budget {
        padding: 48px 0;
    }
    .jewelry-shop-by-metal .jewelry-style-carousel-wrapper{
        display: none;
    }
    .jewelry-header-main .jewelry-wishlist-count{
        top: -9px;
    right: -18px;
    }

    .jewelry-budget-tabs {
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .jewelry-budget-tabs::-webkit-scrollbar {
        display: none;
    }

    .jewelry-budget-arrow {
        display: none;
    }

    .jewelry-budget-carousel .jewelry-product-card {
        flex: 0 0 calc(50% - 8px);
        min-width: 150px;
    }

    .jewelry-budget-header {
        margin-bottom: 16px;
    }

    .jewelry-budget-tabs {
        gap: 8px;
        justify-content: center;
    }

    .jewelry-budget-tab {
        font-size: 13px;
        padding: 8px 16px;
    }

    .jewelry-budget-footer {
        margin-top: 16px;
    }
}

/* Carousel Container */
.jewelry-product-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
}

/* Carousel Track */
.jewelry-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px;
    scroll-snap-type: x mandatory;
}

.jewelry-carousel-track::-webkit-scrollbar {
    display: none;
}

/* Carousel Arrows */
.jewelry-carousel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(134, 97, 74, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 2;
    color: var(--jewelry-primary);
    box-shadow: 0 2px 12px rgba(134, 97, 74, 0.08);
}

.jewelry-carousel-arrow:hover {
    background: var(--jewelry-primary);
    border-color: var(--jewelry-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(134, 97, 74, 0.2);
}

.jewelry-carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.jewelry-carousel-arrow:disabled,
.jewelry-carousel-arrow[style*="opacity: 0.3"] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Product Grid (for non-carousel sections) */
.jewelry-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

/* Product Cards in Carousel */
.jewelry-carousel-track .jewelry-product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 240px;
    max-width: 300px;
    scroll-snap-align: start;
}

/* Responsive carousel - show fewer cards on smaller screens */
@media (max-width: 1200px) {
    .jewelry-carousel-track .jewelry-product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 900px) {
    .jewelry-carousel-track .jewelry-product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .jewelry-carousel-track .jewelry-product-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 150px;
    }
}

.jewelry-product-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(134, 97, 74, 0.06);
    box-shadow: 0 2px 8px rgba(134, 97, 74, 0.04);
}

/* Card lift effect - DESKTOP ONLY */
@media (hover: hover) and (pointer: fine) {
    .jewelry-product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 36px rgba(134, 97, 74, 0.12);
        border-color: rgba(201, 169, 110, 0.2);
    }
}

/* Disable card lift on touch devices */
.touch-device .jewelry-product-card:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(134, 97, 74, 0.04) !important;
    border-color: rgba(134, 97, 74, 0.06) !important;
}

.jewelry-product-link {
    text-decoration: none;
    display: block;
}
.jewelry-product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--jewelry-bg-light);
    overflow: hidden;
}

.jewelry-related-products .jewelry-product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--jewelry-bg-light);
    overflow: hidden;
}

.jewelry-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Main image - visible by default */
.jewelry-product-img-main {
    position: relative;
    z-index: 1;
    /* Hide broken image icons and alt text */
    color: transparent;
    font-size: 0;
    background-color: #f5f5f5;
}

/* Hover image stack container - contains both model and second product image */
.jewelry-product-img-hover-stack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Individual hover images within the stack */
.jewelry-product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Hide broken image icons and alt text */
    color: transparent;
    font-size: 0;
    background-color: #f5f5f5;
}

/* Model image on top */
.jewelry-product-img-model {
    z-index: 2;
}

/* Second product image as fallback beneath */
.jewelry-product-img-second {
    z-index: 1;
}

/* On hover, hide main image and show hover stack */
/* DESKTOP ONLY - Disable hover effect on mobile/touch devices */
@media (hover: hover) and (pointer: fine) {
    .jewelry-product-card:hover .jewelry-product-img-main {
        opacity: 0;
    }

    .jewelry-product-card:hover .jewelry-product-img-hover-stack {
        opacity: 1;
    }

    .jewelry-product-card:hover .jewelry-product-img-hover {
        transform: scale(1.05);
    }

    /* Fallback for cards without hover images - just scale the main image */
    .jewelry-product-card:hover .jewelry-product-image:not(:has(.jewelry-product-img-hover-stack)) .jewelry-product-img-main {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Force disable hover effects on touch devices */
.touch-device .jewelry-product-card:hover .jewelry-product-img-main {
    opacity: 1 !important;
}

.touch-device .jewelry-product-card:hover .jewelry-product-img-hover-stack {
    opacity: 0 !important;
}

.touch-device .jewelry-product-card:hover .jewelry-product-img-hover {
    transform: none !important;
}

.jewelry-product-info {
    padding: 16px 18px 18px;
}

.jewelry-product-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--jewelry-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.1px;
}

.jewelry-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    display: none;
}

.jewelry-stars {
    display: flex;
    gap: 2px;
}

.jewelry-star {
    font-size: 14px;
}

.jewelry-star-full {
    color: #FFB800;
}

.jewelry-star-half {
    color: #FFB800;
    opacity: 0.5;
}

.jewelry-star-empty {
    color: #E5E5E5;
}

.jewelry-review-count {
    font-size: 13px;
    color: var(--jewelry-text-light);
}

/* Promo Tag */
.jewelry-promo-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--jewelry-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 10;
}

/* Product Specs Line */
.jewelry-product-specs {
    font-size: 12px;
    color: var(--jewelry-text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Price Row with Value Label */
.jewelry-product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.jewelry-product-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--jewelry-primary);
    letter-spacing: -0.3px;
}

/* Value Label Pill */
.jewelry-value-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 20px;
    position: relative;
}

/* Value Label Tiers */
.jewelry-value-tier-1 {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
}

.jewelry-value-tier-2 {
    background: rgba(134, 97, 74, 0.06);
    color: var(--jewelry-text-light);
}

.jewelry-value-tier-3 {
    background: rgba(134, 97, 74, 0.04);
    color: #9E9E9E;
    display: none;
}

/* ============================================
   WISHLIST BUTTON ON CARD
   ============================================ */
.jewelry-card-wishlist-btn {
    position: absolute;
    top: 7px;
    right: 11px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

/* Show wishlist button on card hover - DESKTOP ONLY */
@media (hover: hover) and (pointer: fine) {
    .jewelry-product-card:hover .jewelry-card-wishlist-btn {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* On mobile, always show wishlist button */
@media (hover: none) or (pointer: coarse) {
    .jewelry-card-wishlist-btn {
        opacity: 1;
        transform: scale(1);
    }
}

/* Force wishlist button visible on touch devices */
.touch-device .jewelry-card-wishlist-btn {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.jewelry-card-wishlist-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 4px 12px rgba(134, 97, 74, 0.15);
    transform: scale(1.1);
}

.jewelry-card-wishlist-btn:active {
    transform: scale(0.95);
}

/* Wishlist icon states */
.jewelry-wishlist-icon {
    color: var(--jewelry-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-wishlist-outline {
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-wishlist-fill {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* In wishlist state */
.jewelry-card-wishlist-btn.in-wishlist {
    opacity: 1;
    transform: scale(1);
    background: rgba(226, 85, 85, 0.1);
    border-color: unset;
}

.jewelry-card-wishlist-btn.in-wishlist .jewelry-wishlist-icon {
    color: #e25555;
}

.jewelry-card-wishlist-btn.in-wishlist .jewelry-wishlist-outline {
    opacity: 0;
}

.jewelry-card-wishlist-btn.in-wishlist .jewelry-wishlist-fill {
    opacity: 1;
}

.jewelry-card-wishlist-btn.in-wishlist:hover {
    background: rgba(226, 85, 85, 0.15);
    border-color: rgba(226, 85, 85, 0.3);
}

/* Just added animation - heartbeat pulse */
.jewelry-card-wishlist-btn.just-added {
    animation: wishlistHeartbeat 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes wishlistHeartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.25);
    }
}

/* Mobile: Always show wishlist button */
@media (max-width: 768px) {
    .jewelry-card-wishlist-btn {
        opacity: 1;
        transform: scale(1);
    }
}

.jewelry-loading,
.jewelry-no-products,
.jewelry-error {
    text-align: center;
    padding: 40px;
    color: var(--jewelry-text-light);
    grid-column: 1 / -1;
}

/* ============================================
   SKELETON LOADING CARDS
   ============================================ */

.jewelry-skeleton-card {
    pointer-events: none;
    cursor: default;
}

.jewelry-skeleton-card:hover {
    transform: none;
    box-shadow: none;
}

/* Product Grid Fade-In Animation */
.jewelry-product-grid,
.jewelry-product-carousel {
    /* opacity: 0; */
    transition: opacity 0.6s ease;
}

.jewelry-product-grid.loaded,
.jewelry-product-carousel.loaded {
    opacity: 1;
}

.jewelry-skeleton-image {
    background: rgba(134, 97, 74, 0.04);
    height: 300px;
    position: relative;
    overflow: hidden;
}

.jewelry-skeleton-category,
.jewelry-skeleton-title,
.jewelry-skeleton-specs,
.jewelry-skeleton-price {
    background: rgba(134, 97, 74, 0.04);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.jewelry-skeleton-category {
    height: 14px;
    width: 40%;
    margin-bottom: 8px;
}

.jewelry-skeleton-title {
    height: 20px;
    margin-bottom: 12px;
}

.jewelry-skeleton-specs {
    height: 16px;
    width: 70%;
    margin-bottom: 12px;
}

.jewelry-skeleton-price {
    height: 24px;
    width: 50%;
}

/* Shimmer animation */
.jewelry-skeleton-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ============================================
   FEATURED BANNER
   ============================================ */
.jewelry-featured-banner {
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-primary) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--jewelry-white);
}

.jewelry-featured-content h2 {
    font-family: var(--jewelry-font-heading);
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 16px 0;
}

.jewelry-featured-content p {
    font-size: 18px;
    margin: 0 0 32px 0;
    opacity: 0.9;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.jewelry-why-choose {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--jewelry-bg-light) 0%, #fff 100%);
}

.jewelry-why-choose .jewelry-container {
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .jewelry-nav-desktop {
        display: none;
    }

    .jewelry-mobile-menu-toggle {
        display: flex;
    }

    .jewelry-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 40px 24px;
        min-height: 480px;
    }

    .jewelry-hero-title {
        font-size: 38px;
    }

    .jewelry-hero-ring-card {
        width: 160px;
        height: 160px;
    }

    .jewelry-hero-price-tag {
        padding: 10px 14px;
        min-width: 95px;
    }

    .jewelry-hero-tag-price {
        font-size: 16px;
    }

    .jewelry-hero-tag-best .jewelry-hero-tag-price {
        font-size: 19px;
    }

    .jewelry-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .jewelry-why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 32px;
    }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.jewelry-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--jewelry-white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.jewelry-mobile-menu.active {
    right: 0;
}

.jewelry-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.jewelry-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.jewelry-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--jewelry-border);
}

.jewelry-mobile-menu-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--jewelry-text);
}

.jewelry-mobile-menu-nav {
    padding: 20px 10px;
}

.jewelry-mobile-nav-item {
    /* border-bottom: 1px solid var(--jewelry-border); */
    margin-bottom: 8px;
}

/* Mobile nav header (contains link + toggle button) */
.jewelry-mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--jewelry-white);
    border-radius: 8px;
    border: 1px solid rgba(134, 97, 74, 0.08);
    transition: all 0.3s ease;
}

.jewelry-mobile-nav-header:hover {
    background: rgba(252, 247, 241, 0.5);
    border-color: rgba(201, 169, 110, 0.2);
}

.jewelry-mobile-nav-link {
    flex: 1;
    padding: 16px 20px;
    color: var(--jewelry-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Submenu toggle button */
.jewelry-mobile-submenu-toggle {
    background: none;
    border: none;
    padding: 16px;
    cursor: pointer;
    color: var(--jewelry-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.jewelry-mobile-has-submenu.active .jewelry-mobile-submenu-toggle {
    transform: rotate(180deg);
}

.jewelry-mobile-submenu-toggle svg {
    transition: transform 0.3s ease;
}

/* Submenu container */
.jewelry-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(252, 247, 241, 0.3);
    border-radius: 0 0 8px 8px;
    margin-top: -1px;
}

.jewelry-mobile-has-submenu.active .jewelry-mobile-submenu {
    max-height: 800px;
    padding: 12px 0;
}

/* Submenu sections */
.jewelry-mobile-submenu-section {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(134, 97, 74, 0.06);
}

.jewelry-mobile-submenu-section:last-child {
    border-bottom: none;
}

.jewelry-mobile-submenu-section h5 {
    font-family: var(--jewelry-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--jewelry-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.jewelry-mobile-submenu-section a {
    display: block;
    padding: 8px 12px;
    color: var(--jewelry-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.jewelry-mobile-submenu-section a:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--jewelry-primary);
    padding-left: 16px;
}

.jewelry-mobile-nav-toggle {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--jewelry-text-light);
}
 

.jewelry-mobile-submenu.active {
    max-height: 500px;
}

.jewelry-mobile-submenu-item {
    padding: 12px 20px 12px 40px;
    display: block;
    color: var(--jewelry-text);
    text-decoration: none;
    font-size: 14px;
}

.jewelry-mobile-submenu-item:hover {
    background: rgba(134, 97, 74, 0.05);
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll on all pages */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    html {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .jewelry-nav-desktop {
        display: none;
    }

    .jewelry-mobile-menu-toggle {
        display: flex !important;
    }

    .jewelry-container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }
    .jewelry-shop-by-metal .jewelry-container {
        padding:0 16px 28px 16px;
    }

    .jewelry-hero {
        min-height: auto;
        min-height: 560px;
        height: 614px;
    }

    .jewelry-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 20px 16px 32px;
        min-height: auto;
        flex-direction: column-reverse;
        display: flex;
    }

    .jewelry-hero-text {
        top: auto;
    }

    .jewelry-hero-eyebrow {
        justify-content: center;
        display: none;
    }

    .jewelry-hero-title {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .jewelry-hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .jewelry-hero-cta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
        align-items: center;
    }

    .jewelry-btn-hero-primary,
    .jewelry-btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .jewelry-hero-trust-row {
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .jewelry-hero-trust-item {
        font-size: 11px;
    }

    .jewelry-hero-trust-item span {
        font-size: 10px;
    }

    .jewelry-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Hero image — contain within bounds on mobile */
    .jewelry-hero .jewelry-hero-image {
        /* display: flex; */
        /* justify-content: center; */
        /* align-items: center; */
        /* max-height: 320px; */
        /* overflow: hidden; */
        /* height: auto !important; */
    }

    .jewelry-hero .jewelry-hero-image img {
        /* position: relative !important; */
        /* left: 0; */
        /* bottom: 0; */
        /* max-height: 320px; */
        /* width: auto; */
        /* height: auto; */
        /* max-width: 100%; */
        /* object-fit: contain; */
    }

    /* Hero visual — shrink for mobile */
    .jewelry-hero-visual {
        margin: 0 auto;
        max-width: 340px;
    }

    .jewelry-hero-ring-card {
        width: 130px;
        height: 130px;
    }

    .jewelry-hero-price-tag {
        padding: 8px 12px;
        min-width: 85px;
        border-radius: 10px;
    }

    .jewelry-hero-tag-label {
        font-size: 8px;
        letter-spacing: 0.8px;
    }

    .jewelry-hero-tag-price {
        font-size: 14px;
    }

    .jewelry-hero-tag-best {
        padding: 10px 14px;
        min-width: 115px;
    }

    .jewelry-hero-tag-best .jewelry-hero-tag-price {
        font-size: 17px;
    }

    .jewelry-hero-tag-save {
        font-size: 10px;
    }

    .jewelry-hero-connectors {
        display: none;
    }

    .jewelry-hero-dots {
        bottom: -8px;
    }

    .jewelry-hero-dot {
        width: 6px;
        height: 6px;
    }

    .jewelry-hero-dot.active {
        width: 18px;
    }

    .jewelry-section-header h2 {
        font-size: 32px;
    }

    .jewelry-section-title {
        font-size: 30px;
    }

    .jewelry-section-desc {
        font-size: 14px;
    }

    .jewelry-bestseller-header,
    .jewelry-arrivals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .jewelry-best-sellers,
    section.jewelry-new-arrivals {
        padding: 72px 0 56px;
    }

    .jewelry-view-all {
        position: static;
        transform: none;
        display: block;
        margin-top: 16px;
    }

    .jewelry-trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .jewelry-trust-item {
        flex-direction: column;
        text-align: center;
    }

    .jewelry-trust-logos-bar {
        padding: 24px 0;
    }

    .jewelry-logos-slide {
        gap: 60px;
        padding: 0 30px;
    }

    .jewelry-company-logo {
        height: 32px;
    }

    .jewelry-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Hide category count on mobile */
    .jewelry-category-count {
        display: none;
    }

    /* Adjust category card for mobile */
    .jewelry-category-card {
        min-height: auto;
    }

    .jewelry-category-image {
        height: 140px;
    }

    .jewelry-category-name {
        font-size: 14px;
    }

    /* Product Grid - 2 columns */
    .jewelry-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Product Carousel - Swipeable with 2 items visible */
    .jewelry-product-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding-bottom: 12px;
    }

    .jewelry-product-carousel::-webkit-scrollbar {
        display: none;
    }
    .jewelry-carousel-track {
        gap: 12px;
    }

    .jewelry-product-carousel .jewelry-product-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
        scroll-snap-align: start;
    }

    .jewelry-product-card {
        min-width: auto;
        border-radius: 12px;
    }

    .jewelry-product-image {
        height: auto;
        aspect-ratio: 1;
    }

    .jewelry-product-info {
        padding: 12px 14px 14px;
    }

    .jewelry-product-title {
        font-size: 12px;
        line-height: 1.3;
    }

    .jewelry-product-price {
        font-size: 14px;
    }

    .jewelry-product-specs {
        font-size: 11px;
        margin-bottom: 4px;
    }

    /* Hide carousel arrows on mobile */
    .jewelry-carousel-arrow {
        display: none;
    }

    /* Carousel indicators */
    .jewelry-carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .jewelry-carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--jewelry-border);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .jewelry-carousel-indicator.active {
        background: var(--jewelry-primary);
        width: 24px;
        border-radius: 4px;
    }

    .jewelry-featured-content h2 {
        font-size: 32px;
    }

    .jewelry-featured-content p {
        font-size: 16px;
    }

    /* Make featured banner responsive */
    .jewelry-featured-banner {
        padding: 40px 20px;
    }

    .jewelry-featured-content {
        max-width: 100%;
        text-align: center;
    }

    .jewelry-why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .jewelry-hero-title {
        font-size: 26px;
    }

    .jewelry-hero .jewelry-hero-image {
        /* height: 260px; */
        /* max-height: unset; */
    }

    .jewelry-hero .jewelry-hero-image img {
    position: relative;
    left: unset;
    bottom: unset;
    top: unset;
    /* max-height: 109%; */
    max-width: unset;
    max-height: unset;
    width: 260px;
    height: unset;
    }

    .jewelry-hero-visual {
        max-width: 300px;
    }

    .jewelry-hero-ring-card {
        width: 110px;
        height: 110px;
    }

    .jewelry-hero-price-tag {
        padding: 6px 10px;
        min-width: 75px;
        border-radius: 8px;
    }

    .jewelry-hero-tag-price {
        font-size: 13px;
    }

    .jewelry-hero-tag-best {
        padding: 8px 12px;
        min-width: 100px;
    }

    .jewelry-hero-tag-best .jewelry-hero-tag-price {
        font-size: 15px;
    }

    .jewelry-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .jewelry-category-image {
        height: 110px;
        border-radius: 5px;
    }

    .jewelry-category-name {
        font-size: 12px;
    }

    .jewelry-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .jewelry-trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Keep product carousel as horizontal scroll, not grid */
    .jewelry-product-carousel .jewelry-product-card {
        flex: 0 0 calc(50% - 6px);
        min-width: calc(50% - 6px);
    }
}

/* ============================================
   SHOP BY STYLE SECTION
   ============================================ */
/* --- Section Container --- */
.jewelry-shop-by-style {
    padding: 0px 0 80px;
    /* background: linear-gradient(180deg, var(--jewelry-bg-light) 0%, #fff 100%); */
    position: relative;
    overflow: hidden;
}

.jewelry-shop-by-style .jewelry-container {
    position: relative;
    z-index: 1;
}

/* --- Background Orbs --- */
.jewelry-style-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.jewelry-style-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
}

.jewelry-style-orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2), transparent 70%);
    top: -120px;
    left: -80px;
    animation: styleOrbFloat 14s ease-in-out infinite;
}

.jewelry-style-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(134, 97, 74, 0.12), transparent 70%);
    bottom: -100px;
    right: -60px;
    animation: styleOrbFloat 18s ease-in-out infinite reverse;
}

@keyframes styleOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -15px) scale(1.04); }
    66% { transform: translate(-10px, 10px) scale(0.96); }
}

/* --- Branded Header --- */
.jewelry-style-header {
    margin-bottom: 40px;
}

.jewelry-style-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--jewelry-accent);
    margin-bottom: 16px;
}

.jewelry-style-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--jewelry-accent);
    border-radius: 1px;
}

.jewelry-style-heading {
    font-family: var(--jewelry-font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--jewelry-text);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.jewelry-style-heading em {
    font-style: italic;
    color: var(--jewelry-primary);
}

.jewelry-style-desc {
    font-size: 16px;
    color: var(--jewelry-text-light);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

/* --- Category Tabs --- */
.jewelry-style-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.jewelry-style-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 10px;
    border-radius: 48px;
    border: 1px solid rgba(134, 97, 74, 0.12);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 600;
    color: var(--jewelry-text-light);
    font-family: var(--jewelry-font-primary);
    white-space: nowrap;
}

.jewelry-style-tab:hover {
    border-color: rgba(134, 97, 74, 0.25);
    background: rgba(255, 255, 255, 0.9);
    color: var(--jewelry-text);
}

.jewelry-style-tab.active {
    background: var(--jewelry-primary);
    border-color: var(--jewelry-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(134, 97, 74, 0.25);
}

.jewelry-style-tab-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: border-color 0.3s ease;
}

.jewelry-style-tab.active .jewelry-style-tab-img {
    border-color: rgba(255, 255, 255, 0.9);
}

/* --- Panels --- */
.jewelry-style-panels {
    position: relative;
}

.jewelry-style-panel {
    display: none;
}

.jewelry-style-panel.active {
    display: block;
    animation: stylePanelFadeIn 0.35s ease-out;
}

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

/* --- Carousel Wrapper --- */
.jewelry-style-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(134, 97, 74, 0.06);
    padding: 24px 0;
}

/* --- Carousel (horizontal scroll, NO auto-scroll) --- */
.jewelry-style-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 48px;
    animation: none;
}

.jewelry-style-carousel::-webkit-scrollbar {
    display: none;
}

/* --- Metal Unified Carousel (auto-scroll like trust logos) --- */
.jewelry-metal-unified-carousel {
    gap: 20px;
    overflow-x: visible !important;
    width: fit-content;
    animation: scrollMetalUnified 60s linear infinite;
    padding: 8px 0;
}

@keyframes scrollMetalUnified {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.jewelry-style-carousel-wrapper:hover .jewelry-metal-unified-carousel {
    animation-play-state: paused;
}

/* Hide arrows and fade edges for auto-scroll carousel */
.jewelry-style-carousel-wrapper:has(.jewelry-metal-unified-carousel) .jewelry-style-arrow {
    display: none;
}

.jewelry-style-carousel-wrapper:has(.jewelry-metal-unified-carousel) .jewelry-style-fade {
    display: none;
}

/* --- Gradient Fade Edges --- */
.jewelry-style-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}

.jewelry-style-fade-left {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, transparent 100%);
}

.jewelry-style-fade-right {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.85) 0%, transparent 100%);
}

/* --- Arrow Buttons --- */
.jewelry-style-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(134, 97, 74, 0.15);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--jewelry-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(134, 97, 74, 0.1);
}

.jewelry-style-arrow:hover {
    background: var(--jewelry-primary);
    color: #fff;
    border-color: var(--jewelry-primary);
    box-shadow: 0 4px 20px rgba(134, 97, 74, 0.25);
}

.jewelry-style-arrow-left {
    left: 8px;
}

.jewelry-style-arrow-right {
    right: 8px;
}

/* --- Style Items (cards) --- */
.jewelry-style-item {
    flex: 0 0 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.jewelry-style-item:hover {
    transform: translateY(-6px);
}

.jewelry-style-item-image {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--jewelry-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(134, 97, 74, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(134, 97, 74, 0.06);
    position: relative;
}

.jewelry-style-item:hover .jewelry-style-item-image {
    box-shadow: 0 8px 28px rgba(134, 97, 74, 0.14);
    border-color: rgba(201, 169, 110, 0.3);
}

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

.jewelry-style-item:hover .jewelry-style-item-image img {
    transform: scale(1.05);
}

.jewelry-style-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--jewelry-text);
    text-align: center;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

/* --- Panel Footer / View All --- */
.jewelry-style-panel-footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.jewelry-style-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--jewelry-primary);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(134, 97, 74, 0.2);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.jewelry-style-view-all:hover {
    background: var(--jewelry-primary);
    color: #fff;
    border-color: var(--jewelry-primary);
    box-shadow: 0 4px 16px rgba(134, 97, 74, 0.2);
}

.jewelry-style-view-all svg {
    transition: transform 0.3s ease;
}

.jewelry-style-view-all:hover svg {
    transform: translateX(3px);
}

/* --- Skeleton Loader --- */
.jewelry-style-skeleton {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.jewelry-style-skeleton-image {
    width: 180px;
    height: 180px;
    background: linear-gradient(90deg, rgba(134,97,74,0.04) 25%, rgba(134,97,74,0.08) 50%, rgba(134,97,74,0.04) 75%);
    background-size: 200% 100%;
    animation: jewelry-skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 16px;
}

.jewelry-style-skeleton-name {
    width: 100px;
    height: 16px;
    background: linear-gradient(90deg, rgba(134,97,74,0.04) 25%, rgba(134,97,74,0.08) 50%, rgba(134,97,74,0.04) 75%);
    background-size: 200% 100%;
    animation: jewelry-skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

/* --- Shop by Style Responsive --- */
@media (max-width: 1024px) {
    .jewelry-style-heading {
        font-size: 36px;
    }

    .jewelry-style-tabs {
        gap: 6px;
    }

    .jewelry-style-tab {
        padding: 8px 16px 8px 8px;
        font-size: 13px;
    }

    .jewelry-style-tab-img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .jewelry-shop-by-style {
        padding: 72px 0 60px;
    }

    .jewelry-style-heading {
        font-size: 30px;
    }

    .jewelry-style-desc {
        font-size: 14px;
    }

    .jewelry-style-tabs {
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
    }

    .jewelry-style-tabs::-webkit-scrollbar {
        display: none;
    }

    .jewelry-style-item {
        flex: 0 0 150px;
    }

    .jewelry-style-item-image {
        width: 150px;
        height: 150px;
    }

    .jewelry-style-carousel {
        padding: 8px 32px;
        gap: 14px;
    }

    .jewelry-style-arrow {
        width: 34px;
        height: 34px;
    }

    .jewelry-style-skeleton {
        flex: 0 0 150px;
    }

    .jewelry-style-skeleton-image {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   SHOP BY DIAMOND SHAPE SECTION
   ============================================ */
.jewelry-shop-by-shape {
    padding: 80px 0;
    background: #f9f9f9;
}

.jewelry-shape-selector {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.jewelry-shape-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    top: 60px;
}

.jewelry-shape-title {
    font-family: var(--jewelry-font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--jewelry-text);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.jewelry-shape-subtitle {
    font-size: 14px;
    color: var(--jewelry-text-light);
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.jewelry-shape-ring-display {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--jewelry-white); */
    border-radius: 16px;
    padding: 60px;
    padding-top:0px;
}

.jewelry-shape-ring-display img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.jewelry-shape-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.jewelry-shape-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 13px;
    background: transparent;
    border: 0px solid var(--jewelry-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--jewelry-transition);
    justify-content: center;
}

.jewelry-shape-item:hover {
    border-color: var(--jewelry-primary);
    background: transparent;
    transform: translateY(-4px);
    box-shadow: var(--jewelry-shadow-md);
}

.jewelry-shape-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
    transform: rotate(90deg);
}

.jewelry-shape-item span {
    font-size: 14px;
    font-weight: 300;
    color: var(--jewelry-text);
    text-align: center;
}

.jewelry-shape-item:hover span {
    color: var(--jewelry-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .jewelry-shape-selector {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jewelry-shape-title {
        font-size: 32px;
        text-align: center;
    }

    .jewelry-shape-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .jewelry-shape-ring-display {
        min-height: 300px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .jewelry-shop-by-shape {
        padding: 68px 0;
    }

    .jewelry-shape-left {
        top: 0;
        text-align: center;
        align-items: center;
    }

    .jewelry-shape-subtitle {
        text-align: center;
    }

    .jewelry-shape-title {
        font-size: 28px;
        text-align: center;
    }

    .jewelry-shape-ring-display {
        min-height: auto;
        padding: 16px;
    }

    .jewelry-shape-ring-display img {
        max-height: 150px;
    }

    .jewelry-shape-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .jewelry-shape-item {
        padding: 17px 4px;
        gap: 17px;
        /* border: 1px solid #87614b; */
    }

    .jewelry-shape-item img {
        width: 42px;
        height: 42px;
    }

    .jewelry-shape-item span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .jewelry-shape-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .jewelry-shape-item img {
        width: 100%;
        height: unset;
        max-height: 100%;
    }

    .jewelry-shape-item span {
        font-size: 15px;
        font-weight: 600;
    }

    .jewelry-shape-ring-display {
        padding: 12px;
    }

    .jewelry-shape-ring-display img {
        max-height: 120px;
    }
}


.mainStructure {
    /* background: var(--jewelry-bg-light); */
}
/* Legacy hero-image removed — replaced by hero-visual */
.jewelry-logo-text path,.jewelry-logo-text d {
    fill: #87614b;
}
.jewelry-wishlist-icon svg path {
    stroke-width: 6px;
}

/* Wishlist Count Badge */
.jewelry-wishlist-count {
    position: absolute;
    top: -8px;
    right: -13px;
    background: #87614b;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    /* display: none; */
    align-items: center;
    justify-content: center;
    padding: 0 0px;
    line-height: 1;
    z-index: 10;
    display: flex;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.jewelry-breadcrumbs {
    background: var(--jewelry-bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--jewelry-border);
}

.jewelry-breadcrumb-list {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.jewelry-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jewelry-breadcrumb-item a {
    color: var(--jewelry-text-light);
    text-decoration: none;
    transition: var(--jewelry-transition);
}

.jewelry-breadcrumb-item a:hover {
    color: var(--jewelry-primary);
    text-decoration: underline;
}

.jewelry-breadcrumb-item.current span {
    color: var(--jewelry-text);
    font-weight: 600;
}

.jewelry-breadcrumb-separator {
    color: var(--jewelry-text-light);
    user-select: none;
}
/* ============================================
   LOADING STATE
   ============================================ */
.jewelry-loading {
    text-align: center;
    padding: 60px 20px;
}

.jewelry-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #F0F0F0;
    border-top-color: var(--jewelry-dark);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.jewelry-loading p {
    color: #666;
    font-size: 1.1rem;
}
/* Toast Notification System */
.jewelry-toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.jewelry-toast {
    background: var(--jewelry-white);
    color: var(--jewelry-text);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    animation: toastSlideIn 0.3s ease;
    border-left: 4px solid var(--jewelry-primary);
}

.jewelry-toast.success {
    border-left-color: #22c55e;
}

.jewelry-toast.error {
    border-left-color: #ef4444;
}

.jewelry-toast.info {
    border-left-color: var(--jewelry-primary);
}

.jewelry-toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.jewelry-toast.success .jewelry-toast-icon {
    color: #22c55e;
}

.jewelry-toast.error .jewelry-toast-icon {
    color: #ef4444;
}

.jewelry-toast.info .jewelry-toast-icon {
    color: var(--jewelry-primary);
}

.jewelry-toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.jewelry-toast.hiding {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastSlideOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .jewelry-toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        display:none!important;
    }

    .jewelry-toast {
        min-width: auto;
        max-width: none;
    }
}
.jewelry-logo a {
    outline: unset;
}

/* ============================================
   GLOBAL: GLASSMORPHISM & 3D EFFECTS
   ============================================ */

/* Glassmorphic Card Base */
.jewelry-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Card Glare Effect */
.jewelry-card-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.jewelry-tilt-card:hover .jewelry-card-glare {
    opacity: 1;
}

/* Section Eyebrow */
.jewelry-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--jewelry-primary);
    margin-bottom: 12px;
    letter-spacing: 2px;
    color: var(--jewelry-accent);
}

.jewelry-section-eyebrow::before {
    /* content: ''; */
    /* width: 24px; */
    /* height: 2px; */
    /* background: var(--jewelry-accent); */
}

/* ============================================
   TRANSPARENCY SECTION - Premium Redesign
   ============================================ */
.jewelry-transparency-section {
    position: relative;
    padding: 120px 0;
    overflow: clip;
    background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%);
    z-index: 5;
    display: none;
}

/* Animated Gradient Orbs Background */
.jewelry-transparency-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.jewelry-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrb 20s ease-in-out infinite;
}

.jewelry-gradient-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.4) 0%, rgba(134, 97, 74, 0.2) 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.jewelry-gradient-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(134, 97, 74, 0.3) 0%, rgba(201, 169, 110, 0.2) 100%);
    bottom: -50px;
    right: 10%;
    animation-delay: -7s;
}

.jewelry-gradient-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    top: 50%;
    right: -50px;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Floating Particles */
.jewelry-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.jewelry-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--jewelry-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 15s ease-in-out infinite;
}

.jewelry-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.jewelry-particle:nth-child(2) { left: 20%; top: 80%; animation-delay: -2s; }
.jewelry-particle:nth-child(3) { left: 60%; top: 30%; animation-delay: -4s; }
.jewelry-particle:nth-child(4) { left: 80%; top: 70%; animation-delay: -6s; }
.jewelry-particle:nth-child(5) { left: 40%; top: 50%; animation-delay: -8s; }
.jewelry-particle:nth-child(6) { left: 90%; top: 20%; animation-delay: -10s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.3; }
}

/* Section Header (centered above calculator) */
.jewelry-calc-section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
}

.jewelry-calc-section-header .jewelry-transparency-eyebrow {
    justify-content: center;
}

.jewelry-calc-section-header .jewelry-transparency-description {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Horizontal Calculator Layout */
.jewelry-calc-horizontal {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    align-items: stretch;
}

.jewelry-calc-controls {
    padding-right: 28px;
    border-right: 1px solid rgba(134, 97, 74, 0.08);
}

.jewelry-calc-row {
    margin-bottom: 16px;
}

.jewelry-calc-row:last-child {
    margin-bottom: 0;
}

.jewelry-calc-row-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.jewelry-calc-row-2col .jewelry-calc-section {
    margin-bottom: 0;
}

/* Compact category options for horizontal layout */
.jewelry-calc-options-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.jewelry-calc-options-compact .jewelry-calc-option {
    padding: 4px 4px 6px;
}

.jewelry-calc-options-compact .jewelry-calc-option img {
    width: 100%;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
}

.jewelry-calc-options-compact .jewelry-calc-option span {
    font-size: 10px;
}

/* Compact carat presets */
.jewelry-calc-presets-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.jewelry-calc-presets-compact .jewelry-calc-range-btn {
    padding: 6px 10px;
    font-size: 12px;
    flex: 0 0 auto;
}

.jewelry-calc-presets-compact .jewelry-carat-preset-range {
    font-size: 11px;
}

.jewelry-calc-presets-compact .jewelry-carat-preset-desc {
    display: none;
}

/* Compact metal options */
.jewelry-calc-metal-compact {
    display: flex;
    gap: 8px;
}

.jewelry-calc-metal-compact .jewelry-calc-metal {
    flex: 1;
    padding: 8px 10px;
}

/* Results panel (right side) */
.jewelry-calc-results-panel {
    padding-left: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jewelry-calc-results-panel .jewelry-calc-results {
    margin-top: 0;
}

.jewelry-calc-results-panel .jewelry-calc-view-all {
    margin-top: 16px;
}

/* Stats row below calculator */
.jewelry-transparency-section .jewelry-stats-row {
    position: relative;
    z-index: 1;
    margin-top: 32px;
}

/* Legacy grid (no longer used, keep for compat) */
.jewelry-transparency-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.jewelry-transparency-content {
    position: sticky;
    top: 100px;
}

/* Glassmorphic Price Breakdown Card */
.jewelry-price-breakdown-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(134, 97, 74, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jewelry-price-breakdown-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(134, 97, 74, 0.2);
}

.jewelry-breakdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(134, 97, 74, 0.1);
}

.jewelry-breakdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--jewelry-text);
}

.jewelry-diamond-icon {
    font-size: 18px;
    color: var(--jewelry-accent);
}

.jewelry-breakdown-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jewelry-live-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Price Bars */
.jewelry-price-bar {
    position: relative;
    height: 56px;
    background: var(--jewelry-bg-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.jewelry-price-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 8px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-price-bar-fill.animated {
    width: var(--bar-width, 0);
}

.jewelry-price-retail .jewelry-price-bar-fill {
    background: linear-gradient(90deg, #E0E0E0 0%, #BDBDBD 100%);
}

.jewelry-price-fair .jewelry-price-bar-fill {
    background: linear-gradient(90deg, var(--jewelry-accent) 0%, var(--jewelry-primary) 100%);
}

.jewelry-price-bar-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.jewelry-price-bar-label {
    font-size: 14px;
    color: var(--jewelry-text-light);
}

.jewelry-price-bar-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--jewelry-text);
}

.jewelry-price-highlight {
    color: var(--jewelry-primary);
}

/* Savings Indicator */
.jewelry-savings-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}

.jewelry-savings-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(76, 175, 80, 0.3) 50%, transparent 100%);
}

.jewelry-savings-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(76, 175, 80, 0.5); }
}

.jewelry-savings-arrow {
    width: 24px;
    height: 48px;
    color: #4CAF50;
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.jewelry-savings-amount {
    font-size: 18px;
    font-weight: 700;
    color: #4CAF50;
}

/* Breakdown Details */
.jewelry-breakdown-details {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(134, 97, 74, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.jewelry-breakdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--jewelry-text-light);
}

.jewelry-breakdown-item strong {
    color: var(--jewelry-text);
}

.jewelry-breakdown-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

/* Animated Stats - Glassmorphic */
.jewelry-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.jewelry-glass-stat {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jewelry-glass-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(134, 97, 74, 0.15);
}

.jewelry-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--jewelry-primary);
    line-height: 1;
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jewelry-stat-label {
    display: block;
    font-size: 12px;
    color: var(--jewelry-text-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Side */
.jewelry-transparency-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--jewelry-primary);
    margin-bottom: 16px;
}

.jewelry-eyebrow-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--jewelry-accent) 0%, var(--jewelry-primary) 100%);
}

.jewelry-transparency-title {
    font-family: var(--jewelry-font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--jewelry-text);
    margin: 0 0 24px 0;
}

.jewelry-transparency-title em {
    font-style: normal;
    color: var(--jewelry-primary);
    font-weight: 600;
}

.jewelry-transparency-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--jewelry-text-light);
    margin: 0 0 32px 0;
}

.jewelry-transparency-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.jewelry-transparency-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 16px;
    color: var(--jewelry-text);
    border-bottom: 1px solid rgba(134, 97, 74, 0.08);
}

.jewelry-transparency-features li:last-child {
    border-bottom: none;
}

.jewelry-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 30px;
    /* background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%); */
    border-radius: 12px;
    color: #4CAF50;
    flex-shrink: 0;
}

.jewelry-check-icon {
    width: 24px;
    height: 24px;
    color: #4CAF50;
    flex-shrink: 0;
}

.jewelry-btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
}

.jewelry-btn-glow {
    box-shadow: 0 4px 20px rgba(134, 97, 74, 0.3);
    transition: all 0.3s ease;
}

.jewelry-btn-glow:hover {
    box-shadow: 0 6px 30px rgba(134, 97, 74, 0.4);
    transform: translateY(-2px);
}

.jewelry-btn-arrow {
    transition: transform 0.3s ease;
}

.jewelry-btn:hover .jewelry-btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   PRICING CALCULATOR (Transparency Section)
   ============================================ */
.jewelry-price-calculator-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 12px 40px rgba(134, 97, 74, 0.12), 0 0 0 1px rgba(134, 97, 74, 0.06);
    border: none;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.jewelry-calculator-header {
    margin-bottom: 24px;
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(134, 97, 74, 0.08);
}

.jewelry-calculator-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--jewelry-text);
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jewelry-calculator-title svg {
    color: var(--jewelry-primary);
    opacity: 0.7;
}

.jewelry-calculator-subtitle {
    font-size: 13px;
    color: var(--jewelry-text-light);
    margin: 0;
}

.jewelry-calc-section {
    margin-bottom: 20px;
}

.jewelry-calc-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--jewelry-text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Diamond Type Toggle */
.jewelry-calc-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.jewelry-calc-type-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(134, 97, 74, 0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.jewelry-calc-type-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--jewelry-accent);
}

.jewelry-calc-type-btn.active {
    background: rgba(134, 97, 74, 0.08);
    border-color: var(--jewelry-primary);
}

.jewelry-calc-type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--jewelry-text-light);
    transition: color 0.25s ease;
}

.jewelry-calc-type-btn.active .jewelry-calc-type-icon {
    color: var(--jewelry-primary);
}

.jewelry-calc-type-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--jewelry-text);
}

.jewelry-calc-type-btn.active .jewelry-calc-type-label {
    color: var(--jewelry-primary);
}

/* Category & Style Options */
.jewelry-calc-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.jewelry-calc-options-scrollable {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 4px 2px;
    height: 137px;
}

.jewelry-calc-options-scrollable::-webkit-scrollbar {
    display: none;
}

.jewelry-calc-options-scrollable .jewelry-calc-option {
    flex: 0 0 auto;
    min-width: 100px;
    max-width: 94px;
}

.jewelry-calc-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0;
    padding-bottom: 6px;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.jewelry-calc-option img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    display: block;
}

.jewelry-calc-option span {
    font-size: 11px;
    font-weight: 600;
    color: var(--jewelry-text-light);
    text-align: center;
    transition: color 0.25s ease;
}

.jewelry-calc-option:hover img {
    border-color: var(--jewelry-accent);
    box-shadow: 0 4px 12px rgba(134, 97, 74, 0.15);
}

.jewelry-calc-option:hover span {
    color: var(--jewelry-text);
}

.jewelry-calc-option.active img {
    border-color: var(--jewelry-primary);
    box-shadow: 0 4px 16px rgba(134, 97, 74, 0.2);
}

.jewelry-calc-option.active span {
    color: var(--jewelry-primary);
    font-weight: 700;
}

/* Carat Presets Grid */
.jewelry-calc-carat-presets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 6px;
}

.jewelry-calc-range-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 4px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(134, 97, 74, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.jewelry-carat-preset-range {
    font-size: 11px;
    font-weight: 700;
    color: var(--jewelry-text);
    white-space: nowrap;
}

.jewelry-carat-preset-desc {
    font-size: 9px;
    font-weight: 600;
    color: var(--jewelry-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jewelry-calc-range-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--jewelry-accent);
}

.jewelry-calc-range-btn.active {
    background: rgba(134, 97, 74, 0.1);
    border-color: var(--jewelry-primary);
}

.jewelry-calc-range-btn.active .jewelry-carat-preset-range {
    color: var(--jewelry-primary);
}

/* Custom Range Toggle */
.jewelry-calc-custom-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 4px 12px;
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--jewelry-text-light);
    cursor: pointer;
    transition: color 0.2s ease;
}

.jewelry-calc-custom-toggle:hover {
    color: var(--jewelry-primary);
}

.jewelry-calc-custom-toggle.active svg {
    transform: rotate(180deg);
}

.jewelry-calc-custom-toggle svg {
    transition: transform 0.2s ease;
}

/* All Styles Icon */
.jewelry-calc-all-styles-icon {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(134, 97, 74, 0.06);
    border-radius: 10px;
    border: 2px solid transparent;
    color: var(--jewelry-primary);
    transition: all 0.25s ease;
}

.jewelry-calc-option.active .jewelry-calc-all-styles-icon {
    border-color: var(--jewelry-primary);
    box-shadow: 0 4px 16px rgba(134, 97, 74, 0.2);
}

.jewelry-calc-option:hover .jewelry-calc-all-styles-icon {
    border-color: var(--jewelry-accent);
    box-shadow: 0 4px 12px rgba(134, 97, 74, 0.15);
}

/* Metal Options */
.jewelry-calc-metal-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.jewelry-calc-metal {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(134, 97, 74, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.jewelry-calc-metal span:last-child {
    font-size: 11px;
    font-weight: 600;
    color: var(--jewelry-text);
    white-space: nowrap;
}

.jewelry-calc-metal:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--jewelry-accent);
}

.jewelry-calc-metal.active {
    background: rgba(134, 97, 74, 0.08);
    border-color: var(--jewelry-primary);
}

.jewelry-calc-metal.active span:last-child {
    color: var(--jewelry-primary);
}

/* Metal Swatches */
.jewelry-metal-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.jewelry-metal-yellow {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.jewelry-metal-white {
    background: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 100%);
}

.jewelry-metal-rose {
    background: linear-gradient(135deg, #E0BFB8 0%, #C9A0A0 100%);
}

.jewelry-metal-platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #A8A8A8 100%);
}

/* Results Section */
.jewelry-calc-results {
    margin-top: 24px;
    padding: 18px;
    background: rgba(134, 97, 74, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(134, 97, 74, 0.06);
    min-height: 100px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.jewelry-calc-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
}

.jewelry-calc-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(134, 97, 74, 0.2);
    border-top-color: var(--jewelry-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.jewelry-calc-loading p {
    font-size: 13px;
    color: var(--jewelry-text-light);
    margin: 0;
}

.jewelry-calc-price-range {
    text-align: center;
    margin-bottom: 16px;
}

.jewelry-calc-price-label {
    display: block;
    font-size: 12px;
    color: var(--jewelry-text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jewelry-calc-price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jewelry-calc-count {
    text-align: center;
    font-size: 13px;
    color: var(--jewelry-text-light);
    margin-top: 8px;
    margin-bottom: 16px;
}

/* Carat Slider */
.jewelry-calc-carat-slider-container {
    padding: 12px 0;
}

.jewelry-calc-carat-slider {
    margin: 20px 0 16px;
}

.jewelry-calc-carat-values {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--jewelry-primary);
    margin-top: 8px;
}

/* noUiSlider custom styling for calculator */
.jewelry-price-calculator-card .noUi-target {
    background: rgba(134, 97, 74, 0.12);
    border: none;
    box-shadow: none;
}

.jewelry-price-calculator-card .noUi-connect {
    background: linear-gradient(135deg, var(--jewelry-primary), var(--jewelry-accent));
}

.jewelry-price-calculator-card .noUi-horizontal {
    height: 6px;
    margin-top: 16px;
    border-radius: 3px;
}

.jewelry-price-calculator-card .noUi-handle.noUi-handle {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    top: -10px;
    right: -12px;
    cursor: pointer;
    background: white;
    border: 3px solid var(--jewelry-primary);
    box-shadow: 0 2px 8px rgba(134, 97, 74, 0.25);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.jewelry-price-calculator-card .noUi-handle:hover {
    box-shadow: 0 4px 12px rgba(134, 97, 74, 0.35);
    transform: scale(1.1);
}

.jewelry-price-calculator-card .noUi-handle:after,
.jewelry-price-calculator-card .noUi-handle:before {
    display: none;
}

/* AI Response Results */
.jewelry-calc-ai-response {
    position: relative;
}

.jewelry-calc-ai-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.jewelry-calc-ai-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--jewelry-accent);
    margin: 0;
}

.jewelry-calc-ai-thinking-icon {
    width: 20px;
    height: 20px;
    animation: jewelry-thinking-pulse 1.5s ease-in-out infinite;
}

@keyframes jewelry-calc-thinking-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

.jewelry-calc-ai-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.jewelry-calc-ai-rating.revealed {
    opacity: 1;
}

.jewelry-calc-ai-rating-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--jewelry-accent);
}

.jewelry-calc-ai-rating-score {
    font-size: 18px;
    font-weight: 700;
    color: var(--jewelry-accent);
}

.jewelry-calc-ai-message {
    font-size: 14px;
    line-height: 1.6;
    color: var(--jewelry-text);
    margin: 0 0 16px 0;
    font-weight: 500;
    min-height: 60px;
}

.jewelry-calc-ai-message .jewelry-word-chunk {
    opacity: 0;
    display: inline;
    transition: opacity 0.3s ease-in;
}

.jewelry-calc-ai-message .jewelry-word-chunk.jewelry-word-visible {
    opacity: 1;
}

.jewelry-calc-ai-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(134, 97, 74, 0.1);
    justify-content: flex-end;
}

.jewelry-calc-ai-powered {
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 500;
}

.jewelry-calc-ai-logo {
    height: 14px;
    width: auto;
    color: #254264;
}

/* View All button loading state */
.jewelry-calc-view-all-loading {
    background: rgba(134, 97, 74, 0.15);
    color: rgba(134, 97, 74, 0.4);
    pointer-events: none;
}

/* Sample Items Carousel */
.jewelry-calc-sample-carousel {
    position: relative;
    margin-top: 16px;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
}

.jewelry-calc-sample-items {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    width: 100%;
    max-width: 100%;
}

.jewelry-calc-sample-items::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.jewelry-calc-sample-item {
    position: relative;
    flex: 0 0 160px;
    aspect-ratio: 1;
    background: #FAFAFA;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--jewelry-border);
}

.jewelry-calc-sample-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--jewelry-primary);
}

.jewelry-calc-sample-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0px;
}

.jewelry-calc-sample-carat {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--jewelry-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.jewelry-calc-sample-price {
    position: absolute;
    bottom: 8px;
    right: 8px;
    /* right: 0; */
    background: rgba(255, 255, 255, 0.95);
    color: var(--jewelry-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Carousel Navigation Arrows */
.jewelry-calc-carousel-prev,
.jewelry-calc-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--jewelry-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: var(--jewelry-primary);
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.jewelry-calc-carousel-prev {
    left: 4px;
}

.jewelry-calc-carousel-next {
    right: 4px;
}

.jewelry-calc-carousel-prev:hover,
.jewelry-calc-carousel-next:hover {
    background: var(--jewelry-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(134, 97, 74, 0.3);
}

.jewelry-calc-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 24px;
    margin-top: 14px;
    background: var(--jewelry-primary);
    color: var(--jewelry-white);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
    letter-spacing: 0.3px;
}

.jewelry-calc-view-all:hover {
    background: var(--jewelry-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(134, 97, 74, 0.25);
}

.jewelry-calc-view-all svg {
    transition: transform 0.3s ease;
}

.jewelry-calc-view-all:hover svg {
    transform: translateX(4px);
}

/* Transparency Section Responsive */
@media (max-width: 1024px) {
    .jewelry-calc-horizontal {
        grid-template-columns: 1fr;
    }

    .jewelry-calc-controls {
        padding-right: 0;
        border-right: none;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(134, 97, 74, 0.08);
    }

    .jewelry-calc-results-panel {
        padding-left: 0;
        padding-top: 24px;
    }

    .jewelry-transparency-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .jewelry-transparency-title {
        font-size: 32px;
    }

    .jewelry-transparency-visual {
        order: 2;
    }

    .jewelry-transparency-content {
        order: 1;
        position: static;
    }

    .jewelry-calc-options {
        grid-template-columns: repeat(4, 1fr);
    }

    .jewelry-calc-metal-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .jewelry-calc-carat-presets {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .jewelry-transparency-section {
        padding: 48px 0;
        /* display: none; */
    }

    .jewelry-transparency-title {
        font-size: 28px;
    }

    .jewelry-transparency-description {
        font-size: 14px;
    }

    .jewelry-calc-section-header {
        margin-bottom: 24px;
    }

    .jewelry-price-calculator-card {
        padding: 20px 16px;
    }

    .jewelry-calc-row-2col {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .jewelry-calc-label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .jewelry-calc-metal-compact {
        flex-wrap: wrap;
    }

    .jewelry-calc-metal-compact .jewelry-calc-metal {
        flex: 1 1 calc(50% - 4px);
        padding: 6px 8px;
        font-size: 12px;
    }

    .jewelry-calc-options-compact .jewelry-calc-option img {
        height: 30px;
    }

    .jewelry-calc-options-compact .jewelry-calc-option span {
        font-size: 9px;
    }

    .jewelry-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 20px;
    }

    .jewelry-stat-number {
        font-size: 20px;
    }

    .jewelry-stat-label {
        font-size: 10px;
    }

    .jewelry-glass-stat {
        padding: 14px 6px;
    }

    .jewelry-price-bar-value {
        font-size: 18px;
    }

    .jewelry-calc-carat-presets {
        grid-template-columns: repeat(2, 1fr);
    }

    .jewelry-calc-presets-compact {
        flex-wrap: wrap;
    }

    .jewelry-calc-presets-compact .jewelry-calc-range-btn {
        padding: 5px 8px;
        font-size: 11px;
    }

    .jewelry-calc-price-display {
        flex-direction: column;
        gap: 12px;
    }

    .jewelry-calc-type-options {
        gap: 6px;
    }

    .jewelry-calc-type-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .jewelry-calc-type-label {
        font-size: 12px;
    }

    .jewelry-calc-ai-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .jewelry-calc-view-all {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* ============================================
   WHY CHOOSE SECTION - Premium 3D Cards
   ============================================ */
/* Why Choose - Background Orbs */
.jewelry-why-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.jewelry-why-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.jewelry-why-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.25), transparent 70%);
    top: -100px;
    right: -100px;
    animation: whyOrbFloat 12s ease-in-out infinite;
}

.jewelry-why-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(134, 97, 74, 0.15), transparent 70%);
    bottom: -80px;
    left: -80px;
    animation: whyOrbFloat 15s ease-in-out infinite reverse;
}

@keyframes whyOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* Why Choose - Eyebrow */
.jewelry-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--jewelry-accent);
    margin-bottom: 20px;
}

.jewelry-why-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--jewelry-accent);
    border-radius: 1px;
}

/* Why Choose - Title & Subtitle */
.jewelry-why-title {
    font-family: var(--jewelry-font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--jewelry-text);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.jewelry-why-title em {
    font-style: italic;
    color: var(--jewelry-primary);
}

.jewelry-why-subtitle {
    font-size: 17px;
    color: var(--jewelry-text-light);
    line-height: 1.7;
    margin: 0 0 48px 0;
    max-width: 560px;
}

/* Why Choose - Cards Grid */
.jewelry-why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.jewelry-why-card {
    position: relative;
}

.jewelry-why-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 36px 28px 32px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow:
        0 2px 8px rgba(134, 97, 74, 0.04),
        0 12px 40px rgba(134, 97, 74, 0.06);
}

.jewelry-why-card:hover .jewelry-why-card-inner {
    transform: translateY(-6px);
    box-shadow:
        0 8px 24px rgba(134, 97, 74, 0.1),
        0 24px 56px rgba(134, 97, 74, 0.12);
    border-color: rgba(201, 169, 110, 0.25);
}

/* Why Choose - Card Icon */
.jewelry-why-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(134, 97, 74, 0.06));
    border: 1px solid rgba(201, 169, 110, 0.15);
    color: var(--jewelry-primary);
    transition: all 0.3s ease;
}

.jewelry-why-card:hover .jewelry-why-card-icon {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(134, 97, 74, 0.1));
    transform: scale(1.05);
}

.jewelry-why-card-icon svg {
    color: var(--jewelry-primary);
    transition: transform 0.3s ease;
}

/* Why Choose - Stat Display */
.jewelry-why-card-stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.jewelry-why-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--jewelry-primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.jewelry-why-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--jewelry-text-light);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose - Card Content */
.jewelry-why-card-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--jewelry-text);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.jewelry-why-card-description {
    font-size: 14px;
    color: var(--jewelry-text-light);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* Why Choose - Badge */
.jewelry-why-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--jewelry-accent);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 12px;
    background: rgba(201, 169, 110, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.12);
}

.jewelry-why-badge-pulse {
    width: 6px;
    height: 6px;
    background: var(--jewelry-accent);
    border-radius: 50%;
    animation: whyBadgePulse 2s ease-in-out infinite;
}

@keyframes whyBadgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

/* Why Choose - Bottom CTA */
.jewelry-why-cta {
    text-align: center;
    margin-top: 48px;
}

.jewelry-why-cta .jewelry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.jewelry-why-cta .jewelry-btn svg {
    transition: transform 0.3s ease;
}

.jewelry-why-cta .jewelry-btn:hover svg {
    transform: translateX(4px);
}

/* Why Choose - Responsive */
@media (max-width: 1024px) {
    .jewelry-why-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .jewelry-why-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .jewelry-why-choose {
        padding: 72px 0 60px;
    }

    .jewelry-why-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jewelry-why-title {
        font-size: 30px;
    }

    .jewelry-why-subtitle {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .jewelry-why-card-inner {
        padding: 28px 24px;
    }
}

/* ============================================
   SHOP BY BUDGET SECTION - Glassmorphic
   ============================================ */
.jewelry-shop-by-budget {
    padding: 20px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--jewelry-bg-light) 100%);
}

.jewelry-budget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    perspective: 1000px;
}

.jewelry-budget-card {
    position: relative;
    text-decoration: none;
    display: block;
    transform-style: preserve-3d;
}

.jewelry-budget-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.jewelry-budget-card:hover .jewelry-budget-card-inner {
    box-shadow: 0 25px 60px rgba(134, 97, 74, 0.18);
    border-color: rgba(201, 169, 110, 0.3);
}

/* Featured Card */
.jewelry-budget-featured .jewelry-budget-card-inner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 247, 241, 0.9) 100%);
    border: 2px solid rgba(201, 169, 110, 0.4);
}

.jewelry-budget-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-accent) 100%);
    color: var(--jewelry-white);
    font-size: 11px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(134, 97, 74, 0.3);
}

.jewelry-badge-star {
    font-size: 14px;
}

/* Floating Price Indicator */
.jewelry-budget-price-float {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 24px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(134, 97, 74, 0.05) 0%, rgba(201, 169, 110, 0.1) 100%);
    border-radius: 16px;
}

.jewelry-price-symbol {
    font-size: 20px;
    font-weight: 600;
    color: var(--jewelry-primary);
}

.jewelry-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--jewelry-primary);
    line-height: 1;
}

.jewelry-price-range {
    font-size: 24px;
    font-weight: 700;
    color: var(--jewelry-primary);
}

/* Ring Visual SVG */
.jewelry-budget-ring-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--jewelry-primary);
    opacity: 0.15;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}

.jewelry-budget-ring-visual svg {
    width: 120px;
    height: 120px;
}

.jewelry-budget-card:hover .jewelry-budget-ring-visual {
    opacity: 0.25;
    transform: scale(1.05);
}

.jewelry-budget-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--jewelry-text);
    margin: 0 0 8px 0;
    text-align: center;
}

.jewelry-budget-content p {
    font-size: 14px;
    color: var(--jewelry-text-light);
    margin: 0 0 20px 0;
    line-height: 1.6;
    text-align: center;
}

.jewelry-budget-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(134, 97, 74, 0.1);
}

.jewelry-budget-count {
    font-size: 13px;
    color: var(--jewelry-text-light);
    font-weight: 500;
}

.jewelry-budget-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--jewelry-primary);
    font-size: 14px;
    transition: gap 0.3s ease;
}

.jewelry-budget-card:hover .jewelry-budget-cta {
    gap: 10px;
}

/* Shop by Budget Responsive */
@media (max-width: 1024px) {
    .jewelry-budget-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jewelry-budget-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .jewelry-shop-by-budget {
        padding: 0px 0;
    }

    .jewelry-budget-grid {
        grid-template-columns: 1fr;
    }

    .jewelry-budget-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* ============================================
   SHOP BY BUDGET - NEW PRODUCT-FOCUSED DESIGN
   ============================================ */
.jewelry-budget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.jewelry-budget-card {
    display: block;
    text-decoration: none;
    background: var(--jewelry-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.jewelry-budget-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.jewelry-budget-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.jewelry-budget-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jewelry-budget-card:hover .jewelry-budget-image {
    transform: scale(1.05);
}

.jewelry-budget-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 24px 20px 16px;
    pointer-events: none;
}

.jewelry-budget-price {
    display: block;
    color: var(--jewelry-white);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.jewelry-budget-info {
    padding: 20px;
    text-align: center;
}

.jewelry-budget-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--jewelry-text);
    margin: 0 0 8px 0;
}

.jewelry-budget-info p {
    font-size: 14px;
    color: var(--jewelry-text-light);
    margin: 0;
}

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

    .jewelry-budget-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .jewelry-budget-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jewelry-budget-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .jewelry-budget-price {
        font-size: 16px;
    }

    .jewelry-budget-info h3 {
        font-size: 18px;
    }
}

/* ============================================
   SHOP BY METAL - NEW PRODUCT-FOCUSED DESIGN
   ============================================ */
.jewelry-shop-by-metal {
    padding: 100px 0 100px 0px;
    background: var(--jewelry-white);
}

.jewelry-metal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    max-width: 800px;
    margin: 0 auto;
}

.jewelry-metal-card {
    display: block;
    text-decoration: none;
    /* background: var(--jewelry-white); */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.jewelry-metal-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    margin-top: -20px;
    z-index: 10;
}

.jewelry-metal-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.jewelry-metal-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jewelry-metal-card:hover .jewelry-metal-product-image {
    transform: scale(1.05);
}

/* Metal Color Indicator - Positioned in top right corner */
.jewelry-metal-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
    z-index: 2;
    transition: transform 0.3s ease;
}

.jewelry-metal-card:hover .jewelry-metal-indicator {
    transform: scale(1.1);
}

/* Metal Color Gradients */
.jewelry-metal-white {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #d0d0d0 100%);
    border: 1px solid #d8d8d8;
}

.jewelry-metal-yellow {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    border: 1px solid #c49113;
}

.jewelry-metal-rose {
    background: linear-gradient(135deg, #cfb2a3 0%, #ddbeac 50%, #c1967c 100%);
    border: 1px solid #c99a9a;
}

.jewelry-metal-info {
    padding: 30px;
    text-align: center;
    background: #ffffffc4;
    border-radius: 22px;
    width: 100%;
    backdrop-filter: blur(4px);
}

.jewelry-metal-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--jewelry-text);
    margin: 0 0 -1px 0;
}

.jewelry-metal-info p {
    font-size: 14px;
    color: var(--jewelry-text-light);
    margin: 0;
}

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

    .jewelry-metal-card:last-child {
        /* grid-column: span 2; */
        /* max-width: 50%; */
        /* margin: 0 auto; */
    }
}

@media (max-width: 768px) {
    .jewelry-shop-by-metal {
        padding: 60px 0;
    }

    .jewelry-metal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jewelry-metal-card:last-child {
        /* grid-column: span 1; */
        /* max-width: 100%; */
    }

    .jewelry-metal-indicator {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }

    .jewelry-metal-info h3 {
        font-size: 18px;
    }
}

/* Unified Metal Carousel */
.jewelry-metal-carousel-section {
    margin-top: 48px;
    position: relative;
    z-index: 4;
}

.jewelry-metal-carousel-heading {
    font-family: var(--jewelry-font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--jewelry-dark);
    margin: 0 0 20px 0;
    text-align: center;
    display: none;
}

.jewelry-style-metal-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.jewelry-style-item-image {
    position: relative;
}

/* ============================================
   SHOP BY METAL SECTION (OLD)
   ============================================ */
.jewelry-shop-by-metal {
    padding: 80px 0;
    background: var(--jewelry-white);
    position: relative;
    z-index: 2;
    /* margin-bottom: -74px; */
    /* background: linear-gradient(180deg, var(--jewelry-bg-light) 0%, #fff 100%); */
}

.jewelry-metal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    max-width: 800px;
    margin: 0 auto;
    height: 313px;
    z-index: 10;
    position: relative;
}

.jewelry-metal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 0px;
    /* background: #f8f8f8; */
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0px solid transparent;
    color: #ffffff;
    /* max-width: 200px; */
    height: 381px;
}

.jewelry-metal-card:hover {
    /* transform: scale(1.05); */
    box-shadow: var(--jewelry-shadow-md);
    /* border-color: var(--jewelry-primary); */
    /* background: var(--jewelry-white); */
    margin-top: -10px;
    /* z-index: 10; */
}

.jewelry-metal-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 24px;
    /* box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.1); */
    transition: transform 0.3s ease;
    margin: 0 auto;
    /* margin-bottom: 24px; */
    /* border: 2px solid #000000; */
}

.jewelry-metal-card:hover .jewelry-metal-swatch {
    transform: scale(1.1);
}

/* Product Preview Strip */
.jewelry-metal-preview-strip {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 50px;
    margin: 16px 0;
    border-radius: 8px;
    background: #f8f8f8;
    max-width: 200px;
    display: none;
}

.jewelry-metal-preview-track {
    display: flex;
    width: fit-content;
    animation: scrollMetalPreviews 20s linear infinite;
    gap: 0px;
    /* display: none; */
}

.jewelry-metal-preview-slide {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
}

.jewelry-metal-preview-img {
    height: 50px;
    width: auto;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.jewelry-metal-preview-img:hover {
    opacity: 1;
}

@keyframes scrollMetalPreviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause animation on card hover */
.jewelry-metal-card:hover .jewelry-metal-preview-track {
    animation-play-state: paused;
}

.jewelry-metal-white {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #d0d0d0 100%);
    border: 1px solid #d8d8d8;
}

.jewelry-metal-yellow {
    background: linear-gradient(135deg, #cbac80 0%, #d0bd91 50%, #bc9e74 100%);
    border: 1px solid #c49113;
}

.jewelry-metal-rose {
    background: linear-gradient(135deg, #cfb2a3 0%, #ddbeac 50%, #c1967c 100%);
    border: 1px solid #c99a9a;
}

.jewelry-metal-platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #C0C0C0 50%, #A8A8A8 100%);
}

.jewelry-metal-content h3 {
    font-size: 18px;
    font-weight: 600;
    /* color: #ffffff; */
    margin: 0 0 3px 0;
}

.jewelry-metal-content p {
    font-size: 14px;
    /* color: #ffffff; */
    margin: 0;
}

/* Shop by Metal Responsive */
@media (max-width: 1024px) {
    .jewelry-metal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .jewelry-shop-by-metal {
        padding: 68px 0 8px 0;
    }

    .jewelry-metal-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        height: auto;
    }

    .jewelry-metal-card {
        padding: 0;
        height: auto;
    }

    .jewelry-metal-swatch {
        width: 48px;
        height: 48px;
    }

    .jewelry-metal-content h3 {
        font-size: 14px;
    }

    .jewelry-metal-content p {
        font-size: 11px;
    }

    /* Reset rotation/offset on mobile */
    .jewelry-three-card-1,
    .jewelry-three-card-2,
    .jewelry-three-card-3 {
        transform: none;
        top: 0;
        left: 0;
    }

    .jewelry-metal-card:hover {
        margin-top: 0;
    }

    .jewelry-metal-info {
        padding: 16px 8px;
        border-radius: 12px;
    }

    .jewelry-metal-info h3 {
        font-size: 14px;
    }

    .jewelry-metal-info p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .jewelry-metal-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .jewelry-metal-swatch {
        width: 40px;
        height: 40px;
    }

    .jewelry-metal-info h3 {
        font-size: 12px;
    }

    .jewelry-metal-info p {
        display: none;
    }
}
a.jewelry-metal-card-yellow {
    background: linear-gradient(135deg, #fac747 0%, #DAA520 50%, #B8860B 100%);
    /* position: relative; */
    /* left: 50px; */
    /* transform: rotate(-9deg); */
    /* top: 30px; */
}

a.jewelry-metal-card-rose {
    background: linear-gradient(135deg, #E8B4B8 0%, #D4A5A5 50%, #C49494 100%);
    /* position: relative; */
    /* left: 0px; */
    /* transform: rotate(0deg); */
    /* top: 10px; */
    /* z-index: 5; */
}

a.jewelry-metal-card-platinum {
    background: #aeaeae;
    /* position: relative; */
    /* left: -50px; */
    /* transform: rotate(9deg); */
    /* top: 30px; */
    /* z-index: 2; */
}

a.jewelry-metal-card-white {
    color: #504e4e;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #d0d0d0 100%);
    position: relative;
    left: 150px;
    transform: rotate(-9deg);
    top: 50px;
}

.jewelry-three-card-1 {
    position: relative;
    left: 4px;
    transform: rotate(-9deg);
    top: 46px;
    z-index: 2;
}

.jewelry-three-card-2 {
    position: relative;
    left: 0px;
    transform: rotate(0deg);
    top: 10px;
    z-index: 5;
}

.jewelry-three-card-3 {
    position: relative;
    left: 4px;
    transform: rotate(9deg);
    top: 46px;
}
.jewelry-metal-card-4{
    display:none;
}
.footer {
    background-color: var(--jewelry-primary);
}

.footersletter-input input {
    border-color: var(--jewelry-text);
    background-color: var(--jewelry-text);
}

.footersletter-input-button {
    background-color: var(--jewelry-primary);
}

.footersletter-input-subtitle {
    color: hsl(0deg 0% 100% / 61%);
}

.footer-rights-title {
    color: #ffffff;
    color: var(--jewelry-bg-light);
}

.footer-social-logo svg path {
    fill: #ffffff8f;
}
.footersletter-input input::placeholder {
    color:hsl(0deg 0% 100% / 61%);
}
.jewelry-shop-by-metal .jewelry-style-title {
    display: none;
}

.jewelry-shop-by-metal .jewelry-style-info {
    justify-content: space-between;
    display: flex;
    width: 100%;
    align-items: center;
    display: none;
}

.jewelry-shop-by-metal  .jewelry-style-price {
    font-weight: 700;
    font-size: 20px;
}

.jewelry-shop-by-metal  .jewelry-style-item-image {
    width: 130px;
    height: 130px;
}

.jewelry-shop-by-metal span.jewelry-style-metal-badge {
    width: 15px;
    height: 15px;
    box-shadow: unset;
}

.jewelry-shop-by-metal .jewelry-style-skeleton {
    flex: 0 0 170px;
}

.jewelry-shop-by-metal .jewelry-style-skeleton-image {
    width: 130px;
    height: 130px;
}

.jewelry-powered-text {
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 500;
    
}

.jewelry-logo-svg {
    height: 16px;
    width: auto;
    position: relative;
    top: -3px;
    left: -5px;
}
.jewelry-value-verification {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    justify-content: end;
}
.jewelry-logo-svg path {
    fill: #9CA3AF;
}
.footer-newsletter-input input {
    border: 1px solid var(--jewelry-dark);
    background-color: var(--jewelry-dark);
}

.footer-newsletter-input-button {
    background: var(--jewelry-dark);
}

.footer-newsletter-input-subtitle {}

.footer-newsletter-input-subtitle {
    color: #c9b7a9;
}

.footer-newsletter-title {
    color: var(--jewelry-bg-light);
}
.footer-newsletter-input input::placeholder {
    color: #c9b7a9;
}
.jewelry-hero-image {
    position: relative;
    height: 100%;
}

.jewelry-hero-image img {
    /* max-width: 100%; */
    height: 100%;
    border-radius: 8px;
    /* box-shadow: var(--jewelry-shadow-lg); */
    /* margin-top: -80px; */
    /* margin-bottom: -72px; */
    position: absolute;
    bottom: -10px;
    left: -100px;
    max-height: 617px;
    max-width: unset;
    max-height: 100%;
}

/* ============================================
   MOBILE CTA BAR (Product Page)
   ============================================ */
.jewelry-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(252, 247, 241, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(134, 97, 74, 0.15);
    box-shadow: 0 -4px 20px rgba(134, 97, 74, 0.1);

    /* Prevent mobile browser UI from pushing element up */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.jewelry-mobile-cta-price {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--jewelry-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile CTA price with discount layout */
.jewelry-mobile-cta-price-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 2px;
    align-items: center;
    position: relative;
    padding-top: 10px;
    top: 7px;
}

.jewelry-mobile-cta-discount-badge {
    font-size: 0.75rem;
    background: linear-gradient(135deg, var(--jewelry-primary), var(--jewelry-accent));
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    position: absolute;
    top: -7px;
    right: -50%;
}

.jewelry-mobile-cta-original-price {
    font-size: 0.8rem;
    color: #8a7a6e;
    text-decoration: line-through;
    position: relative;
    font-weight: 400;
    color: #9CA3AF;
}

.jewelry-mobile-cta-current-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--jewelry-primary);
    font-weight: 700;
    color: var(--jewelry-text);
    letter-spacing: -0.5px;
    font-size: 22px;
    margin-right: 3px;
}

.jewelry-mobile-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--jewelry-primary), var(--jewelry-accent));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(134, 97, 74, 0.3);
}

.jewelry-mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(134, 97, 74, 0.4);
}

.jewelry-mobile-cta-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jewelry-mobile-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Hide on desktop */
@media (min-width: 769px) {
    .jewelry-mobile-cta {
        display: none !important;
    }
}

/* ============================================
   SITE EXPLAINED SECTION
   ============================================ */
.site-explained {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--jewelry-bg-light) 0%, #f5f0e8 100%);
    min-height: 560px;
}

/* Background orbs for depth */
.explained-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.explained-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.explained-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(201, 169, 110, 0.15);
    top: -150px;
    left: -100px;
    animation: explainedOrbFloat 12s ease-in-out infinite;
}

.explained-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(134, 97, 74, 0.08);
    bottom: -100px;
    right: -60px;
    animation: explainedOrbFloat 15s ease-in-out infinite reverse;
}

.explained-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(201, 169, 110, 0.1);
    top: 40%;
    right: 45%;
    animation: explainedOrbFloat 10s ease-in-out infinite 3s;
}

@keyframes explainedOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

.explained-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 560px;
}

/* Explained Eyebrow */
.explained-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--jewelry-text);
    margin-bottom: 16px;
}

.explained-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.explained-title {
    font-family: var(--jewelry-font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--jewelry-text);
    letter-spacing: -0.5px;
}

.explained-highlight {
    color: var(--jewelry-primary);
    font-weight: 800;
}

.explained-subtitle {
    font-size: 16px;
    color: #8a7a6e;
    margin: 0 0 32px 0;
    line-height: 1.7;
    max-width: 520px;
}

/* Features List */
.explained-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.explained-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.explained-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(134, 97, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jewelry-primary);
}

.explained-feature-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--jewelry-text);
    margin: 0 0 4px 0;
}

.explained-feature-content p {
    font-size: 14px;
    color: #8a7a6e;
    margin: 0;
    line-height: 1.5;
}

.explained-cta {
    margin-top: 8px;
}

/* ============================================
   EXPLAINED VISUAL — Animated Price Comparison
   ============================================ */
.explained-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explained-visual-inner {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 5 / 4;
}

/* Central ring card (clickable <a> tag) */
.explained-ring-card {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 13px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 48px rgba(134, 97, 74, 0.2), 0 0 0 8px rgba(201, 169, 110, 0.08);
    z-index: 3;
    animation: explainedRingPulse 4s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

/* Stacked product images — carousel slide left/right */
.explained-ring-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.explained-ring-img.active {
    transform: translateX(0);
}

.explained-ring-img.slide-out {
    transform: translateX(-100%);
}

/* Skip transition when resetting position after slide-out */
.explained-ring-img.no-transition {
    transition: none;
}

@keyframes explainedRingPulse {
    0%, 100% { box-shadow: 0 16px 48px rgba(134, 97, 74, 0.2), 0 0 0 8px rgba(201, 169, 110, 0.08); }
    50% { box-shadow: 0 20px 56px rgba(134, 97, 74, 0.25), 0 0 0 12px rgba(201, 169, 110, 0.12); }
}

/* Floating price tags */
.explained-price-tag {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 4;
    min-width: 120px;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.explained-price-tag.fading {
    opacity: 0;
    transform: scale(0.95);
}

/* Generic label (replaces store name) */
.explained-tag-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a7a6e;
}

.explained-tag-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--jewelry-text);
    letter-spacing: -0.3px;
}

/* Retailer tags — expensive/negative visual treatment */
.explained-tag-retailer {
    background: rgb(255 255 255 / 42%);
    border: 1px solid rgb(228 228 228);
    box-shadow: 0 6px 24px rgb(211 47 47 / 0%);
    border-radius: 7px;
}

.explained-tag-retailer .explained-tag-label {
    color: #8a7a6e;
}

.explained-tag-retailer .explained-tag-price {
    color: #c62828;
    text-decoration: line-through;
    text-decoration-color: rgba(198, 40, 40, 0.35);
}

/* Individual tag positions + staggered float */
.explained-tag-1 {
    top: 30%;
    right: -18%;
    animation-name: explainedTagFloat1;
    animation-delay: 0s;
}

.explained-tag-2 {
    top: 2%;
    right: 0%;
    animation-name: explainedTagFloat2;
    animation-delay: 1s;
}

.explained-tag-3 {
    bottom: 23%;
    right: -16%;
    animation-name: explainedTagFloat3;
    animation-delay: 2s;
}

/* Best deal tag — positive green treatment */
.explained-tag-best {
    bottom: 7%;
    left: -20%;
    background: rgb(255 255 255);
    border: 1px solid rgb(228 228 228);
    box-shadow: 0 12px 40px rgba(67, 160, 71, 0);
    padding: 14px 18px;
    min-width: 140px;
}

.explained-tag-best .explained-tag-label {
    color: var(--jewelry-text);
}

.explained-tag-best .explained-tag-price {
    font-size: 22px;
    color: #1a8f35;
}

.explained-tag-save {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #1a8f35;
    margin-top: 4px;
}

/* Tag float animations */
@keyframes explainedTagFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, 12px); }
}

@keyframes explainedTagFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(6px, -10px); }
}

@keyframes explainedTagFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -8px); }
}

/* Connector lines */
.explained-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.explained-line {
    animation: explainedLinePulse 3s ease-in-out infinite;
}

@keyframes explainedLinePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Progress dots */
.explained-dots {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.explained-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(134, 97, 74, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.explained-dot.active {
    background: var(--jewelry-primary);
    width: 22px;
    border-radius: 4px;
}

.explained-dot:hover:not(.active) {
    background: rgba(134, 97, 74, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .site-explained {
        min-height: auto;
        padding: 60px 0;
    }

    .explained-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding: 40px 16px;
        min-height: auto;
    }

    .explained-eyebrow {
        justify-content: center;
    }

    .explained-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .explained-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .explained-features {
        gap: 16px;
        margin-bottom: 24px;
    }

    .explained-feature {
        text-align: left;
    }

    .explained-feature-icon {
        width: 40px;
        height: 40px;
    }

    .explained-feature-content h3 {
        font-size: 15px;
    }

    .explained-feature-content p {
        font-size: 13px;
    }

    /* Visual — shrink for mobile */
    .explained-visual {
        margin: 0 auto;
        max-width: 340px;
        display: none;
    }

    .explained-ring-card {
        width: 130px;
        height: 130px;
    }

    .explained-price-tag {
        padding: 8px 12px;
        min-width: 85px;
        border-radius: 10px;
    }

    .explained-tag-label {
        font-size: 8px;
        letter-spacing: 0.8px;
    }

    .explained-tag-price {
        font-size: 14px;
    }

    .explained-tag-best {
        padding: 10px 14px;
        min-width: 115px;
    }

    .explained-tag-best .explained-tag-price {
        font-size: 17px;
    }

    .explained-tag-save {
        font-size: 10px;
    }

    .explained-connectors {
        display: none;
    }

    .explained-dots {
        bottom: -8px;
    }

    .explained-dot {
        width: 6px;
        height: 6px;
    }

    .explained-dot.active {
        width: 18px;
    }
}

@media (max-width: 480px) {
    .explained-title {
        font-size: 26px;
    }

    .explained-visual {
        max-width: 300px;
    }

    .explained-ring-card {
        width: 110px;
        height: 110px;
    }

    .explained-price-tag {
        padding: 6px 10px;
        min-width: 75px;
        border-radius: 8px;
    }

    .explained-tag-price {
        font-size: 13px;
    }

    .explained-tag-best {
        padding: 8px 12px;
        min-width: 100px;
    }

    .explained-tag-best .explained-tag-price {
        font-size: 15px;
    }
}

