/* ================= DESIGN SYSTEM & VARIABLES ================= */
:root {
    --color-primary: #0F3D73;      /* Deep Sapphire Blue */
    --color-primary-dark: #072242; /* Midnight Sapphire */
    --color-accent: #C8A96B;       /* Champagne Gold */
    --color-accent-light: #F0E5D0; /* Soft Warm Gold */
    --color-bg-warm: #F8F5F0;      /* Warm Ivory Background */
    --color-card-bg: #FFFFFF;
    --color-text-dark: #2C3E50;
    --color-text-light: #7F8C8D;
    --color-white: #FFFFFF;
    --color-success: #27AE60;
    
    --font-brand: 'Cormorant Garamond', serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(15, 61, 115, 0.05);
    --shadow-gold: 0 10px 30px rgba(200, 169, 107, 0.15);
    --border-radius-lg: 12px;
    --border-radius-sm: 6px;
    
    --header-height: 80px;
}

/* ================= BASIC RESET & LAYOUT ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-warm);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================= ANNOUNCEMENT BAR ================= */
.announcement-bar {
    background-color: var(--color-primary-dark);
    color: var(--color-accent-light);
    text-align: center;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.announcement-bar span {
    margin-right: 5px;
}

/* ================= NAVIGATION HEADER ================= */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(248, 245, 240, 0.85); /* Warm Ivory with Transparency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 107, 0.15);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    height: 70px;
    width: 160px;
    overflow: hidden; /* Cleanly cuts the outer padding margins */
}

.brand-logo-img {
    height: 110px; /* Enlarge elements just enough to crop empty padding without cutting logo elements */
    width: 160px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition-smooth);
}

.brand-logo-wrapper:hover .brand-logo-img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent);
}

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

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

.inquiry-btn {
    background: none;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.inquiry-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.inquiry-btn svg {
    width: 20px;
    height: 20px;
}

.inquiry-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-bg-warm);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height) - 40px);
    min-height: 550px;
    background-image: linear-gradient(rgba(15, 61, 115, 0.45), rgba(7, 34, 66, 0.85)), url('https://images.unsplash.com/photo-1617038260897-41a1f14a8ca0?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 5;
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-brand);
    font-size: 65px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-actions-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ================= BUTTONS ================= */
.btn {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 35px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: #25D366;
}

.w-full {
    width: 100%;
    justify-content: center;
}

/* ================= TRUST STRIP ================= */
.trust-strip {
    background-color: var(--color-white);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(200, 169, 107, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.trust-item:not(:last-child) {
    border-right: 1px solid rgba(200, 169, 107, 0.15);
}

.trust-item svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ================= VIEWS / TABS NAVIGATION ================= */
.view-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.view-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ================= COMMON SECTIONS ================= */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.align-center {
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-brand);
    font-size: 45px;
    font-weight: 400;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.section-title.text-light {
    color: var(--color-white);
}

.section-desc {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    display: block;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ================= PRODUCT GEM CARDS ================= */
.gem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gem-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(200, 169, 107, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.gem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(200, 169, 107, 0.3);
}

.gem-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.gem-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gem-card:hover .gem-img-wrapper img {
    transform: scale(1.08);
}

.gem-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(15, 61, 115, 0.95);
    color: var(--color-accent-light);
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-accent);
}

.gem-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gem-meta {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.gem-name {
    font-family: var(--font-brand);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.gem-spec-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(200, 169, 107, 0.1);
    padding: 8px 0;
    font-size: 13px;
}

.gem-spec-row span:first-child {
    color: var(--color-text-light);
}

.gem-spec-row span:last-child {
    font-weight: 500;
    color: var(--color-primary-dark);
}

.gem-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.gem-price {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.btn-card-inquire {
    background: none;
    border: none;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.btn-card-inquire:hover {
    color: var(--color-primary-dark);
    transform: translateX(3px);
}

/* ================= WHY CHOOSE US ================= */
.why-choose-section {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.why-list {
    list-style: none;
    margin-top: 30px;
}

.why-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.why-num {
    font-family: var(--font-brand);
    font-size: 32px;
    font-weight: 300;
    color: var(--color-accent);
    border-bottom: 1.5px solid var(--color-accent);
    height: 48px;
    line-height: 1;
}

.why-list h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.why-list p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.why-list-checked {
    list-style: none;
    margin: 25px 0;
    padding-left: 0;
}

.why-list-checked li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--color-text-dark);
}

.why-list-checked li svg {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-preview {
    background-color: var(--color-white);
    border-top: 1px solid rgba(200, 169, 107, 0.1);
}

.testimonial-card {
    background-color: var(--color-bg-warm);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(200, 169, 107, 0.15);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.stars {
    color: var(--color-accent);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-brand);
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-primary-dark);
    margin-bottom: 25px;
}

.author {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
}

/* ================= SHOP PAGE LAYOUT ================= */
.page-header {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 2px solid var(--color-accent);
}

.page-title {
    font-family: var(--font-brand);
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 14px;
    color: var(--color-accent-light);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 40px;
    padding-bottom: 80px;
}

.shop-sidebar {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar-block {
    margin-bottom: 30px;
}

.sidebar-block h3 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-dark);
    border-bottom: 1px solid rgba(200, 169, 107, 0.15);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    text-align: left;
    color: var(--color-text-dark);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-btn:hover {
    background-color: var(--color-bg-warm);
    color: var(--color-accent);
}

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

.search-box {
    position: relative;
    width: 100%;
}

.search-box svg {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--color-text-light);
}

.search-box input {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border: 1px solid rgba(200, 169, 107, 0.2);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 61, 115, 0.08);
}

.sidebar-block select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(200, 169, 107, 0.2);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    background-color: var(--color-white);
    outline: none;
    cursor: pointer;
}

.shop-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--color-text-light);
}

.btn-clear-filters {
    background: none;
    border: none;
    color: var(--color-accent);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.btn-clear-filters:hover {
    color: var(--color-primary);
}

/* ================= ABOUT & CONTENT PAGE COMMON ================= */
.content-page {
    padding-top: 60px;
    padding-bottom: 80px;
}

.content-page h2 {
    font-family: var(--font-brand);
    font-size: 36px;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

.content-page p {
    margin-bottom: 20px;
    color: var(--color-text-dark);
    font-size: 15px;
    line-height: 1.8;
}

.values-strip {
    margin: 60px 0;
}

.value-card {
    background-color: var(--color-white);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(200, 169, 107, 0.15);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.value-card svg {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.value-card p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ================= CUSTOM SOURCING WIZARD ================= */
.max-w-700 {
    max-width: 700px;
    margin: 0 auto;
}

.sourcing-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(200, 169, 107, 0.15);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    margin-top: 40px;
}

.sourcing-header {
    text-align: center;
    margin-bottom: 35px;
}

.sourcing-header h2 {
    font-family: var(--font-brand);
    font-size: 32px;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.sourcing-header p {
    font-size: 13px;
    color: var(--color-text-light);
}

.wizard-progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.wizard-progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-bg-warm);
    z-index: 1;
}

.progress-step {
    background-color: var(--color-bg-warm);
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 30px;
    z-index: 5;
    border: 1px solid rgba(200, 169, 107, 0.15);
    transition: var(--transition-smooth);
}

.progress-step.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.wizard-step h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.option-card {
    border: 1px solid rgba(200, 169, 107, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--color-bg-warm);
}

.option-card input {
    display: none;
}

.option-card:has(input:checked) {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(200, 169, 107, 0.25);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    background-color: var(--color-bg-warm);
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(15, 61, 115, 0.08);
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 169, 107, 0.15);
}

/* ================= EDUCATION HUB ================= */
.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.education-menu {
    display: flex;
    gap: 10px;
    border-bottom: 1.5px solid rgba(200, 169, 107, 0.15);
    padding-bottom: 1px;
    margin-bottom: 40px;
    overflow-x: auto;
}

.edu-tab {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    padding: 12px 20px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2.5px transparent solid;
    transition: var(--transition-smooth);
}

.edu-tab:hover, .edu-tab.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.edu-content-block {
    display: none;
}

.edu-content-block.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.edu-content-block h2 {
    font-family: var(--font-brand);
    font-size: 32px;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.edu-content-block h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 13px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    background-color: var(--color-white);
}

.luxury-table th {
    background-color: var(--color-primary-dark);
    color: var(--color-accent-light);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    text-align: left;
}

.luxury-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(200, 169, 107, 0.1);
}

.luxury-table tr:hover {
    background-color: var(--color-bg-warm);
}

.alert-box {
    border-left: 4px solid var(--color-accent);
    background-color: var(--color-white);
    padding: 20px 25px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 30px 0;
    box-shadow: var(--shadow-soft);
}

.alert-box h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
}

.alert-box p {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--color-text-dark);
}

/* ================= CONTACT SECTION ================= */
.contact-details {
    padding-right: 40px;
}

.contact-details h2, .contact-form-container h2 {
    font-family: var(--font-brand);
    font-size: 32px;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.contact-links {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    margin-top: 3px;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-dark);
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--color-accent);
}

.whatsapp-card {
    margin-top: 40px;
    background-color: var(--color-white);
    border: 1px solid rgba(200, 169, 107, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.whatsapp-card h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.whatsapp-card p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.contact-form-container {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(200, 169, 107, 0.15);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

/* ================= MODAL DIALOGS ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 34, 66, 0.7); /* Midnight tint */
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background-color: var(--color-bg-warm);
    border-radius: var(--border-radius-lg);
    max-width: 950px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-accent);
    box-shadow: 0 20px 50px rgba(7, 34, 66, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-white);
    border: 1px solid rgba(200, 169, 107, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary-dark);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.modal-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cert-stamp-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(200, 169, 107, 0.95);
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.modal-info {
    padding: 40px;
    max-height: 85vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.gem-ref {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.modal-title {
    font-family: var(--font-brand);
    font-size: 38px;
    color: var(--color-primary-dark);
    line-height: 1.15;
    margin-bottom: 10px;
}

.modal-price-tag {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    border-top: 1.5px solid rgba(200, 169, 107, 0.15);
    border-bottom: 1.5px solid rgba(200, 169, 107, 0.15);
    padding: 20px 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

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

.spec-val {
    font-weight: 500;
    color: var(--color-primary-dark);
}

.modal-description p {
    font-size: 14px;
    color: var(--color-text-dark);
    line-height: 1.8;
}

.modal-actions-bar {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

/* ================= INQUIRY DRAWER PANEL ================= */
.drawer-card {
    background-color: var(--color-bg-warm);
    width: 420px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2100;
    box-shadow: -10px 0 40px rgba(7, 34, 66, 0.2);
    border-left: 1.5px solid var(--color-accent);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .drawer-card {
    transform: translateX(0);
}

.drawer-header {
    padding: 25px;
    border-bottom: 1px solid rgba(200, 169, 107, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h2 {
    font-family: var(--font-brand);
    font-size: 26px;
    color: var(--color-primary-dark);
}

.modal-close-static {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-dark);
}

.drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drawer-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--color-text-light);
}

.drawer-empty svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
    margin-bottom: 15px;
}

.saved-gem-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.saved-gem-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.saved-gem-info {
    flex-grow: 1;
}

.saved-gem-info h4 {
    font-family: var(--font-brand);
    font-size: 18px;
    color: var(--color-primary-dark);
    line-height: 1.2;
}

.saved-gem-info p {
    font-size: 11px;
    color: var(--color-text-light);
}

.btn-remove-saved {
    background: none;
    border: none;
    color: #C0392B;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-remove-saved:hover {
    background-color: #FDEDEC;
}

.drawer-footer {
    padding: 25px;
    border-top: 1px solid rgba(200, 169, 107, 0.15);
    background-color: var(--color-white);
}

/* ================= POLICY MODAL ================= */
.policy-modal-card {
    padding: 50px 40px 40px 40px;
    max-height: 80vh;
    overflow-y: auto;
}

.policy-body h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-dark);
}

.policy-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* ================= SUCCESS SUCCESS OVERLAY ================= */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 34, 66, 0.8);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.success-overlay.active {
    display: flex;
}

.success-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-accent);
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.success-icon svg {
    width: 38px;
    height: 38px;
}

.success-box h2 {
    font-family: var(--font-brand);
    font-size: 32px;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.success-box p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

/* ================= FOOTER ================= */
.main-footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border-top: 2px solid var(--color-accent);
    padding-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 30px 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================= MOBILE / RESPONSIVE STYLES ================= */
@media (max-width: 1024px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trust-strip {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .trust-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(200, 169, 107, 0.15);
        padding-bottom: 20px;
    }
    .trust-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-warm);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(200, 169, 107, 0.15);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link {
        font-size: 16px;
    }
    .hero-actions-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .modal-actions-bar {
        grid-template-columns: 1fr;
    }
    .drawer-card {
        width: 100%;
    }
}

/* ================= PREMIUM AGENCY-LEVEL ANIMATIONS ================= */

/* Luxury Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-warm);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    height: 250px;
    width: 250px;
    object-fit: contain;
    mix-blend-mode: multiply;
    margin-top: -60px;
    margin-bottom: -60px;
    animation: pulseScale 2s infinite ease-in-out;
}

.preloader-bar-container {
    width: 150px;
    height: 1.5px;
    background-color: rgba(200, 169, 107, 0.15);
    margin-top: 25px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background-color: var(--color-accent);
    animation: loadProgress 2s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

/* Scroll-triggered reveal defaults */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Delays for staggered animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Metallic Button Shimmer */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    transition: none;
    z-index: -1;
}

.btn-primary:hover::after {
    left: 130%;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Animation for Badges */
.trust-item {
    animation: floatBadge 6s ease-in-out infinite;
}

.trust-strip .trust-item:nth-child(2) {
    animation-delay: 1.5s;
}

.trust-strip .trust-item:nth-child(3) {
    animation-delay: 3s;
}

/* Scale & shadow transition for cards */
.gem-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes pulseScale {
    0%, 100% { transform: scale(0.97); opacity: 0.85; }
    50% { transform: scale(1.03); opacity: 1; }
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes revealText {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================= MOBILE FILTER DRAWER STYLES ================= */
.mobile-filter-bar {
    display: none;
    padding: 15px 20px;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(200, 169, 107, 0.15);
    position: sticky;
    top: var(--header-height);
    z-index: 99;
    justify-content: space-between;
    align-items: center;
}

.btn-mobile-filter {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius-sm);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-mobile-filter:hover {
    background-color: var(--color-primary-dark);
}

.sidebar-close-btn {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-filter-bar {
        display: flex;
    }
    
    .shop-sidebar {
        display: none; /* Hide default sidebar placement */
        position: fixed;
        top: 0;
        left: 0;
        width: 310px;
        height: 100vh;
        z-index: 2200;
        background-color: var(--color-white);
        box-shadow: 10px 0 40px rgba(7, 34, 66, 0.2);
        overflow-y: auto;
        padding: 50px 30px;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
    }
    
    .shop-sidebar.active {
        display: block;
        transform: translateX(0);
    }
    
    .mobile-filter-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(7, 34, 66, 0.5);
        backdrop-filter: blur(4px);
        z-index: 2150;
        display: none;
    }
    
    .mobile-filter-overlay.active {
        display: block;
    }
    
    .sidebar-close-btn {
        display: block !important;
        background: none;
        border: none;
        color: var(--color-text-dark);
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 5px;
        transition: var(--transition-smooth);
    }
    
    .sidebar-close-btn:hover {
        color: var(--color-accent);
    }
}

/* ================= JEWELRY CUSTOMIZER STYLES ================= */
.custom-jewelry-toggle-wrapper {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-top: 1.5px dashed rgba(200, 169, 107, 0.3);
}

.custom-jewelry-toggle-wrapper input[type="checkbox"] {
    accent-color: var(--color-accent);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.jewelry-customizer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.5s ease;
    margin-top: 0;
}

.jewelry-customizer-panel.active {
    max-height: 300px; /* Expands smoothly */
    margin-top: 15px;
}

.jewelry-customizer-panel h3 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.jewelry-options-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.jewelry-select-box label {
    display: block;
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.jewelry-select-box select {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(200, 169, 107, 0.25);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    outline: none;
    background-color: var(--color-bg-warm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.jewelry-select-box select:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
}

.btn-jewelry-submit {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius-sm);
    width: 100%;
    padding: 12px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-jewelry-submit:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}


