:root {
    /* Color Palette - Modern Premium Retail */
    /* Many values are now dynamically overridden by inline styles in header.php */
    --primary: #0B2E6B;
    --primary-hover: #071f49;
    --primary-light: #eff6ff;

    --accent-orange: #f97316;
    --accent-orange-hover: #ea580c;
    --accent-yellow: #D4AF37;
    --accent-yellow-hover: #b08d29;

    --bg-base: #FFFDF8; /* Warm Ivory */
    --bg-card: #ffffff; /* Pure White */
    --bg-header: #0B2E6B; /* Deep Royal Blue */
    --bg-nav-strip: #0a2352; /* Slightly darker */

    --text-main: #444444; /* Body Text Dark Grey */
    --text-heading: #0B2E6B; /* Deep Navy Headings */
    --text-muted: #64748b;
    --text-light: #ffffff;

    --border-color: #e2e8f0;

    --price-red: #8B1E3F; /* Deep Maroon */
    --deal-green: #16a34a;

    --success: #16a34a;
    --success-light: #dcfce7;
    --danger: #8B1E3F;
    --danger-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;

    /* Typography */
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Shadows & Radius (Modern Apple/Stripe-like) */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.025);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-main);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 992px) {
    body {
        font-size: 17px;
        line-height: 1.8;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    letter-spacing: -0.2px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 44px;
    font-weight: 700; /* Bold */
}

h2 {
    font-size: 32px;
    font-weight: 600; /* SemiBold */
}

h3 {
    font-family: var(--font-sans);
    color: #1F2937;
    font-size: 22px;
    font-weight: 600; /* SemiBold */
}

@media (min-width: 992px) {
    h1 { font-size: 52px; }
    h2 { font-size: 40px; }
    h3 { font-size: 28px; }
}

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

/* Layout Core */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

main {
    min-height: 80vh;
    padding: 1.5rem 0;
}

/* Header & Navigation Styling */
.main-header {
    background-color: var(--bg-header);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    gap: 1.5rem;
}

.brand {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: -0.5px;
}

@media (min-width: 992px) {
    .brand { font-size: 30px; }
}

.brand span {
    color: var(--accent-yellow);
}

.search-form {
    flex: 1 1 auto;
    max-width: 650px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.search-input {
    width: 100%;
    padding: 0.65rem 1rem;
    border: none;
    background-color: var(--bg-card);
    color: #000000;
    outline: none;
    font-size: 0.95rem;
}

.search-btn {
    background-color: var(--accent-yellow);
    border: none;
    color: var(--bg-header);
    padding: 0.65rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--accent-yellow-hover);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.actions-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
}

.icon-link:hover {
    color: var(--accent-yellow);
}

.cart-count-badge {
    background-color: var(--accent-orange);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.15rem 0.35rem;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: 12px;
}

/* Category Navigation Strip */
.nav-strip {
    background-color: var(--bg-nav-strip);
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: visible;
    position: relative;
    z-index: 999;
}

.nav-strip-container {
    display: flex;
    align-items: center;
    height: 40px;
    gap: 1.5rem;
    overflow: visible;
    font-size: 0.9rem;
    font-weight: 500;
    scrollbar-width: none;
    position: relative;
    z-index: 1000;
}

.nav-strip-container::-webkit-scrollbar {
    display: none;
}

.nav-strip-link {
    white-space: nowrap;
    color: var(--text-light);
}

.nav-strip-link:hover {
    color: var(--accent-yellow);
}

/* Buttons */
.btn {
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600; /* SemiBold */
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    font-size: 14px;
}

@media (min-width: 992px) {
    .btn { font-size: 16px; }
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: #111111;
    border-color: #a88734 #9c7e31 #846a29;
}

.btn-yellow:hover {
    background-color: var(--accent-yellow-hover);
}

.btn-orange {
    background-color: var(--accent-orange);
    color: var(--text-light);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-orange:hover {
    background-color: var(--accent-orange-hover);
}

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

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

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--text-main);
    border-color: #bbbbbb;
}

.btn-secondary:hover {
    background-color: #f7f9fa;
    border-color: #888888;
}

.btn-danger {
    background-color: var(--danger);
    color: var(--text-light);
}

.btn-danger:hover {
    background-color: #b71c1c;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

/* Main Footer */
.main-footer {
    background-color: #232f3e;
    color: #eaeded;
    padding: 3rem 0 2rem;
    border-top: 1px solid #19222d;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #dddddd;
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a6b1b9;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Home Layout & Slider */
.promo-slider {
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    aspect-ratio: 21/9;
    max-height: 320px;
}

.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #131921 20%, #232f3e 80%);
    color: var(--text-light);
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-slide h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-yellow);
    font-weight: 800;
}

.promo-slide p {
    font-size: 1.1rem;
    color: #dddddd;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

/* Section Wrapper Card */
.retail-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.retail-section-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.retail-section-header h2 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0;
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* Product Cards Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1rem;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #b6b6b6;
}

.product-img-wrapper {
    aspect-ratio: 1/1;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.03);
}

.deal-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--danger);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.0rem;
}

@media (min-width: 992px) {
    .product-name { font-size: 18px; height: 3.2rem; }
}

.product-name:hover {
    color: #c45500;
    text-decoration: underline;
}

/* Rating Badge (Flipkart Style green pill / Amazon Stars) */
.rating-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars-rating {
    color: #ffb300;
    font-size: 0.85rem;
}

.reviews-count {
    font-size: 0.8rem;
    color: #0066c0;
}

.reviews-count:hover {
    color: #c45500;
    text-decoration: underline;
}

.price-container {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
}

.price-strike {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-save {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--deal-green);
}

.stock-status-text {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    font-weight: 600;
}

/* Shop Layout Filters */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
}

.shop-sidebar {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    height: fit-content;
}

.filter-group {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111111;
    text-transform: uppercase;
}

.filter-list {
    list-style: none;
}

.filter-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-link {
    color: #333333;
    display: block;
}

.filter-link:hover,
.filter-link.active {
    color: #c45500;
    font-weight: 600;
}

.shop-header {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

/* Product Detail Page (Amazon Style split) */
.detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .detail-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

.detail-img-box {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    max-height: 400px;
    background-color: #ffffff;
}

.detail-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.detail-center-info {
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-size: 1.6rem;
    color: #111111;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail-price-red {
    font-size: 2rem;
    font-weight: 700;
    color: var(--price-red);
}

.detail-desc-box {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.detail-desc-box h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #111111;
}

.detail-desc-box p {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
}

/* Right Buying Box */
.detail-buy-box {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    height: fit-content;
    background-color: var(--bg-card);
}

.detail-buy-box .price-main {
    color: var(--price-red);
    font-size: 1.8rem;
}

/* Reviews Distribution Grid */
.ratings-summary-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .ratings-summary-container {
        grid-template-columns: 1fr;
    }
}

.rating-chart-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.rating-bar-bg {
    flex: 1 1 auto;
    height: 16px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: #ffb300;
    border-radius: 3px;
}

/* Cart & Summary Tables */
.cart-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

.cart-table th {
    background-color: #f5f7f8;
    color: var(--text-main);
    border-bottom: 2px solid var(--border-color);
}

.summary-card {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* Alert styling */
.alert {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.alert-success {
    background-color: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(56, 142, 60, 0.2);
}

.alert-danger {
    background-color: var(--danger-light);
    color: var(--danger);
    border: 1px solid rgba(211, 47, 47, 0.2);
}

/* Auth Cards */
.auth-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
}

.auth-header h2 {
    font-size: 1.8rem;
    color: #111111;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
}

.form-control {
    border-radius: var(--radius-sm);
    border-color: #a6a6a6;
    padding: 0.5rem 0.75rem;
    background-color: #ffffff;
    color: #000000;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(228, 121, 17, 0.2);
    border-color: #e77600;
}

/* Admin Panels (Flipkart/Blue aesthetic) */
.admin-sidebar {
    background-color: #232f3e;
}

.admin-sidebar-header {
    background: none;
    color: var(--text-light);
    border-bottom: 1px solid #19222d;
}

.admin-menu-item.active a {
    background-color: #19222d;
    border-left-color: var(--accent-yellow);
}

.admin-table th {
    background-color: #f5f7f8;
}

/* Static FAQ accordion detail tags */
.faq-accordion details {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion summary {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.faq-accordion summary:hover {
    background-color: #f7f9fa;
    color: var(--primary);
}

.faq-accordion details[open] summary {
    border-bottom: 1px solid var(--border-color);
    background-color: #f7f9fa;
}

.faq-accordion-content {
    padding: 1.5rem;
    background-color: #ffffff;
    color: #333333;
}

/* Profile Layouts */
.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 1rem;
    align-items: start;
}

@media (max-width: 992px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
}

.profile-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 10px rgba(40, 116, 240, 0.3);
}

.status-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending {
    background-color: var(--warning-light);
    color: var(--warning);
}

.status-processing {
    background-color: var(--primary-light);
    color: var(--primary);
}

.status-shipped {
    background-color: #e3f2fd;
    color: #0288d1;
}

.status-delivered {
    background-color: var(--success-light);
    color: var(--success);
}

.status-cancelled {
    background-color: var(--danger-light);
    color: var(--danger);
}

/* ========================================================================== 
   NexusStore 2026 interface system
   ========================================================================== */

:root {
    --accent-orange: #ff7657;
    --accent-orange-hover: #e85f40;
    --bg-card: #ffffff;
    --text-muted: #706f80;
    --text-light: #ffffff;
    --border-color: #e7e6ee;
    --deal-green: #138a62;
    --success: #138a62;
    --success-light: #e7f7f1;
    --danger-light: #fff0f2;
    --warning: #a66a09;
    --warning-light: #fff6dc;
    --shadow-sm: 0 1px 2px rgba(24, 23, 43, 0.04), 0 5px 18px rgba(24, 23, 43, 0.04);
    --shadow-md: 0 12px 36px rgba(37, 31, 80, 0.08);
    --shadow-lg: 0 24px 60px rgba(37, 31, 80, 0.14);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --transition: all 180ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 0 0, rgba(101, 88, 245, 0.07), transparent 24rem),
        var(--bg-base);
    font-size: 15px;
    min-height: 100vh;
}

::selection {
    background: #dcd8ff;
    color: #201875;
}

.container {
    max-width: 1280px;
    padding-inline: 24px;
}

main.container {
    min-height: 68vh;
    padding-top: 30px;
    padding-bottom: 54px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Header */
.main-header {
    color: var(--text-main);
    background: var(--bg-header);
    border-bottom: 1px solid rgba(231, 230, 238, 0.82);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.header-container {
    min-height: 76px;
    gap: 32px;
}

.brand {
    color: var(--text-main);
    gap: 10px;
    flex: 0 0 auto;
}

.brand:hover {
    color: var(--text-main);
    transform: translateY(-1px);
}

.brand-word {
    font-size: 1.27rem;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.brand-word>span {
    color: var(--primary);
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.9rem;
    border-radius: 11px;
    background: linear-gradient(145deg, #7d72ff, #5041dc);
    box-shadow: 0 8px 20px rgba(101, 88, 245, 0.28);
    transform: rotate(-4deg);
}

.search-form {
    max-width: 540px;
    height: 46px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #f0f0f5;
    box-shadow: none;
}

.search-form:focus-within {
    background: #fff;
    border-color: rgba(101, 88, 245, 0.42);
    box-shadow: 0 0 0 4px rgba(101, 88, 245, 0.1);
}

.search-input {
    background: transparent;
    padding: 0 18px;
    font-size: 0.88rem;
}

.search-input::placeholder {
    color: #92909f;
}

.search-btn {
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--text-main);
    background: transparent;
    border-radius: 12px;
}

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

.actions-nav {
    gap: 10px;
    margin-left: auto;
}

.account-menu,
.icon-link,
.sign-out-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    border-radius: 12px;
    padding: 6px 9px;
}

.account-menu:hover,
.icon-link:hover,
.sign-out-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.account-icon,
.cart-icon {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
}

.account-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.account-copy small {
    color: var(--text-muted);
    font-size: 0.66rem;
    margin-bottom: 3px;
}

.account-copy strong,
.account-copy a {
    font-size: 0.78rem;
    font-weight: 800;
}

.icon-link {
    font-size: 0.8rem;
    font-weight: 800;
    position: relative;
}

.cart-count-badge {
    top: 1px;
    left: 31px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border-radius: 20px;
    background: var(--accent-orange);
    border: 2px solid #fff;
    font-size: 0.61rem;
}

.sign-out-link {
    font-size: 0.78rem;
    font-weight: 700;
}

.nav-strip {
    color: var(--text-main);
    background: var(--bg-nav-strip);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
}

.nav-strip-container {
    height: 45px;
    gap: 7px;
    font-size: 0.76rem;
}

.nav-strip-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
    padding: 7px 11px;
    border-radius: 9px;
    font-weight: 700;
}

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

.nav-strip-link:first-child {
    color: var(--primary);
    background: var(--primary-light);
}

/* Buttons and controls */
.btn {
    min-height: 42px;
    padding: 0.7rem 1.15rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.82rem;
    line-height: 1;
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(101, 88, 245, 0.2);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 12px 26px rgba(101, 88, 245, 0.28);
}

.btn-yellow {
    color: #201f2b;
    background: var(--accent-yellow);
    border-color: transparent;
}

.btn-yellow:hover {
    color: #201f2b;
    background: var(--accent-yellow-hover);
}

.btn-orange {
    color: #fff;
    background: var(--accent-orange);
}

.btn-orange:hover {
    background: var(--accent-orange-hover);
}

.btn-secondary {
    color: var(--text-main);
    border-color: var(--border-color);
    background: #fff;
}

.btn-secondary:hover {
    color: var(--primary);
    border-color: #c9c4ff;
    background: var(--primary-light);
}

.btn-danger {
    background: var(--danger);
}

.btn-sm {
    min-height: 34px;
    padding: 0.55rem 0.75rem;
    font-size: 0.73rem;
}

.icon-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 800;
}

.form-control,
.sort-select {
    width: 100%;
    min-height: 46px;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    outline: none;
    color: var(--text-main);
    background: #fff;
    transition: var(--transition);
}

textarea.form-control {
    resize: vertical;
}

.form-control:focus,
.sort-select:focus {
    border-color: rgba(101, 88, 245, 0.55);
    box-shadow: 0 0 0 4px rgba(101, 88, 245, 0.1);
}

.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.82rem;
}

/* Home hero */
.promo-slider {
    height: min(520px, 39vw);
    min-height: 440px;
    max-height: none;
    aspect-ratio: auto;
    margin: 0 0 18px;
    border: 0;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
}

.promo-slide {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
    overflow: hidden;
    padding: 60px 7%;
    color: #fff;
    background:
        radial-gradient(circle at 81% 24%, rgba(255, 216, 113, 0.28), transparent 16rem),
        radial-gradient(circle at 61% 100%, rgba(169, 118, 255, 0.28), transparent 20rem),
        linear-gradient(125deg, #17162b 0%, #282052 52%, #5844c9 100%);
}

.promo-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, transparent 35%, #000);
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: #f4d873;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.promo-slide h1 {
    max-width: 680px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(3.1rem, 5vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

.promo-slide h1 em {
    color: #bfb8ff;
    font-style: normal;
}

.promo-slide p {
    max-width: 590px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-actions .btn {
    min-height: 52px;
    padding-inline: 22px;
}

.hero-proof {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0 7px;
    font-size: 0.8rem;
}

.hero-proof strong {
    font-size: 1rem;
}

.hero-proof .stars-rating {
    font-size: 0.68rem;
}

.hero-proof small {
    grid-column: 1 / -1;
    margin-top: 2px;
    color: rgba(255, 255, 255, .55);
}

.hero-visual {
    min-height: 340px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}

.orbit-one {
    width: 340px;
    height: 340px;
    top: 0;
    right: 10px;
}

.orbit-two {
    width: 250px;
    height: 250px;
    top: 45px;
    right: 55px;
    border-style: dashed;
}

.hero-product {
    position: absolute;
    display: grid;
    place-items: center;
    color: #25213d;
    background: rgba(255, 255, 255, .93);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 25px 55px rgba(10, 7, 31, .3);
    backdrop-filter: blur(10px);
}

.hero-product-main {
    width: 210px;
    height: 250px;
    right: 72px;
    top: 44px;
    border-radius: 70px 70px 48px 48px;
    transform: rotate(6deg);
}

.hero-product-main i {
    color: var(--primary);
    font-size: 6.5rem;
}

.hero-product-main small {
    position: absolute;
    bottom: 23px;
    font-size: 0.72rem;
    font-weight: 800;
}

.hero-product-top,
.hero-product-bottom {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    font-size: 2rem;
}

.hero-product-top {
    right: 4px;
    top: 16px;
    transform: rotate(8deg);
    color: #ff7557;
}

.hero-product-bottom {
    right: 280px;
    bottom: 4px;
    transform: rotate(-10deg);
    color: #6257e8;
}

.floating-note {
    position: absolute;
    right: 0;
    bottom: 32px;
    padding: 10px 13px;
    border-radius: 11px;
    color: #fff;
    background: rgba(21, 19, 47, .78);
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 18px 0 68px;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: rgba(255, 255, 255, .75);
}

.benefit-strip>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 4px 12px;
    border-right: 1px solid var(--border-color);
}

.benefit-strip>div:last-child {
    border-right: 0;
}

.benefit-strip>div>span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--primary);
    border-radius: 12px;
    background: var(--primary-light);
}

.benefit-strip p {
    display: flex;
    flex-direction: column;
    font-size: 0.76rem;
}

.benefit-strip strong {
    font-size: 0.77rem;
}

.benefit-strip small {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.65rem;
}

/* Sections, categories, products */
.retail-section {
    margin-bottom: 72px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.retail-section-header {
    margin-bottom: 25px;
    padding: 0;
    border: 0;
    align-items: end;
}

.retail-section-header h2 {
    margin: 0;
    color: var(--text-main);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.section-kicker {
    margin-bottom: 7px;
    color: var(--primary);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 800;
}

.view-all-link:hover {
    color: var(--primary);
    text-decoration: none;
    gap: 12px;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}


.category-card:hover {
    color: inherit;
    transform: translateY(-6px);
    border-color: #d3cffc;
    box-shadow: var(--shadow-md);
}

.category-card:hover::after {
    transform: scale(1.35);
}

.icon-holder {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    color: var(--primary);
    border-radius: 16px;
    background: var(--primary-light);
    font-size: 1.15rem;
}

.category-card:nth-child(2n) .icon-holder {
    color: #d95f43;
    background: #fff0eb;
}

.category-card:nth-child(3n) .icon-holder {
    color: #247e67;
    background: #e9f7f2;
}

.category-card h4 {
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.92rem;
}

.category-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-arrow {
    position: absolute;
    z-index: 1;
    right: 19px;
    bottom: 17px;
    color: var(--primary);
    font-size: 0.75rem;
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    padding: 10px;
    border-color: var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #d6d2f5;
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    height: 220px;
    aspect-ratio: auto;
    margin-bottom: 14px;
    border-radius: 15px;
    background: #f2f2f5;
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(24, 23, 43, .03);
    border-radius: inherit;
    pointer-events: none;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    max-height: none;
    max-width: none;
    object-fit: cover;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.055);
}

.deal-badge {
    top: 20px;
    left: 20px;
    padding: 7px 10px;
    color: #fff;
    border-radius: 8px;
    background: rgba(24, 23, 43, .86);
    backdrop-filter: blur(8px);
    font-size: 0.62rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-info {
    padding: 1px 7px 8px;
}

.product-meta {
    text-transform: uppercase;
    letter-spacing: .09em;
}

.product-name {
    height: auto;
    min-height: 43px;
    margin-bottom: 7px;
    color: var(--text-main) !important;
    font-size: 0.86rem !important;
    font-weight: 800 !important;
    line-height: 1.45;
}

.product-name:hover {
    color: var(--primary) !important;
    text-decoration: none;
}

.rating-pills {
    gap: 7px;
    margin: 0 0 11px !important;
}

.stars-rating {
    color: #f3ac35;
    font-size: 0.68rem;
    letter-spacing: 1px;
}

.reviews-count {
    color: var(--text-muted);
    font-size: 0.68rem;
}

.reviews-count:hover {
    color: var(--primary);
    text-decoration: none;
}

.price-container {
    gap: 7px;
}

.price-main {
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.price-strike,
.price-save {
    font-size: 0.68rem;
}

.price-save {
    padding: 3px 6px;
    border-radius: 6px;
    background: var(--success-light);
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.stock-status-text {
    font-size: 0.68rem;
}

.product-card-footer .btn {
    gap: 6px;
}

/* Catalog and detail */
.shop-layout {
    grid-template-columns: 238px minmax(0, 1fr);
    gap: 24px;
    margin-top: 0;
}

.shop-sidebar {
    position: sticky;
    top: 142px;
    padding: 22px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.filter-title {
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 0.7rem;
    letter-spacing: .1em;
}

.filter-group {
    margin-bottom: 22px;
    padding-bottom: 20px;
}

.filter-item {
    margin-bottom: 4px;
}

.filter-link {
    padding: 8px 10px;
    color: var(--text-muted);
    border-radius: 9px;
    font-size: 0.78rem;
}

.filter-link:hover,
.filter-link.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 800;
}

.shop-header {
    min-height: 58px;
    padding: 9px 14px 9px 18px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.sort-select {
    min-height: 38px;
    padding: 7px 11px;
}

.detail-layout {
    grid-template-columns: minmax(300px, 1.05fr) 1.25fr .82fr;
    gap: 28px;
    padding: 28px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.detail-img-box {
    max-height: 480px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #f1f1f4;
}

.detail-img-box img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
}

.detail-title {
    padding-bottom: 18px;
    color: var(--text-main);
    border-color: var(--border-color);
    font-size: 1.65rem;
    font-weight: 800;
}

.detail-price-red {
    color: var(--text-main);
    letter-spacing: -.05em;
}

.detail-desc-box p {
    color: var(--text-muted);
    line-height: 1.75;
}

.detail-buy-box {
    padding: 22px;
    border-radius: 18px;
    background: #fafafd;
}

.detail-buy-box .price-main {
    color: var(--text-main);
}

.ratings-summary-container {
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.rating-bar-bg {
    height: 9px;
    border-radius: 20px;
}

.rating-bar-fill {
    border-radius: 20px;
    background: linear-gradient(90deg, #f4c254, #f09e37);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
}

.reviews-section,
.rating-form {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
}

.review-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.stars {
    color: #f3ac35;
}

/* Cart, checkout, profile and static pages */
.cart-layout {
    grid-template-columns: minmax(0, 2fr) minmax(280px, .82fr);
    gap: 24px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 18px !important;
}

.cart-table,
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.cart-table th,
.admin-table th {
    padding: 14px 16px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    background: #fafafd;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-align: left;
    text-transform: uppercase;
}

.cart-table td,
.admin-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8rem;
}

.cart-table tbody tr:last-child td,
.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.cart-table tbody tr:hover,
.admin-table tbody tr:hover {
    background: #fbfaff;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 220px;
}

.cart-product-img {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 12px;
    background: #f1f1f4;
}

.summary-card {
    height: fit-content;
    padding: 24px !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: var(--shadow-md);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 0;
}

.summary-line.total {
    margin-top: 10px;
    padding-top: 17px;
    border-top: 1px solid var(--border-color);
    font-size: 1.05rem;
}

.profile-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
}

.profile-card {
    position: sticky;
    top: 145px;
    padding: 28px;
    border-radius: 20px;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    font-size: 2rem;
    background: linear-gradient(145deg, #8177ff, #5547dc);
    box-shadow: 0 12px 26px rgba(101, 88, 245, .25);
}

.status-pill {
    padding: 6px 9px;
    border-radius: 8px;
    font-size: .62rem;
    letter-spacing: .04em;
}

.success-card {
    max-width: 760px;
    margin: 35px auto;
    padding: 42px !important;
    border: 1px solid var(--border-color);
    border-radius: 26px !important;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.success-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    color: #fff;
    border-radius: 50%;
    background: var(--success);
    font-size: 1.8rem;
    box-shadow: 0 13px 28px rgba(19, 138, 98, .25);
}

.faq-accordion details {
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.faq-accordion summary {
    padding: 18px 20px;
}

.faq-accordion summary:hover,
.faq-accordion details[open] summary {
    color: var(--primary);
    background: var(--primary-light);
}

.faq-accordion-content {
    color: var(--text-muted);
}

/* Authentication */
.auth-wrapper {
    position: relative;
    max-width: 470px;
    margin: 35px auto 50px;
    padding: 36px !important;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 180px;
    height: 180px;
    top: -55px;
    right: -70px;
    border-radius: 50%;
    background: rgba(101, 88, 245, .15);
    filter: blur(3px);
}

.auth-header {
    margin-bottom: 28px;
    text-align: center;
}

.auth-header::before {
    content: '\f007';
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: var(--primary);
    border-radius: 15px;
    background: var(--primary-light);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.auth-header h2 {
    color: var(--text-main);
    font-size: 1.8rem;
}

.auth-header p {
    font-size: 0.78rem;
}

.auth-footer {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: .78rem;
}

/* ============================================
   ADMIN PANEL â€” Complete UI System
   ============================================ */

.admin-body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Layout */
.admin-container {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
    background: #f0f2f8;
}

.admin-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100vh;
}

/* ============================================
   SIDEBAR
   ============================================ */
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    color: rgba(255, 255, 255, .78);
    background:
        radial-gradient(circle at 15% 0%, rgba(99, 102, 241, .35) 0%, transparent 60%),
        radial-gradient(circle at 85% 100%, rgba(109, 91, 244, .22) 0%, transparent 50%),
        #0f0e24;
    z-index: 200;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .1) transparent;
}

.admin-sidebar::-webkit-scrollbar {
    width: 4px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
}

/* Sidebar Header / Brand */
.admin-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    flex-shrink: 0;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-brand-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 11px;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, .4);
}

.sidebar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sidebar-brand-name {
    font-size: .92rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
}

.sidebar-brand-role {
    font-size: .64rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.sidebar-close-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    font-size: .8rem;
}

.sidebar-close-btn:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

/* Nav Groups */
.admin-nav {
    flex: 1;
    padding: 12px 14px;
}

.admin-nav-group {
    margin-bottom: 6px;
}

.admin-nav-label {
    display: block;
    padding: 8px 10px 5px;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
}

.admin-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-menu-item a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    color: rgba(255, 255, 255, .6);
    border-radius: 10px;
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .18s ease;
    position: relative;
}

.admin-menu-item a i {
    width: 17px;
    text-align: center;
    font-size: .8rem;
    flex-shrink: 0;
}

.admin-menu-item a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.admin-menu-item.active a {
    color: #fff;
    background: linear-gradient(135deg, rgba(99, 102, 241, .85), rgba(139, 92, 246, .85));
    box-shadow: 0 4px 14px rgba(99, 102, 241, .35);
}

.admin-menu-item.active a::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #818cf8;
    border-radius: 0 3px 3px 0;
}

/* Sidebar Submenu (e.g., Products) */
.admin-submenu-caret {
    margin-left: auto;
    font-size: .65rem;
    transition: transform .18s ease;
}

.has-submenu.open>.admin-submenu-toggle .admin-submenu-caret {
    transform: rotate(180deg);
}

.admin-submenu {
    list-style: none;
    margin: 2px 0 4px 28px;
    padding: 0;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.has-submenu.open .admin-submenu {
    display: flex;
}

.admin-submenu li a {
    display: block;
    padding: 7px 10px;
    color: rgba(255, 255, 255, .55);
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .18s ease;
}

.admin-submenu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.admin-submenu li.active a {
    color: #fff;
    background: rgba(99, 102, 241, .25);
}

/* Nav Badge (e.g., pending orders) */
.nav-badge {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ef4444;
    color: #fff;
    border-radius: 10px;
    font-size: .65rem;
    font-weight: 800;
    line-height: 1;
}

/* Sidebar Footer / User Card */
.admin-sidebar-footer {
    flex-shrink: 0;
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.admin-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.admin-user-avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.admin-user-details {
    flex: 1;
    min-width: 0;
}

.admin-user-name {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-user-role {
    display: block;
    font-size: .62rem;
    color: rgba(255, 255, 255, .4);
    margin-top: 1px;
}

.admin-logout-btn {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: all .18s ease;
    flex-shrink: 0;
}

.admin-logout-btn:hover {
    color: #f87171;
    background: rgba(248, 113, 113, .12);
}

/* Mobile Overlay */
.admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 190;
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.admin-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   TOP HEADER BAR
   ============================================ */
.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 64px;
    padding: 0 clamp(16px, 3vw, 40px);
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
}

.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Mobile menu toggle (hidden on desktop) */
.admin-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-size: .9rem;
    flex-shrink: 0;
}

.admin-menu-toggle:hover {
    background: var(--bg-base);
}

/* Breadcrumb */
.admin-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .75rem;
    overflow: hidden;
}

.breadcrumb-home {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.breadcrumb-home:hover {
    color: var(--primary);
}

.breadcrumb-sep {
    color: var(--border-color);
    font-size: .6rem;
}

.breadcrumb-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

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

.breadcrumb-current {
    color: var(--text-main);
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Topbar action buttons */
.topbar-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 9px;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .18s ease;
    white-space: nowrap;
}

.topbar-action-btn:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .3);
}

.topbar-icon-btn {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: .85rem;
    transition: all .18s ease;
    background: transparent;
}

.topbar-icon-btn:hover {
    color: var(--text-main);
    background: var(--bg-base);
    border-color: #c7d2e8;
}

.topbar-logout:hover {
    color: #ef4444;
    border-color: #fecaca;
    background: #fff5f5;
}

/* ============================================
   ADMIN MAIN CONTENT
   ============================================ */
.admin-main {
    flex: 1;
    min-width: 0;
    padding: 28px clamp(16px, 3.5vw, 44px) 60px;
}

.admin-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: .82rem;
    font-weight: 600;
    animation: slideDown .25s ease;
    transition: opacity .4s, transform .4s;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PAGE HEADERS, METRICS & CARDS
   ============================================ */
.admin-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.admin-page-header h1 {
    margin: 0 0 6px;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.admin-page-header p {
    font-size: .78rem;
    margin: 0;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.metric-card {
    position: relative;
    min-height: 142px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 19px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.metric-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    right: -42px;
    bottom: -42px;
    border-radius: 50%;
    background: currentColor;
    opacity: .06;
}

.metric-details h3 {
    margin: 0 0 7px;
    color: var(--text-main);
    font-size: 1.55rem;
}

.metric-details span {
    color: var(--text-muted);
    font-size: .68rem;
    font-weight: 700;
}

.metric-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1rem;
}

.metric-sales {
    color: #138a62;
}

.metric-sales .metric-icon {
    background: #e7f7f1;
}

.metric-orders {
    color: #6558f5;
}

.metric-orders .metric-icon {
    background: #efedff;
}

.metric-products {
    color: #dc664a;
}

.metric-products .metric-icon {
    background: #fff0eb;
}

.metric-users {
    color: #a66a09;
}

.metric-users .metric-icon {
    background: #fff6dc;
}

.admin-card {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.admin-card-header {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

.admin-table th {
    background: #fafafd;
}

.image-preview-container {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border: 1px dashed #cfccd9;
    border-radius: 16px;
    background: #fafafd;
}

.image-preview-box {
    width: 120px;
    height: 100px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #efeff3;
}

.image-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   NAV LINKS TOGGLE SWITCH (Settings page)
   ============================================ */
.nav-toggle-switch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}

.nav-toggle-switch input {
    display: none;
}

.nav-toggle-slider {
    position: relative;
    width: 42px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    transition: background .2s ease;
}

.nav-toggle-slider::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.nav-toggle-switch input:checked+.nav-toggle-slider {
    background: #22c55e;
}

.nav-toggle-switch input:checked+.nav-toggle-slider::after {
    transform: translateX(18px);
}

.nav-toggle-label {
    font-size: .65rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .admin-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: 270px;
        transform: translateX(-100%);
        z-index: 200;
    }

    .admin-sidebar.is-open {
        transform: translateX(0);
    }

    .admin-overlay {
        display: block;
    }

    .admin-menu-toggle {
        display: flex;
    }

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

    .topbar-action-btn span {
        display: none;
    }

    .topbar-action-btn {
        padding: 7px 10px;
    }
}

/* Footer */
.main-footer {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding: 64px 0 25px;
    color: rgba(255, 255, 255, .68);
    border: 0;
    background: #17162b;
}

.main-footer::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    right: -180px;
    top: -250px;
    border-radius: 50%;
    background: rgba(101, 88, 245, .22);
    filter: blur(2px);
}

.footer-grid {
    position: relative;
    grid-template-columns: 1.3fr .75fr .75fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-col {
    max-width: 320px;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 18px;
    color: #fff;
}

.footer-brand:hover {
    color: #fff;
}

.footer-brand .brand-word>span {
    color: #aaa1ff;
}

.footer-col>p {
    color: rgba(255, 255, 255, .53);
    font-size: .74rem;
    line-height: 1.8;
}

.footer-col h4 {
    margin-bottom: 18px;
    color: #fff;
    font-size: .7rem;
    letter-spacing: .1em;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .56);
    font-size: .73rem;
}

.footer-col ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-trust {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    color: #9e96ec;
    font-size: .7rem;
    font-weight: 800;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.newsletter-form .form-control {
    color: #fff;
    border-color: rgba(255, 255, 255, .13) !important;
    background: rgba(255, 255, 255, .07) !important;
    font-size: .75rem !important;
}

.newsletter-form .btn {
    min-width: 46px;
    padding: 0;
}

.footer-bottom {
    position: relative;
    padding-top: 25px;
    color: rgba(255, 255, 255, .38);
    border-color: rgba(255, 255, 255, .08);
    font-size: .68rem;
}

.social-links {
    display: flex;
    gap: 7px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .66);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
}

.social-links a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
    .header-container {
        gap: 18px;
    }

    .account-copy,
    .cart-label,
    .sign-out-link span {
        display: none;
    }

    .account-menu,
    .icon-link,
    .sign-out-link {
        padding: 5px;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-slide {
        grid-template-columns: 1.1fr .9fr;
        padding-inline: 5%;
    }

    .hero-product-main {
        right: 35px;
    }

    .hero-product-bottom {
        right: 220px;
    }

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

    .detail-buy-box {
        grid-column: 2;
    }

    .admin-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 820px) {
    .container {
        padding-inline: 18px;
    }

    .header-container {
        height: auto;
        min-height: 70px;
        flex-wrap: wrap;
        padding-block: 12px;
    }

    .brand {
        order: 1;
    }

    .actions-nav {
        order: 2;
    }

    .search-form {
        order: 3;
        width: 100%;
        min-width: 0;
        max-width: none;
        flex: 1 1 100%;
    }

    .search-input {
        min-width: 0;
    }

    .nav-strip-container {
        padding-inline: 12px;
    }

    .nav-strip-container>span {
        display: none;
    }

    .promo-slider {
        min-height: 500px;
        height: auto;
    }

    .promo-slide {
        position: relative;
        min-height: 500px;
        grid-template-columns: 1fr;
        padding: 52px 8%;
    }

    .promo-slide h1 {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }

    .hero-visual {
        display: none;
    }

    .benefit-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-strip>div {
        justify-content: flex-start;
        border-right: 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .shop-sidebar,
    .profile-card {
        position: static;
    }

    .detail-layout {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .detail-buy-box {
        grid-column: auto;
    }

    .reviews-grid,
    .ratings-summary-container {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr !important;
    }

    .admin-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .admin-main {
        padding: 20px 16px 50px;
    }
}

@media (max-width: 560px) {
    main.container {
        padding-top: 20px;
    }

    .brand-word {
        font-size: 1.1rem;
    }

    .brand-mark {
        width: 33px;
        height: 33px;
    }

    .sign-out-link {
        display: none;
    }

    .nav-strip-link {
        padding-inline: 9px;
    }

    .promo-slider {
        min-height: 470px;
        border-radius: 24px;
    }

    .promo-slide {
        min-height: 470px;
        padding: 46px 25px;
    }

    .promo-slide h1 {
        font-size: 3rem;
    }

    .promo-slide p {
        font-size: .88rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .benefit-strip {
        grid-template-columns: 1fr;
        margin-bottom: 52px;
        padding: 12px;
    }

    .benefit-strip>div {
        padding: 6px;
    }

    .category-cards {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 175px;
    }

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

    .product-img-wrapper {
        height: 280px;
    }

    .retail-section {
        margin-bottom: 52px;
    }

    .retail-section-header {
        align-items: flex-start;
        gap: 14px;
    }

    .shop-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-header form {
        width: 100%;
    }

    .sort-select {
        flex: 1;
    }

    .admin-page-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-metrics {
        grid-template-columns: 1fr;
    }

    .metric-card {
        min-height: 116px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-wrapper {
        padding: 28px 22px !important;
    }

    .image-preview-container {
        align-items: stretch;
        flex-direction: column;
    }

    .image-preview-box {
        width: 100%;
        height: 180px;
    }
}

/* ========================================================================== 
   Sree Vastra â€” Bootstrap fashion boutique theme
   ========================================================================== */

:root {
    --accent-orange: #b6744f;
    --accent-orange-hover: #955a3b;
    --bg-card: #ffffff;
    --text-muted: #776b6e;
    --border-color: #e9e1dd;
    --deal-green: #58745d;
    --success: #58745d;
    --success-light: #edf3ee;
    --shadow-sm: 0 5px 18px rgba(58, 38, 42, .05);
    --shadow-md: 0 18px 45px rgba(58, 38, 42, .09);
    --shadow-lg: 0 26px 65px rgba(58, 38, 42, .13);
}

body {
    color: var(--text-main);
    background: var(--bg-base);
}

h1,
h2 {
    font-family: var(--font-heading);
    letter-spacing: -.025em;
}

h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 600;
}

.main-header {
    padding: 0;
    background: rgba(255, 255, 255, .96);
    border-color: var(--border-color);
}

.header-container {
    min-height: 82px;
}

.brand {
    text-decoration: none;
}

.brand-mark {
    width: 38px;
    height: 38px;
    color: #fff;
    border-radius: 50% 50% 48% 52%;
    background: var(--primary);
    box-shadow: none;
    transform: none;
}

.brand-word {
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -.045em;
}

.brand-word>span {
    color: var(--primary);
}

.search-form {
    max-width: 470px;
    height: 44px;
    border-color: var(--border-color);
    border-radius: 0;
    background: #fbfaf8;
}

.search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123, 38, 61, .08);
}

.search-btn {
    width: 44px;
    height: 44px;
    border-radius: 0;
}

.account-icon,
.cart-icon {
    border: 0;
    border-radius: 50%;
    background: #f7f1ef;
}

.account-menu:hover,
.icon-link:hover,
.sign-out-link:hover {
    color: var(--primary);
    background: transparent;
}

.cart-count-badge {
    background: var(--primary);
}

.fashion-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
}

.fashion-menu-toggle:focus {
    box-shadow: 0 0 0 3px rgba(123, 38, 61, .1);
}

.nav-strip {
    background: #fff;
    border-color: var(--border-color);
}

.nav-strip-container {
    justify-content: center;
    height: 48px;
    gap: 3px;
}

.nav-strip-link {
    color: #5e5154;
    padding: 8px 14px;
    border-radius: 0;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.nav-strip-link:first-child {
    color: inherit;
    background: transparent;
}

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

.nav-strip-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    margin: 5px auto -6px;
    background: var(--primary);
    transition: width .2s ease;
}

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

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

main.container {
    max-width: 1320px;
    padding-top: 32px;
}

/* Bootstrap-led homepage */
.fashion-hero {
    margin-bottom: 0;
    border-radius: 2px;
    background: #efe6dc;
}

.fashion-hero .row {
    min-height: 590px;
}

.fashion-hero-copy {
    max-width: 600px;
    padding: 70px clamp(38px, 7vw, 92px);
}

.fashion-kicker {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.fashion-hero h1 {
    margin-bottom: 24px;
    color: #332327;
    font-size: clamp(4rem, 6vw, 6.4rem);
    line-height: .83;
    letter-spacing: -.065em;
}

.fashion-hero h1 em {
    color: var(--primary);
    font-weight: 500;
}

.fashion-hero-copy>p {
    max-width: 515px;
    margin-bottom: 30px;
    color: #6e5e60;
    font-family: var(--font-sans);
    font-size: 1.35rem;
    line-height: 1.5;
}

.fashion-hero .btn-dark {
    min-height: 52px;
    padding: 1rem 1.6rem;
    border-color: var(--primary);
    border-radius: 0;
    background: var(--primary);
}

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

.fashion-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.fashion-text-link:hover {
    color: var(--primary);
    gap: 12px;
}

.fashion-hero-note span {
    display: flex;
    flex-direction: column;
    padding-left: 13px;
    border-left: 1px solid rgba(123, 38, 61, .25);
}

.fashion-hero-note strong {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.fashion-hero-note small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: .66rem;
}

.fashion-hero-image {
    position: relative;
    min-height: 590px;
    overflow: hidden;
}

.fashion-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(38, 20, 25, .22), transparent 42%);
}

.fashion-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s ease;
}

.fashion-hero:hover .fashion-hero-image img {
    transform: scale(1.025);
}

.fashion-image-tag {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    padding: 12px 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(48, 31, 35, .52);
    backdrop-filter: blur(10px);
    font-family: var(--font-sans);
    font-size: 1rem;
}

.fashion-image-tag span {
    margin-right: 8px;
    color: #e3c88e;
    font-family: var(--font-sans);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.boutique-benefits {
    margin-bottom: 90px;
    padding: 24px 0;
    border: 1px solid var(--border-color);
    border-top: 0;
    background: #fff;
}

.boutique-benefits>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 5px 16px;
    border-right: 1px solid var(--border-color);
}

.boutique-benefits>div:last-child {
    border-right: 0;
}

.boutique-benefits i {
    color: var(--primary);
    font-size: .9rem;
}

.boutique-benefits span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.boutique-benefits strong {
    font-size: .7rem;
}

.boutique-benefits small {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: .61rem;
}

.fashion-section {
    margin-bottom: 100px;
}

.section-heading {
    max-width: 600px;
    margin-bottom: 38px;
}

.fashion-section h2,
.style-story h2 {
    color: var(--text-main);
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    line-height: .95;
}

.section-heading p {
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 1.12rem;
}

.collection-card {
    min-height: 480px;
    overflow: hidden;
    border-radius: 0;
    background: #4c3036;
    box-shadow: none;
}

.collection-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform .65s ease;
}

.collection-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 17, 21, .78), transparent 58%);
}

.collection-card:hover .card-img {
    transform: scale(1.045);
}

.collection-card .card-img-overlay {
    z-index: 1;
    padding: 26px;
    color: #fff;
}

.collection-card small {
    color: rgba(255, 255, 255, .7);
    font-size: .64rem;
}

.collection-card h3 {
    margin: 6px 0 10px;
    font-size: 2rem;
}

.collection-card .card-img-overlay>span {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.collection-card .card-img-overlay>span i {
    margin-left: 6px;
}

.fashion-product-card {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.fashion-product-image {
    position: relative;
    display: block;
    height: 390px;
    overflow: hidden;
    background: #efeae6;
}

.fashion-product-image .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform .55s ease;
}

.fashion-product-card:hover .card-img-top {
    transform: scale(1.04);
}

.fashion-product-image .badge {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 7px 9px;
    border-radius: 0;
    color: var(--text-main) !important;
    background: rgba(255, 255, 255, .9) !important;
    font-size: .55rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wishlist-button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--text-main);
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
}

.fashion-product-card .card-body {
    background: transparent;
}

.product-category {
    color: var(--text-muted);
    font-size: .59rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.fashion-product-name {
    display: block;
    margin-top: 5px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.fashion-product-name:hover {
    color: var(--primary);
}

.fashion-price {
    font-size: .82rem;
}

.fashion-product-card del {
    color: #a09698;
    font-size: .66rem;
}

.fashion-rating {
    color: #8e7653;
    font-size: .65rem;
}

.style-story {
    margin-bottom: 60px;
    background: #2f2024;
}

.style-story>div {
    min-height: 500px;
}

.style-story-copy {
    max-width: 600px;
    padding: 70px clamp(38px, 7vw, 95px);
    color: #fff;
}

.style-story-copy .fashion-kicker {
    color: #d9b976;
}

.style-story h2 {
    color: #fff;
}

.style-story p {
    margin: 22px 0 30px;
    color: rgba(255, 255, 255, .66);
    font-family: var(--font-sans);
    font-size: 1.2rem;
    line-height: 1.6;
}

.style-story .btn-outline-dark {
    min-height: 48px;
    color: #fff;
    border-color: rgba(255, 255, 255, .65);
    border-radius: 0;
}

.style-story .btn-outline-dark:hover {
    color: #2f2024;
    background: #fff;
}

/* Fashion treatment for catalog and shared commerce pages */
.shop-sidebar,
.shop-header,
.detail-layout,
.summary-card,
.profile-card,
.auth-wrapper,
.retail-section,
.success-card {
    border-color: var(--border-color) !important;
    border-radius: 0 !important;
}

.shop-sidebar {
    top: 146px;
}

.filter-link {
    border-radius: 0;
}

.filter-link:hover,
.filter-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.shop-layout .product-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.shop-layout .product-card:hover {
    transform: none;
    box-shadow: none;
}

.shop-layout .product-img-wrapper {
    height: 330px;
    margin: 0 0 14px;
    border-radius: 0;
    background: #eee8e4;
}

.shop-layout .product-info {
    padding: 0 2px 16px;
}

.shop-layout .deal-badge {
    top: 12px;
    left: 12px;
    border-radius: 0;
    background: rgba(255, 255, 255, .92);
    color: var(--text-main);
}

.shop-layout .product-name {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.08rem !important;
}

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

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

.btn-orange {
    border-color: var(--primary);
    background: var(--primary);
}

.btn-orange:hover {
    background: var(--primary-hover);
}

.btn,
.form-control,
.sort-select {
    border-radius: 0;
}

.detail-img-box {
    border-radius: 0;
}

.detail-buy-box {
    border-radius: 0;
    background: #f6f0ed;
}

.main-footer {
    background: #2c1e22;
}

.footer-brand .brand-word>span {
    color: #dbbd7b;
}

.footer-trust {
    color: #d6b875;
}

.newsletter-form .btn {
    color: #2c1e22;
    background: #d6b875;
}

@media (max-width: 991.98px) {
    .fashion-menu-toggle {
        display: block;
    }

    .nav-strip .container {
        display: block;
        padding: 0;
    }

    .nav-strip-container {
        height: auto;
        align-items: stretch;
        flex-direction: column;
        padding: 12px 18px 18px;
    }

    .nav-strip-link {
        width: 100%;
        padding: 10px 4px;
    }

    .nav-strip-link::after {
        display: none;
    }

    .fashion-hero .row {
        min-height: 0;
    }

    .fashion-hero-image,
    .fashion-hero-image img {
        min-height: 500px;
    }

    .fashion-hero-copy {
        max-width: none;
    }

    .boutique-benefits>div:nth-child(2) {
        border-right: 0;
    }

    .boutique-benefits>div {
        padding-block: 12px;
    }

    .collection-card {
        min-height: 520px;
    }
}

@media (max-width: 575.98px) {
    .header-container {
        row-gap: 10px;
    }

    .brand-word {
        font-size: 1.3rem;
    }

    .actions-nav {
        gap: 3px;
    }

    .actions-nav .account-menu,
    .actions-nav .icon-link {
        padding: 0;
    }

    .actions-nav .account-icon,
    .actions-nav .cart-icon {
        width: 32px;
        height: 32px;
    }

    .fashion-menu-toggle {
        width: 34px;
        height: 34px;
        padding: 7px;
    }

    .fashion-hero-copy {
        overflow: hidden;
        padding: 52px 28px;
    }

    .fashion-hero h1 {
        font-size: 3.45rem;
    }

    .fashion-hero-actions {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .fashion-hero-image,
    .fashion-hero-image img {
        min-height: 410px;
    }

    .fashion-image-tag {
        right: 16px;
        bottom: 16px;
    }

    .boutique-benefits {
        margin-bottom: 65px;
    }

    .boutique-benefits>div {
        justify-content: flex-start;
        border-right: 0;
        text-align: left;
    }

    .fashion-section {
        margin-bottom: 70px;
    }

    .collection-card {
        min-height: 470px;
    }

    .fashion-product-image {
        height: 455px;
    }

    .style-story>div {
        min-height: 0;
    }

    .style-story>div:first-child {
        height: 390px;
    }

    .style-story-copy {
        padding: 55px 28px;
    }

    .shop-layout .product-img-wrapper {
        height: 430px;
    }
}

/* ==========================================================================
   Aurelia Jewels storefront override
   ========================================================================== */

:root {
    --accent-orange: #0f766e;
    --accent-orange-hover: #0b5e58;
    --bg-card: #ffffff;
    --text-muted: #71676a;
    --text-light: #ffffff;
    --border-color: #e5ded8;
    --deal-green: #0f766e;
    --success: #0f766e;
    --success-light: #e6f4f2;
    --danger-light: #feeceb;
    --radius-sm: 8px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --shadow-sm: 0 6px 18px rgba(41, 24, 29, .06);
    --shadow-md: 0 18px 45px rgba(41, 24, 29, .1);
    --shadow-lg: 0 24px 70px rgba(41, 24, 29, .14);
}

* {
    letter-spacing: 0 !important;
}

body {
    background: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-sans);
}

h1,
h2 {
    color: var(--text-heading);
    font-family: var(--font-heading);
    letter-spacing: 0 !important;
}

h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0 !important;
}

main.container {
    max-width: 1320px;
    padding-top: 0;
}

.main-header {
    background: #ffffff !important;
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
}

/* Constrain header container width */
.main-header .container,
.nav-strip .container {
    margin: 0 auto !important;
    width: 100% !important;
}

.header-container {
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

/* Brand Logo Redesign */
.brand {
    color: var(--text-main) !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
}

.brand:hover {
    color: var(--primary) !important;
}

.brand-mark {
    background: transparent !important;
    color: var(--accent-yellow) !important;
    font-size: 1.25rem !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    transform: none !important;
}

.brand-word {
    color: var(--accent-yellow) !important;
    font-family: var(--font-heading) !important;
    font-size: 1.55rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
}

.brand-word>span,
.brand span {
    color: var(--primary) !important;
    /* Elegant burgundy gold contrast */
    font-weight: 400 !important;
    margin-left: 0.15rem !important;
}

/* Sleek Search Bar Redesign */
.search-form {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    max-width: 640px !important;
    height: 40px !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 30px !important;
    background: #fcfcfc !important;
    margin: 0 2rem !important;
    box-shadow: none !important;
    overflow: hidden !important;
    transition: var(--transition) !important;
    padding-right: 4px !important;
}

.search-form:focus-within {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(122, 31, 61, 0.06) !important;
    background: #ffffff !important;
}

.search-input {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 0 16px !important;
    color: var(--text-main) !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    font-size: 0.88rem !important;
}

.search-input::placeholder {
    color: #9c8e92 !important;
}

.search-btn {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #7c7074 !important;
    background: transparent !important;
    border-radius: 50% !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
    transition: var(--transition) !important;
}

.search-btn:hover {
    color: var(--primary) !important;
    background: var(--primary-light) !important;
}

/* Actions Menu Redesign */
.actions-nav {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
}

.account-menu,
.icon-link,
.sign-out-link {
    color: var(--text-main) !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    gap: 0.5rem !important;
}

.account-icon,
.cart-icon {
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-main) !important;
    font-size: 0.95rem !important;
    transition: var(--transition) !important;
}

.account-menu:hover .account-icon,
.icon-link:hover .cart-icon,
.sign-out-link:hover .account-icon {
    background: var(--primary-light) !important;
    border-color: rgba(122, 31, 61, 0.15) !important;
    color: var(--primary) !important;
}

.account-copy {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.2 !important;
}

.account-copy small {
    color: var(--text-muted) !important;
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.account-copy strong,
.account-copy a {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--text-main) !important;
    text-decoration: none !important;
}

.account-menu:hover .account-copy strong,
.account-menu:hover .account-copy a {
    color: var(--primary) !important;
}

.cart-count-badge {
    background: var(--primary) !important;
    color: #ffffff !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    position: absolute !important;
    top: -6px !important;
    left: 24px !important;
    border: 2px solid #ffffff !important;
}

.fashion-menu-toggle {
    border-color: var(--border-color) !important;
    border-radius: 50% !important;
}

/* Redesign Navigation Strip */
.nav-strip {
    background: #ffffff !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.nav-strip-container {
    height: 44px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.2rem !important;
    width: 100% !important;
}

.nav-strip-container .flex-grow-1 {
    display: none !important;
}

.nav-strip-link {
    color: #4a3e42 !important;
    padding: 6px 0 !important;
    margin: 0 4px !important;
    border-radius: 0 !important;
    background: transparent !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    position: relative !important;
    transition: color 0.3s ease !important;
    display: inline-block !important;
}

.nav-strip-link:hover {
    color: var(--primary) !important;
    background: transparent !important;
}

.nav-strip-link::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 1px !important;
    background: var(--primary) !important;
    transform: scaleX(0) !important;
    transform-origin: right !important;
    transition: transform 0.3s ease !important;
}

.nav-strip-link:hover::after {
    transform: scaleX(1) !important;
    transform-origin: left !important;
}

.nav-strip-link.sale-link {
    color: var(--primary) !important;
    background: transparent !important;
    font-weight: 700 !important;
}

.nav-strip-link.sale-link::after {
    background: var(--primary) !important;
}

.btn {
    min-height: 42px;
    border-radius: 999px;
    font-weight: 800;
}

.btn-primary,
.btn-orange {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover,
.btn-orange:hover {
    border-color: var(--primary-hover);
    background: var(--primary-hover);
    color: #fff;
}

.btn-secondary {
    border-color: var(--border-color);
    background: #fff;
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: rgba(122, 31, 61, .35);
    background: var(--primary-light);
    color: var(--primary);
}

.jewel-hero {
    position: relative;
    min-height: 650px;
    margin: 0 calc(50% - 50vw) 0;
    overflow: hidden;
    color: #fff;
}

.jewel-hero>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jewel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(24, 13, 17, .84) 0%, rgba(24, 13, 17, .62) 45%, rgba(24, 13, 17, .18) 100%);
}

.jewel-hero-content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    min-height: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 72px 0 86px;
}

.jewel-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jewel-hero .jewel-kicker,
.style-story-copy .jewel-kicker {
    color: #f0c96d;
}

.jewel-hero h1 {
    max-width: 720px;
    margin: 0 0 18px;
    color: #fff;
    font-size: 5.6rem;
    line-height: .92;
}

.jewel-hero p {
    max-width: 650px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.1rem;
    line-height: 1.8;
}

.jewel-hero-actions,
.success-actions,
.cart-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.jewel-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: .84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jewel-hero .jewel-text-link {
    color: #fff;
}

.jewel-text-link:hover {
    color: var(--accent-orange);
}

.jewel-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 48px;
}

.jewel-proof span {
    display: flex;
    flex-direction: column;
    min-width: 96px;
    color: rgba(255, 255, 255, .78);
}

.jewel-proof strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.jewel-proof small {
    font-size: .76rem;
    text-transform: uppercase;
}

.jewel-benefits {
    margin: 0 0 72px;
    border: 1px solid var(--border-color);
    border-top: 0;
    background: #fff;
}

.jewel-benefits>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 14px;
    border-right: 1px solid var(--border-color);
}

.jewel-benefits>div:last-child {
    border-right: 0;
}

.jewel-benefits i {
    color: var(--primary);
}

.jewel-benefits span,
.jewel-spec-grid span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.jewel-benefits strong,
.jewel-spec-grid strong {
    font-size: .82rem;
}

.jewel-benefits small,
.jewel-spec-grid small {
    color: var(--text-muted);
    font-size: .72rem;
}

.jewel-section {
    margin-bottom: 82px;
}

.section-heading {
    max-width: 660px;
    margin-bottom: 34px;
}

.section-heading h1,
.section-heading h2,
.jewel-section h2,
.jewel-story h2,
.shop-intro h1,
.page-heading-row h1 {
    font-size: 3rem;
    line-height: 1.02;
}

.section-heading p,
.shop-intro p,
.about-hero p,
.contact-hero p,
.jewel-story p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.jewel-collection-card {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    color: #fff;
    border-radius: 8px;
    background: #24171b;
}

.jewel-collection-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.jewel-collection-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25, 14, 18, .82), rgba(25, 14, 18, .1));
}

.jewel-collection-card:hover img {
    transform: scale(1.05);
}

.jewel-collection-card span,
.jewel-collection-card strong,
.jewel-collection-card small {
    position: relative;
    z-index: 1;
}

.jewel-collection-card span {
    color: rgba(255, 255, 255, .75);
    font-size: .82rem;
}

.jewel-collection-card strong {
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 2rem;
}

.jewel-collection-card small {
    margin-top: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.jewel-product-card,
.product-card {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.jewel-product-card:hover,
.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(122, 31, 61, .28);
    box-shadow: var(--shadow-md);
}

.jewel-product-image,
.product-img-wrapper {
    position: relative;
    display: block;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0;
    overflow: hidden;
    background: #f4f0ed;
}

.jewel-product-image img,
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    transition: transform .45s ease;
}

.jewel-product-card:hover img,
.product-card:hover img {
    transform: scale(1.04);
}

.jewel-badge,
.deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 9px;
    color: var(--text-main);
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    font-size: .66rem;
    font-weight: 900;
    text-transform: uppercase;
}

.wishlist-button {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--text-main);
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
}

.jewel-product-body,
.product-info {
    padding: 16px;
}

.product-category,
.product-meta {
    color: var(--text-muted);
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jewel-product-name,
.product-name {
    display: block;
    height: auto;
    min-height: 0;
    margin: 5px 0 10px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1.22rem !important;
    font-weight: 600;
    line-height: 1.2;
}

.jewel-product-name:hover,
.product-name:hover {
    color: var(--primary);
    text-decoration: none;
}

.jewel-product-meta,
.stock-action-row,
.sort-form,
.price-input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.jewel-product-meta strong,
.price-main {
    color: var(--primary);
    font-size: 1.08rem;
    font-weight: 900;
}

.jewel-product-meta span,
.stars-rating,
.stars,
.fashion-rating {
    color: #b8872c;
}

.shop-intro,
.page-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 34px 0 26px;
}

.shop-intro p {
    max-width: 720px;
    margin: 0;
}

.breadcrumb-line {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 24px 0 8px;
    color: var(--text-muted);
    font-size: .84rem;
    font-weight: 700;
}

.breadcrumb-line a:hover {
    color: var(--primary);
}

.shop-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
}

.shop-sidebar,
.shop-header,
.summary-card,
.checkout-panel,
.contact-card,
.rating-form,
.review-item,
.ratings-summary-container,
.success-card,
.auth-wrapper {
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.shop-sidebar {
    position: sticky;
    top: 138px;
    padding: 18px;
}

.filter-title {
    color: var(--text-main);
    font-size: .74rem;
    font-weight: 900;
}

.filter-link {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
}

.filter-link:hover,
.filter-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.price-filter-form {
    display: grid;
    gap: 10px;
}

.price-input-row input {
    min-width: 0;
}

.filter-note {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.6;
}

.filter-note i {
    color: var(--primary);
    margin-top: 4px;
}

.shop-header {
    padding: 14px 16px;
}

.sort-select,
.form-control {
    border-radius: 8px;
    border-color: var(--border-color);
}

.sort-select:focus,
.form-control:focus {
    border-color: rgba(122, 31, 61, .48);
    box-shadow: 0 0 0 4px rgba(122, 31, 61, .08);
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 22px;
}

.rating-pills {
    margin-bottom: 10px;
}

.reviews-count {
    color: var(--text-muted);
}

.price-container {
    margin-top: 0;
}

.price-strike {
    color: #a79b9d;
}

.stock-action-row {
    margin-top: 15px;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 900;
}

.stock-status.in {
    color: var(--success);
}

.stock-status.out {
    color: var(--danger);
}

.pager-wrap {
    margin-top: 34px;
}

.empty-state {
    max-width: 640px;
    margin: 48px auto;
    padding: 44px 24px;
    text-align: center;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    background: #fff;
}

.empty-state.compact {
    margin: 0;
    padding: 28px 20px;
}

.empty-state i {
    color: var(--primary);
    font-size: 2.7rem;
    margin-bottom: 14px;
}

.empty-state p {
    color: var(--text-muted);
}

.detail-layout {
    align-items: start;
    grid-template-columns: 1fr 1.2fr 0.85fr;
    gap: 32px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px !important;
    box-shadow: var(--shadow-md);
}

.detail-img-box {
    max-height: none;
    padding: 24px;
    overflow: hidden;
    border-radius: 12px !important;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.detail-img-box img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-img-box:hover img {
    transform: scale(1.04);
}

.detail-title {
    margin-top: 0;
    margin-bottom: 8px;
    border-bottom: 0;
    font-family: var(--font-sans);
    font-size: clamp(1.35rem, 1.1rem + 1vw, 1.6rem);
    font-weight: 600;
    color: #1F2937;
    line-height: 1.3;
}

.detail-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: .88rem;
    color: var(--text-muted);
}

.detail-rating-row .stars {
    color: #b8872c;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.detail-rating-row a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.detail-rating-row a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.detail-price-panel {
    display: grid;
    gap: 4px;
    margin: 20px 0;
    padding: 20px;
    border-radius: 12px !important;
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
}

.detail-price-panel span,
.buy-box-label {
    color: var(--text-muted);
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em !important;
}

.detail-price-panel strong {
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.detail-price-panel small {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 6px;
    line-height: 1.4;
}

.detail-desc-box {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.detail-desc-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.detail-desc-box p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.jewel-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.jewel-spec-grid>div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    background: #ffffff;
    transition: var(--transition);
}

.jewel-spec-grid>div:hover {
    border-color: rgba(122, 31, 61, 0.18);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.jewel-spec-grid i {
    color: var(--primary);
    font-size: 1.3rem;
}

.detail-buy-box {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    background: #fafafa;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.detail-buy-box:hover {
    box-shadow: var(--shadow-md);
}

.detail-buy-box .price-main {
    display: block;
    margin: 8px 0 16px;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.detail-buy-box p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 20px 0;
}

.qty-row label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.qty-row select {
    width: 90px;
    height: 38px;
    border-radius: 8px;
    border-color: var(--border-color);
    padding: 4px 8px;
}

.buy-box-help {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
}

.buy-box-help:hover {
    color: var(--accent-orange);
    transform: translateX(2px);
}

.related-products {
    margin-top: 62px;
}

.reviews-section {
    margin-top: 62px;
}

.ratings-summary-container {
    grid-template-columns: .8fr 1.2fr;
    padding: 22px;
}

.rating-bar-fill {
    background: var(--accent-yellow);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 24px;
}

.review-item,
.rating-form {
    margin-bottom: 16px;
    padding: 18px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    font-weight: 900;
}

.review-item p {
    margin: 10px 0 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.cart-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
}

.cart-shell {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.cart-table {
    width: 100%;
    margin: 0;
}

.cart-table th {
    padding: 14px 16px;
    background: #f7f5f2;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    font-size: .78rem;
    text-transform: uppercase;
}

.cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-product-img {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-product a,
.checkout-item a {
    display: block;
    color: var(--text-main);
    font-weight: 900;
}

.cart-product span {
    display: block;
    margin-top: 4px;
    color: var(--success);
    font-size: .78rem;
    font-weight: 800;
}

.quantity-input {
    width: 78px;
    text-align: center;
}

.icon-btn {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--text-muted);
    border-radius: 50%;
    background: #fff;
}

.icon-btn:hover {
    color: var(--danger);
    background: var(--danger-light);
}

.cart-actions {
    justify-content: space-between;
    margin-top: 18px;
}

.summary-card {
    padding: 20px;
}

.summary-card h3,
.checkout-panel h3,
.contact-card h3 {
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-line.total {
    margin-top: 8px;
    border-bottom: 0;
    font-size: 1.15rem;
}

.summary-line.total strong {
    color: var(--primary);
}

.checkout-panel {
    padding: 24px;
}

.checkout-panel h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.payment-options {
    display: grid;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 22px;
}

.payment-options label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
}

.payment-options input {
    margin-top: 4px;
    accent-color: var(--primary);
}

.payment-options span {
    display: flex;
    flex-direction: column;
}

.payment-options small {
    color: var(--text-muted);
}

.checkout-items {
    display: grid;
    gap: 12px;
    max-height: 310px;
    overflow: auto;
    margin-bottom: 16px;
}

.checkout-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.checkout-item img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
}

.checkout-item span {
    color: var(--text-muted);
    font-size: .82rem;
}

.success-card {
    max-width: 880px;
    margin: 42px auto 80px;
    padding: 42px;
    text-align: center;
}

.success-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: var(--success);
    border: 1px solid rgba(15, 118, 110, .25);
    border-radius: 50%;
    background: var(--success-light);
    font-size: 1.8rem;
}

.success-card>p {
    max-width: 650px;
    margin: 0 auto 24px;
    color: var(--text-muted);
}

.receipt-panel,
.receipt-two-col,
.promise-grid {
    display: grid;
    gap: 14px;
}

.receipt-panel {
    margin: 24px 0;
    text-align: left;
}

.receipt-panel>div,
.receipt-two-col>div,
.promise-grid>div,
.contact-card {
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
}

.receipt-panel>div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.receipt-panel span,
.receipt-totals span {
    color: var(--text-muted);
}

.receipt-total strong,
.receipt-totals strong {
    color: var(--primary);
}

.receipt-items {
    text-align: left;
}

.receipt-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.receipt-item img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.receipt-item small {
    color: var(--text-muted);
}

.success-actions {
    justify-content: center;
    margin-top: 26px;
}

.receipt-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    margin-bottom: 22px;
}

.order-detail-card {
    max-width: 960px;
    text-align: left;
}

.receipt-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
}

.receipt-two-col strong {
    color: var(--primary);
}

.receipt-two-col p {
    margin: 8px 0 0;
    color: var(--text-muted);
}

.receipt-totals {
    display: grid;
    gap: 8px;
    max-width: 320px;
    margin: 22px 0 0 auto;
}

.receipt-totals>div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.receipt-totals>div:last-child {
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.about-hero,
.contact-hero,
.jewel-story {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 56px;
    margin: 48px 0 96px;
}

.about-hero img,
.contact-hero img,
.jewel-story img {
    width: 100%;
    height: 480px;
    border-radius: 16px !important;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-hero:hover img,
.contact-hero:hover img,
.jewel-story:hover img {
    transform: scale(1.015);
    box-shadow: var(--shadow-lg);
}

.about-image-collage {
    position: relative;
    height: 480px;
    border-radius: 16px;
}

.about-image-collage .collage-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-image-collage .collage-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-hover));
    color: #fff;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em !important;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    border: 2px solid #fff;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.about-stats>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stats strong {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1;
    font-weight: 600;
}

.about-stats span {
    font-size: 0.76rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em !important;
}

.about-hero h1,
.contact-hero h1,
.jewel-story h2 {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.promise-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 36px;
}

.promise-grid>div {
    padding: 3.5rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 16px !important;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promise-grid>div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-orange));
    opacity: 0;
    transition: var(--transition);
}

.promise-grid>div:hover {
    transform: translateY(-8px);
    border-color: rgba(122, 31, 61, 0.15);
    box-shadow: 0 20px 40px rgba(122, 31, 61, 0.08);
}

.promise-grid>div:hover::before {
    opacity: 1;
}

.promise-grid i {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-light);
    transition: var(--transition);
}

.promise-grid>div:hover i {
    transform: rotate(360deg);
    background: var(--primary);
    color: #fff;
}

.promise-grid h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.promise-grid p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-page {
    max-width: 940px;
    margin: 38px auto 76px;
}

.faq-accordion details {
    border-radius: 8px;
}

.faq-accordion summary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-accordion summary i {
    color: var(--primary);
}

.code-card {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #f7f5f2;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.contact-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.contact-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.contact-checklist i {
    color: var(--primary);
    font-size: 1.15rem;
}

.contact-layout {
    margin-bottom: 96px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: start;
}

.contact-info-stack {
    display: grid;
    gap: 24px;
}

.contact-card {
    padding: 28px;
    border: 1px solid var(--border-color);
    border-radius: 16px !important;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(122, 31, 61, 0.2);
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card h3 i {
    color: var(--primary);
}

.contact-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.map-card {
    min-height: 220px;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--text-muted);
    border-radius: 16px !important;
    background:
        linear-gradient(90deg, rgba(122, 31, 61, .06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 118, 110, .06) 1px, transparent 1px),
        #ffffff;
    background-size: 24px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.map-card:hover {
    border-color: rgba(122, 31, 61, 0.2);
    box-shadow: var(--shadow-md);
}

.map-card i {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.map-card strong {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.map-card span {
    font-size: 0.85rem;
}

.contact-layout .checkout-panel {
    padding: 3rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px !important;
    box-shadow: var(--shadow-md);
}

.contact-layout .checkout-panel h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-main);
}

.contact-layout .form-group {
    margin-bottom: 1.5rem;
}

.contact-layout .form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em !important;
    color: var(--text-muted);
}

.contact-layout .form-control {
    border-radius: 8px;
    border: 1px solid #d1c9c5;
    padding: 0.85rem 1.15rem;
    background: #fcfcfc;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-layout .form-control:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(122, 31, 61, 0.08);
}

.contact-layout .btn-orange {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 30px;
    padding: 1rem 2rem;
    font-weight: 800;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.05em !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
}

.contact-layout .btn-orange:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(122, 31, 61, 0.2);
}

@media (max-width: 768px) {

    .about-hero,
    .contact-hero,
    .jewel-story {
        gap: 28px;
        margin: 28px 0 56px;
    }

    .about-hero img,
    .contact-hero img,
    .jewel-story img {
        height: 300px;
    }

    .about-hero h1,
    .contact-hero h1,
    .jewel-story h2 {
        font-size: 2.4rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-layout .checkout-panel {
        padding: 2rem 1.5rem;
    }
}


.main-footer {
    margin-top: 76px;
    background: #24171b;
}

.footer-brand .brand-word {
    color: #fff;
}

.footer-brand .brand-word>span {
    color: #d8ad4c;
}

.footer-grid {
    grid-template-columns: 1.2fr .8fr .8fr 1.1fr;
}

.newsletter-form .btn {
    background: var(--accent-yellow);
    color: #24171b;
}

.text-success {
    color: var(--success) !important;
}

@media (max-width: 1100px) {

    .jewel-hero,
    .jewel-hero-content {
        min-height: 590px;
    }

    .jewel-hero h1 {
        font-size: 4.6rem;
    }

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

    .detail-buy-box {
        grid-column: 2;
    }

    .cart-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
    }
}

@media (max-width: 991.98px) {
    .header-container {
        min-height: 74px;
    }

    .shop-layout,
    .cart-layout,
    .reviews-grid,
    .ratings-summary-container,
    .about-hero,
    .contact-hero,
    .jewel-story,
    .receipt-two-col,
    .promise-grid {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

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

    .detail-buy-box {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .jewel-hero,
    .jewel-hero-content {
        min-height: 560px;
    }

    .jewel-hero-overlay {
        background: linear-gradient(to top, rgba(24, 13, 17, .88), rgba(24, 13, 17, .45));
    }

    .jewel-hero-content {
        width: min(100% - 32px, 1180px);
        padding-top: 56px;
    }

    .jewel-hero h1 {
        font-size: 3.25rem;
    }

    .jewel-hero p {
        font-size: .96rem;
    }

    .jewel-proof {
        gap: 18px;
        margin-top: 32px;
    }

    .jewel-benefits>div {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .section-heading h1,
    .section-heading h2,
    .jewel-section h2,
    .shop-intro h1,
    .page-heading-row h1,
    .about-hero h1,
    .contact-hero h1,
    .jewel-story h2 {
        font-size: 2.35rem;
    }

    .shop-intro,
    .page-heading-row,
    .receipt-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .jewel-product-image,
    .product-img-wrapper {
        height: 360px;
    }

    .jewel-spec-grid {
        grid-template-columns: 1fr;
    }

    .cart-table {
        min-width: 660px;
    }

    .success-card {
        padding: 28px 18px;
    }

    .receipt-panel>div,
    .receipt-item,
    .checkout-item {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .receipt-panel>div {
        display: grid;
    }

    .receipt-item strong,
    .checkout-item strong {
        grid-column: 2;
    }

    .about-hero img,
    .contact-hero img,
    .jewel-story img {
        height: 350px;
    }

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

/* Full-width modern jewellery layout pass */
:root {
    --page-pad: clamp(16px, 3vw, 56px);
}

.container,
main.container,
.header-container,
.nav-strip .container,
.main-footer .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: var(--page-pad) !important;
    padding-right: var(--page-pad) !important;
}

main.container {
    overflow: hidden;
}

.jewel-hero {
    margin-left: calc(-1 * var(--page-pad));
    margin-right: calc(-1 * var(--page-pad));
}

.jewel-hero-content {
    width: 100%;
    max-width: none;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
}

.jewel-hero p {
    max-width: 760px;
}

.jewel-benefits,
.jewel-section,
.shop-intro,
.shop-layout,
.page-heading-row,
.detail-layout,
.reviews-section,
.about-hero,
.contact-hero,
.contact-layout,
.jewel-story,
.faq-page,
.success-card,
.profile-layout,
.auth-wrapper {
    width: 100%;
    max-width: none;
}

.jewel-section,
.reviews-section,
.contact-layout,
.profile-layout {
    margin-left: 0;
    margin-right: 0;
}

.shop-layout {
    grid-template-columns: 320px minmax(0, 1fr);
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.jewel-section .row,
.about-hero,
.contact-hero,
.jewel-story,
.cart-layout,
.reviews-grid,
.ratings-summary-container,
.promise-grid {
    width: 100%;
}

.jewel-collection-card {
    min-height: clamp(360px, 31vw, 560px);
}

.jewel-product-image,
.product-img-wrapper {
    height: clamp(300px, 24vw, 460px);
}

.detail-layout {
    grid-template-columns: minmax(360px, .95fr) minmax(420px, 1.3fr) minmax(320px, .75fr);
    gap: clamp(22px, 2.5vw, 42px);
}

.detail-img-box {
    min-height: min(620px, 72vh);
}

.cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(22px, 2.2vw, 38px);
}

.faq-page {
    margin-left: 0;
    margin-right: 0;
}

.faq-page .section-heading {
    max-width: 840px;
}

.success-card {
    margin-left: 0;
    margin-right: 0;
}

.receipt-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.receipt-panel .receipt-total {
    grid-column: 1 / -1;
}

.auth-wrapper {
    max-width: 760px !important;
}

.main-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.footer-grid {
    width: 100%;
    max-width: none;
}

@media (min-width: 1500px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .jewel-section .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 1180px) {

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

    .detail-img-box {
        min-height: 440px;
    }
}

@media (max-width: 700px) {
    :root {
        --page-pad: 16px;
    }

    .jewel-hero-content {
        width: 100%;
    }

    .receipt-panel {
        grid-template-columns: 1fr;
    }
}

/* Modern slider and premium UI polish */
.main-header {
    backdrop-filter: blur(18px);
}

.jewel-hero.carousel,
.jewel-hero .carousel-inner,
.jewel-hero-slide {
    min-height: clamp(620px, 78vh, 820px);
}

.jewel-hero .carousel-inner {
    height: 100%;
}

.jewel-hero-slide {
    position: relative;
    overflow: hidden;
}

.jewel-hero-slide>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.jewel-hero-slide .jewel-hero-content {
    position: relative;
    z-index: 3;
}

.jewel-hero .jewel-hero-overlay {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(20, 11, 15, .9) 0%, rgba(20, 11, 15, .66) 42%, rgba(20, 11, 15, .24) 100%),
        linear-gradient(to top, rgba(20, 11, 15, .34), transparent 44%);
}

.jewel-hero h1 {
    max-width: 850px;
    font-size: clamp(3.7rem, 7vw, 7.8rem);
}

.jewel-hero p {
    font-size: clamp(1rem, 1.25vw, 1.22rem);
}

.jewel-hero .btn-primary {
    min-height: 54px;
    padding-inline: 24px;
    box-shadow: 0 16px 38px rgba(122, 31, 61, .28);
}

.jewel-hero-control {
    top: auto;
    bottom: 34px;
    width: auto;
    opacity: 1;
}

.jewel-hero-control.carousel-control-prev {
    left: auto;
    right: calc(var(--page-pad) + 62px);
}

.jewel-hero-control.carousel-control-next {
    right: var(--page-pad);
}

.jewel-hero-control span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(12px);
}

.jewel-hero-control:hover span {
    background: rgba(255, 255, 255, .24);
}

.jewel-hero-indicators {
    right: auto;
    bottom: 42px;
    left: var(--page-pad);
    justify-content: flex-start;
    margin: 0;
}

.jewel-hero-indicators [data-bs-target] {
    width: 42px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .5);
}

.jewel-hero-indicators .active {
    background: #fff;
}

.jewel-proof span {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.jewel-mood-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 82px;
}

.jewel-mood-strip a {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 245, 242, .92));
    box-shadow: var(--shadow-sm);
}

.jewel-mood-strip a:hover {
    color: #fff;
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), #0f766e);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.jewel-mood-strip i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--primary);
    border-radius: 50%;
    background: var(--primary-light);
}

.jewel-mood-strip a:hover i {
    color: var(--primary);
    background: #fff;
}

.jewel-mood-strip span {
    font-size: .86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jewel-feature-band {
    display: grid;
    grid-template-columns: minmax(380px, .82fr) minmax(0, 1.18fr);
    gap: clamp(22px, 3vw, 48px);
    align-items: stretch;
    margin: 0 0 92px;
    padding: clamp(22px, 3vw, 48px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background:
        linear-gradient(135deg, #fff 0%, #fbf6f0 54%, #e9f4f1 100%);
    box-shadow: var(--shadow-md);
}

.jewel-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jewel-feature-copy h2 {
    max-width: 720px;
    font-size: clamp(2.6rem, 4.4vw, 5.4rem);
    line-height: .96;
}

.jewel-feature-copy p {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.jewel-feature-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 28px;
}

.jewel-feature-stats span {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid rgba(122, 31, 61, .13);
    border-radius: 8px;
    background: rgba(255, 255, 255, .7);
}

.jewel-feature-stats strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.jewel-feature-stats small {
    color: var(--text-muted);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jewel-feature-media {
    min-height: 520px;
    overflow: hidden;
    border-radius: 8px;
}

.jewel-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.jewel-feature-band:hover .jewel-feature-media img {
    transform: scale(1.04);
}

.jewel-collection-card,
.jewel-product-card,
.product-card,
.shop-sidebar,
.shop-header,
.detail-layout,
.summary-card,
.checkout-panel,
.contact-card,
.success-card {
    border-color: rgba(122, 31, 61, .14) !important;
}

.jewel-product-card,
.product-card {
    background: rgba(255, 255, 255, .96);
}

.jewel-product-body,
.product-info {
    min-height: 150px;
}

.wishlist-button {
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.wishlist-button:hover {
    color: #fff;
    background: var(--primary);
    transform: scale(1.06);
}

.jewel-badge,
.deal-badge {
    box-shadow: 0 8px 20px rgba(34, 25, 29, .1);
}

.section-heading h2,
.jewel-section h2,
.shop-intro h1,
.page-heading-row h1 {
    max-width: 900px;
}

@media (max-width: 1180px) {
    .jewel-mood-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .jewel-feature-band {
        grid-template-columns: 1fr;
    }

    .jewel-feature-media {
        min-height: 420px;
    }
}

@media (max-width: 700px) {

    .jewel-hero.carousel,
    .jewel-hero .carousel-inner,
    .jewel-hero-slide {
        min-height: 620px;
    }

    .jewel-hero .jewel-hero-overlay {
        background: linear-gradient(to top, rgba(20, 11, 15, .92), rgba(20, 11, 15, .38));
    }

    .jewel-hero-control {
        display: none;
    }

    .jewel-hero-indicators {
        bottom: 22px;
    }

    .jewel-proof span {
        min-width: calc(50% - 10px);
    }

    .jewel-mood-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 60px;
    }

    .jewel-mood-strip a {
        min-height: 82px;
        justify-content: flex-start;
    }

    .jewel-feature-band {
        padding: 18px;
        margin-bottom: 68px;
    }

    .jewel-feature-stats {
        grid-template-columns: 1fr;
    }

    .jewel-feature-media {
        min-height: 320px;
    }
}

/* Black, white, gold premium animation system */
:root {
    --accent-orange: #c9a24a;
    --accent-orange-hover: #a98224;
    --bg-card: #ffffff;
    --text-muted: #686868;
    --border-color: #e5e0d4;
    --deal-green: #9d7826;
    --success: #9d7826;
    --success-light: #fff8e8;
    --danger-light: #fff3d2;
    --gold: var(--accent-yellow);
    --gold-dark: var(--accent-yellow-hover);
    --black: var(--primary);
    --white: #ffffff;
    --shadow-sm: 0 8px 26px rgba(0, 0, 0, .06);
    --shadow-md: 0 20px 60px rgba(0, 0, 0, .12);
    --shadow-lg: 0 32px 90px rgba(0, 0, 0, .18);
}

body {
    background:
        linear-gradient(90deg, rgba(214, 177, 93, .06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(8, 8, 8, .025) 1px, transparent 1px),
        #fff;
    background-size: 72px 72px;
}

.main-header {
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(8, 8, 8, .09);
}

.main-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .8;
}

.brand-mark {
    background: var(--black);
    color: var(--gold);
    animation: aureliaGoldPulse 3.8s ease-in-out infinite;
}

.brand-word>span,
.brand span,
.footer-brand .brand-word>span {
    color: var(--gold);
}

.search-form {
    border-color: rgba(8, 8, 8, .14);
    box-shadow: inset 0 0 0 1px rgba(214, 177, 93, .08);
}

.search-btn,
.btn-primary,
.btn-orange {
    color: #fff;
    border-color: var(--black);
    background: var(--black);
}

.search-btn:hover,
.btn-primary:hover,
.btn-orange:hover {
    color: var(--black);
    border-color: var(--gold);
    background: var(--gold);
}

.btn-secondary {
    color: var(--black);
    border-color: rgba(8, 8, 8, .16);
    background: #fff;
}

.btn-secondary:hover {
    color: var(--black);
    border-color: var(--gold);
    background: var(--primary-light);
}

.nav-strip-link:hover,
.sale-link {
    color: var(--black);
    background: var(--primary-light);
}

.jewel-hero,
.jewel-hero.carousel,
.jewel-hero .carousel-inner,
.jewel-hero-slide,
.jewel-hero-slide.carousel-item,
.jewel-hero-content {
    height: clamp(750px, 84vh, 880px);
    min-height: 0;
}

.jewel-hero-slide {
    background: var(--black);
}

.jewel-hero .jewel-hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .66) 42%, rgba(0, 0, 0, .22) 100%),
        linear-gradient(to top, rgba(0, 0, 0, .36), transparent 48%);
}

.jewel-hero-slide>img {
    filter: saturate(.82) contrast(1.08);
    /* animation: aureliaHeroImage 8.4s ease-in-out infinite alternate; */
}

.jewel-hero .jewel-kicker,
.style-story-copy .jewel-kicker {
    color: var(--gold);
}

.jewel-hero h1 {
    text-shadow: 0 22px 62px rgba(0, 0, 0, .38);
    animation: aureliaFadeUp .8s ease both;
}

.jewel-hero p {
    animation: aureliaFadeUp .8s .12s ease both;
}

.jewel-hero-actions,
.jewel-proof {
    animation: aureliaFadeUp .8s .22s ease both;
}

.jewel-hero .btn-primary {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 18px 44px rgba(214, 177, 93, .25);
}

.jewel-hero .btn-primary:hover {
    background: #fff;
    border-color: #fff;
}

.jewel-hero .jewel-text-link {
    color: #fff;
}

.jewel-hero .jewel-text-link:hover {
    color: var(--gold);
}

.jewel-hero-control span {
    border-color: rgba(214, 177, 93, .6);
    background: rgba(0, 0, 0, .36);
}

.jewel-hero-control:hover span {
    color: var(--black);
    background: var(--gold);
}

.jewel-hero-indicators [data-bs-target] {
    background: rgba(255, 255, 255, .38);
}

.jewel-hero-indicators .active {
    background: var(--gold);
}

.jewel-proof span {
    border-color: rgba(214, 177, 93, .34);
    background: rgba(0, 0, 0, .26);
}

.jewel-proof strong {
    color: var(--gold);
}

.jewel-benefits {
    border-color: rgba(8, 8, 8, .1);
}

.jewel-benefits i,
.jewel-mood-strip i,
.promise-grid i,
.jewel-spec-grid i,
.empty-state i,
.checkout-panel h3 i,
.contact-card h3 i,
.faq-accordion summary i {
    color: var(--gold-dark);
}

.jewel-mood-strip a,
.jewel-product-card,
.product-card,
.shop-sidebar,
.shop-header,
.detail-layout,
.summary-card,
.checkout-panel,
.contact-card,
.success-card,
.auth-wrapper,
.ratings-summary-container,
.rating-form,
.review-item {
    border-color: rgba(8, 8, 8, .1) !important;
    background: rgba(255, 255, 255, .96);
}

.jewel-mood-strip a {
    position: relative;
    overflow: hidden;
}

.jewel-mood-strip a::before,
.jewel-product-card::before,
.product-card::before,
.jewel-collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(214, 177, 93, .18) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .75s ease;
}

.jewel-mood-strip a:hover::before,
.jewel-product-card:hover::before,
.product-card:hover::before,
.jewel-collection-card:hover::before {
    transform: translateX(120%);
}

.jewel-mood-strip a:hover {
    color: var(--black);
    border-color: var(--gold);
    background: #fff;
}

.jewel-mood-strip a:hover i {
    color: var(--black);
    background: var(--gold);
}

.jewel-collection-card::after {
    background: linear-gradient(to top, rgba(0, 0, 0, .84), rgba(0, 0, 0, .08));
}

.jewel-collection-card small,
.jewel-product-meta span,
.stars-rating,
.stars,
.fashion-rating {
    color: var(--gold-dark);
}

.jewel-feature-band {
    border-color: rgba(214, 177, 93, .28);
    background:
        linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 48%, #fff 48.2%, #fff 100%);
}

.jewel-feature-copy {
    color: #fff;
}

.jewel-feature-copy h2 {
    color: #fff;
}

.jewel-feature-copy p {
    color: rgba(255, 255, 255, .72);
}

.jewel-feature-copy .jewel-kicker,
.jewel-feature-stats strong {
    color: var(--gold);
}

.jewel-feature-stats span {
    border-color: rgba(214, 177, 93, .28);
    background: rgba(255, 255, 255, .08);
}

.jewel-feature-stats small {
    color: rgba(255, 255, 255, .68);
}

.jewel-feature-band .btn-primary {
    width: fit-content;
    color: var(--black);
    border-color: var(--gold);
    background: var(--gold);
}

.jewel-feature-media {
    box-shadow: 0 24px 80px rgba(0, 0, 0, .2);
}

.jewel-product-card,
.product-card {
    position: relative;
}

.jewel-product-card:hover,
.product-card:hover,
.jewel-collection-card:hover,
.summary-card:hover,
.contact-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.jewel-product-meta strong,
.price-main,
.detail-price-panel strong,
.summary-line.total strong,
.receipt-total strong,
.receipt-totals strong {
    color: var(--black);
}

.jewel-badge,
.deal-badge,
.cart-count-badge {
    color: var(--black);
    background: var(--gold);
}

.wishlist-button:hover,
.icon-btn:hover {
    color: var(--black);
    background: var(--gold);
}

.detail-price-panel,
.filter-link:hover,
.filter-link.active,
.faq-accordion summary:hover,
.faq-accordion details[open] summary,
.code-card {
    background: var(--primary-light);
}

.stock-status.in,
.text-success {
    color: var(--gold-dark) !important;
}

.main-footer {
    background: var(--primary);
    color: #fff;
}

.main-footer::before {
    background: linear-gradient(90deg, transparent, rgba(214, 177, 93, .6), transparent);
}

.footer-col ul li a:hover,
.social-links a:hover {
    color: var(--gold);
}

.newsletter-form .btn {
    color: var(--black);
    background: var(--gold);
}

.js-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .8s ease var(--reveal-delay, 0ms),
        transform .8s ease var(--reveal-delay, 0ms),
        box-shadow .28s ease,
        border-color .28s ease,
        background .28s ease,
        color .28s ease;
}

.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.jewel-benefits>div:nth-child(odd).js-reveal {
    transform: translateY(20px) translateX(-12px);
}

.jewel-benefits>div:nth-child(even).js-reveal {
    transform: translateY(20px) translateX(12px);
}

.jewel-benefits>div.is-visible {
    transform: translate(0, 0);
}

@keyframes aureliaFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aureliaHeroImage {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes aureliaGoldPulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(214, 177, 93, 0);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(214, 177, 93, .16);
    }
}

@media (max-width: 1180px) {
    .jewel-feature-band {
        background: var(--black);
    }
}

@media (max-width: 700px) {

    .jewel-hero,
    .jewel-hero.carousel,
    .jewel-hero .carousel-inner,
    .jewel-hero-slide,
    .jewel-hero-slide.carousel-item,
    .jewel-hero-content {
        height: 660px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .js-reveal {
        opacity: 1;
        transform: none;
    }
}

/* Black/gold back-office and shared state cleanup */
.admin-sidebar,
.admin-sidebar-header,
.admin-card-header {
    background: var(--black);
    color: #fff;
}

.admin-sidebar {
    border-right: 1px solid rgba(214, 177, 93, .28);
}

.admin-sidebar-header i,
.admin-menu-item a i,
.admin-card-header i,
.metric-icon i {
    color: var(--gold) !important;
}

.admin-menu-item a {
    color: rgba(255, 255, 255, .74);
}

.admin-menu-item.active a,
.admin-menu-item a:hover {
    color: #fff;
    background: rgba(214, 177, 93, .14);
    border-left-color: var(--gold);
}

.admin-main {
    background: #fff;
}

.admin-card,
.metric-card,
.profile-card,
.admin-table,
.image-preview-box {
    border-color: rgba(8, 8, 8, .1) !important;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.metric-card {
    overflow: hidden;
    position: relative;
}

.metric-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.admin-table th,
.cart-table th {
    background: #0f0f0f;
    color: #fff;
}

.status-pill,
.status-pending,
.status-processing,
.status-shipped,
.status-delivered,
.status-cancelled {
    color: var(--black) !important;
    border: 1px solid rgba(8, 8, 8, .12);
    background: var(--primary-light) !important;
}

.alert-success {
    color: var(--black);
    border-color: rgba(214, 177, 93, .3);
    background: var(--primary-light);
}

.alert-danger {
    color: var(--black);
    border-color: rgba(8, 8, 8, .18);
    background: #fff3d2;
}

.btn-yellow {
    color: var(--black);
    border-color: var(--gold);
    background: var(--gold);
}

.btn-yellow:hover {
    color: #fff;
    border-color: var(--black);
    background: var(--black);
}

/* Three.js jewellery hero model */
.jewel-hero {
    isolation: isolate;
}



.jewel-hero-slide>img {
    z-index: 0;
}

.jewel-hero .jewel-hero-overlay {
    z-index: 1;
}

.jewel-hero-slide .jewel-hero-content {
    z-index: 5;
}

.jewel-hero-control,
.jewel-hero-indicators {
    z-index: 7;
}



.jewel-hero-content {
    max-width: 58vw;
}

.shop-intro,
.page-heading-row,
.about-hero,
.contact-hero,
.jewel-story,
.detail-layout,
.cart-layout,
.checkout-panel,
.summary-card,
.faq-page,
.auth-wrapper,
.profile-layout {
    animation: aureliaPageIn .75s ease both;
}

.shop-intro,
.page-heading-row {
    min-height: 180px;
    align-items: center;
    padding: clamp(22px, 3vw, 44px);
    border: 1px solid rgba(8, 8, 8, .1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 45%, #fff 45.2%, #fff 100%);
    box-shadow: var(--shadow-md);
}

.shop-intro h1,
.page-heading-row h1,
.shop-intro .jewel-kicker,
.page-heading-row .jewel-kicker {
    color: #fff;
}

.shop-intro p {
    color: rgba(255, 255, 255, .72);
}

.breadcrumb-line {
    padding: 14px 0 4px;
}

.breadcrumb-line strong {
    color: var(--gold-dark);
}

@keyframes aureliaPageIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .jewel-hero-content {
        max-width: 72vw;
    }



    .shop-intro,
    .page-heading-row {
        background: var(--black);
    }
}

@media (max-width: 700px) {


    .jewel-hero-content {
        max-width: none;
    }
}

/* Oversized premium footer */
.big-footer {
    position: relative;
    margin-top: clamp(70px, 8vw, 130px);
    padding-top: clamp(54px, 7vw, 110px);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(214, 177, 93, .16), transparent 30%),
        linear-gradient(135deg, #050505 0%, #101010 58%, #050505 100%);
}

.big-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(214, 177, 93, .05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, .18));
}

.footer-hero,
.footer-service-band,
.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(24px, 4vw, 70px);
    padding-bottom: clamp(36px, 5vw, 76px);
    border-bottom: 1px solid rgba(214, 177, 93, .22);
}

.footer-brand-large {
    margin-bottom: 22px;
}

.footer-brand-large .brand-mark {
    width: 58px;
    height: 58px;
    font-size: 1.25rem;
    border: 1px solid rgba(214, 177, 93, .45);
}

.footer-brand-large .brand-word {
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 4.8rem);
    line-height: .9;
}

.footer-hero h2 {
    max-width: 980px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.6rem, 5.4vw, 7rem);
    line-height: .9;
}

.footer-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: clamp(.98rem, 1.15vw, 1.18rem);
    line-height: 1.8;
}

.footer-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    min-width: 310px;
}

.footer-hero-actions .btn {
    min-height: 52px;
    padding-inline: 24px;
}

.footer-hero-actions .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
}

.footer-hero-actions .btn-secondary:hover {
    color: var(--black);
    border-color: var(--gold);
    background: var(--gold);
}

.footer-service-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: clamp(26px, 3vw, 44px) 0;
    border: 1px solid rgba(214, 177, 93, .2);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(214, 177, 93, .18);
}

.footer-service-band>div {
    min-height: 118px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    background: rgba(255, 255, 255, .045);
    transition: background .25s ease, transform .25s ease;
}

.footer-service-band>div:hover {
    background: rgba(214, 177, 93, .14);
    transform: translateY(-2px);
}

.footer-service-band i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    color: var(--black);
    border-radius: 50%;
    background: var(--gold);
}

.footer-service-band span {
    display: flex;
    flex-direction: column;
}

.footer-service-band strong {
    color: #fff;
    font-size: .86rem;
    text-transform: uppercase;
}

.footer-service-band small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .56);
}

.big-footer .footer-grid {
    grid-template-columns: 1.35fr repeat(4, minmax(150px, 1fr));
    gap: clamp(28px, 4vw, 72px);
    padding-top: clamp(30px, 4vw, 58px);
    padding-bottom: clamp(36px, 5vw, 72px);
}

.big-footer .footer-col h4 {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .08em !important;
}

.big-footer .footer-col p,
.big-footer .footer-col li,
.big-footer .footer-col a {
    color: rgba(255, 255, 255, .62);
    font-size: .9rem;
    line-height: 1.75;
}

.big-footer .footer-col a:hover {
    color: var(--gold);
}

.big-footer .footer-trust {
    margin-top: 22px;
    padding: 10px 12px;
    color: var(--black);
    border-radius: 999px;
    background: var(--gold);
}

.big-footer .newsletter-form {
    margin-top: 20px;
    padding: 8px;
    border: 1px solid rgba(214, 177, 93, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
}

.big-footer .newsletter-form .form-control {
    color: #fff;
    border: 0 !important;
    background: transparent !important;
}

.big-footer .newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, .44);
}

.big-footer .newsletter-form .btn {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 50%;
}

.big-footer .footer-bottom {
    min-height: 86px;
    padding-top: 24px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(214, 177, 93, .18);
}

.big-footer .footer-bottom p {
    max-width: 760px;
    color: rgba(255, 255, 255, .48);
}

.big-footer .social-links a {
    width: 42px;
    height: 42px;
    color: rgba(255, 255, 255, .7);
    border-color: rgba(214, 177, 93, .22);
    background: rgba(255, 255, 255, .04);
}

.big-footer .social-links a:hover {
    color: var(--black);
    border-color: var(--gold);
    background: var(--gold);
}

@media (max-width: 1100px) {
    .footer-hero {
        grid-template-columns: 1fr;
    }

    .footer-hero-actions {
        justify-content: flex-start;
        min-width: 0;
    }

    .footer-service-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .big-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .footer-service-band,
    .big-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-service-band>div {
        min-height: 96px;
    }

    .footer-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Premium About & Contact Page Redesign */

/* Layout & Width Constraints */
.about-hero,
.contact-hero,
.contact-layout,
.jewel-story {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* About Page Overlapping Collage */
.about-image-collage {
    position: relative;
    width: 100%;
    height: 480px;
}

.about-image-collage .collage-primary {
    width: 85% !important;
    height: 85% !important;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-image-collage .collage-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50% !important;
    height: 50% !important;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid #fff;
    outline: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 2;
}

.about-image-collage:hover .collage-primary {
    transform: translateY(-5px);
}

.about-image-collage:hover .collage-secondary {
    transform: translate(5px, 5px) scale(1.02);
}

.about-image-collage .collage-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold) !important;
    color: #fff !important;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em !important;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Craftsmanship Showcase */
.craftsmanship-section {
    padding: 80px 0;
    background: #faf9f6;
    margin: 48px calc(-1 * var(--page-pad));
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.craftsmanship-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.craftsmanship-card::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 0;
    background: var(--gold);
    transition: var(--transition);
}

.craftsmanship-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(214, 177, 93, 0.3);
}

.craftsmanship-card:hover::before {
    width: 100%;
}

.craftsmanship-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}

.craftsmanship-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.craftsmanship-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Brand Timeline Section */
.timeline-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 30px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: #fff;
    border: 3px solid var(--gold);
    top: 24px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -8px;
}

.timeline-content {
    padding: 24px;
    background: #fff;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: rgba(214, 177, 93, 0.2);
    box-shadow: var(--shadow-md);
}

.timeline-item:hover::after {
    background-color: var(--gold);
    transform: scale(1.2);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Details Page Enhancements */
.contact-hero {
    align-items: center;
    gap: 64px;
}

.contact-hero-image-wrapper {
    position: relative;
    width: 100%;
}

.contact-hero-image-wrapper img {
    border-radius: 16px !important;
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid var(--gold);
    border-radius: 16px;
    z-index: -1;
    transition: var(--transition);
}

.contact-hero:hover .contact-hero-image-wrapper::before {
    transform: translate(6px, 6px);
}

/* Contact Checklist with Gold Accents */
.contact-checklist li {
    font-size: 1rem;
}

.contact-checklist i {
    color: var(--gold) !important;
}

/* Appointment Desk with Interactive Floorplan/Showroom Blueprint style */
.showroom-card {
    background: radial-gradient(circle at 10% 20%, rgba(214, 177, 93, 0.05) 0%, transparent 90%), #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.showroom-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(var(--border-color) 1px, transparent 1px),
        radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.25;
    z-index: 1;
}

.showroom-card:hover {
    border-color: rgba(214, 177, 93, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.showroom-card>* {
    position: relative;
    z-index: 2;
}

.map-marker-pulse {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(214, 177, 93, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 16px;
    position: relative;
    box-shadow: 0 0 0 0 rgba(214, 177, 93, 0.4);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(214, 177, 93, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(214, 177, 93, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(214, 177, 93, 0);
    }
}

/* Premium Booking / Inquiry Form */
.contact-layout .checkout-panel {
    background: #faf8f5 !important;
    border: 1px solid #ebdcc5 !important;
    border-radius: 20px !important;
    position: relative;
}

.contact-layout .checkout-panel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(214, 177, 93, 0.18);
    border-radius: 12px;
    pointer-events: none;
}

.contact-layout .form-select {
    border-radius: 8px;
    border: 1px solid #d1c9c5;
    padding: 0.85rem 1.15rem;
    background: #fcfcfc;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
    width: 100%;
}

.contact-layout .form-select:focus {
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(214, 177, 93, 0.12);
    outline: none;
}

.contact-layout .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(214, 177, 93, 0.12);
}

.contact-layout .btn-orange {
    background: var(--black) !important;
    border-color: var(--black) !important;
    color: #fff !important;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contact-layout .btn-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--gold), #e8c47d);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.contact-layout .btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(214, 177, 93, 0.2);
}

.contact-layout .btn-orange:hover::before {
    opacity: 1;
}

/* Responsive adjustments for craftsmanship and timeline */
@media (max-width: 991px) {
    .craftsmanship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-container::before {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item.left {
        text-align: left;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item::after {
        left: 22px;
        right: auto;
    }

    .timeline-item.left::after {
        left: 22px;
    }
}

/* Premium Product Details UI Fixes */

/* 1. Constraint Layout & Reviews Width - Airy Open Layout */
.detail-layout {
    max-width: 1300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.reviews-section {
    max-width: 1300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Override the rigid minmax columns on desktop to allow proper responsive scaling and prevent image overflow overlap */
@media (min-width: 992px) {
    .detail-layout {
        grid-template-columns: 1.05fr 1.2fr 0.85fr !important;
        gap: 40px !important;
    }

    .detail-img-box {
        min-height: auto !important;
        height: auto !important;
        width: 100% !important;
        aspect-ratio: 1/1 !important;
    }
}

/* Thumbnail Gallery Styles */
.detail-img-box-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.detail-img-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.thumb-box {
    flex: 1;
    min-width: 60px;
    max-width: 80px;
    aspect-ratio: 1/1;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    padding: 3px;
}

.thumb-box:hover {
    border-color: var(--gold);
}

.thumb-box.active {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(214, 177, 93, 0.2) !important;
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* 2. Detail Price Panel Redesign - Remove the yellow box and make it clean typography */
.detail-price-panel {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 12px 0 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.detail-price-panel span {
    display: none !important;
    /* Hide "Online price" label */
}

.detail-price-panel strong {
    font-family: var(--font-sans) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--gold-dark) !important;
    line-height: 1.1 !important;
}

.detail-price-panel small {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-top: 4px !important;
}

/* 3. Rating distribution bars - Make them thin and elegant */
.rating-chart-bar-row {
    font-size: 0.82rem;
    color: var(--text-main);
    display: grid;
    grid-template-columns: 48px 1fr 36px;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-bar-bg {
    height: 6px !important;
    background-color: #faf6ef !important;
    border: 1px solid rgba(8, 8, 8, 0.05);
    border-radius: 99px !important;
    overflow: hidden;
}

.rating-bar-fill {
    background: var(--gold) !important;
    border-radius: 99px !important;
}

/* 4. Empty States in Reviews - Solid elegant border and luxury branding */
.empty-state {
    border: 1px solid var(--border-color) !important;
    border-radius: 16px !important;
    background: #faf9f6 !important;
    padding: 40px 24px !important;
    transition: var(--transition);
}

.empty-state:hover {
    border-color: rgba(214, 177, 93, 0.3) !important;
    box-shadow: var(--shadow-sm);
}

.empty-state i {
    color: var(--gold) !important;
    font-size: 2.2rem !important;
    margin-bottom: 12px !important;
}

.empty-state h4 {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.empty-state p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Luxury button overrides for empty state review login */
.empty-state .btn-secondary {
    background: var(--black) !important;
    border-color: var(--black) !important;
    color: #fff !important;
    padding: 8px 24px !important;
    border-radius: 30px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: var(--transition) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.empty-state .btn-secondary:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(214, 177, 93, 0.2);
}

/* ==========================================================================
   Admin Pagination Styles
   ========================================================================== */
.admin-pagination-container nav ul,
.admin-pagination-container ul.pagination {
    display: flex !important;
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    gap: 0.35rem !important;
}

.admin-pagination-container nav ul li a,
.admin-pagination-container nav ul li span,
.admin-pagination-container ul.pagination li a,
.admin-pagination-container ul.pagination li span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 2.25rem !important;
    height: 2.25rem !important;
    padding: 0 0.75rem !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border-color) !important;
    background-color: var(--bg-card) !important;
    color: var(--text-main) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.admin-pagination-container nav ul li.active a,
.admin-pagination-container nav ul li.active span,
.admin-pagination-container ul.pagination li.active a,
.admin-pagination-container ul.pagination li.active span {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.admin-pagination-container nav ul li a:hover,
.admin-pagination-container ul.pagination li a:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.admin-pagination-container nav ul li.disabled span,
.admin-pagination-container ul.pagination li.disabled span {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background-color: var(--bg-base) !important;
}

/* ==========================================================================
   Password View Toggle Style
   ========================================================================== */
#togglePassword {
    transition: color 0.2s ease;
}

#togglePassword:hover {
    color: var(--primary) !important;
}

/* ==========================================================================
   Admin Filters Adjustments
   ========================================================================== */
.admin-card form select.form-control,
.admin-card form input.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.85rem;
    transition: border-color 0.2s;
}

.admin-card form select.form-control:focus,
.admin-card form input.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* ==========================================================================
   Admin Settings Tab & Forms Redesign
   ========================================================================== */
.settings-tabs {
    border-bottom: 2px solid var(--border-color) !important;
    background-color: var(--bg-card);
    padding: 1.25rem 1.75rem 0 1.75rem !important;
    gap: 0.5rem;
}

.settings-tabs .nav-item .nav-link {
    background: transparent !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem !important;
    border-radius: 0 !important;
    transition: all 0.25s ease;
}

.settings-tabs .nav-item .nav-link:hover {
    color: var(--primary) !important;
    border-bottom-color: var(--border-color) !important;
}

.settings-tabs .nav-item .nav-link.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
    font-weight: 700;
}

.tab-pane {
    animation: settingsFadeIn 0.4s ease-out;
}

@keyframes settingsFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-group textarea.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.85rem;
    transition: border-color 0.2s;
    resize: vertical;
}

.form-group textarea.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-control-sm {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border-color) !important;
}

.form-control-sm:focus {
    border-color: var(--primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px var(--primary-light) !important;
}

/* Dynamic storefront header navigation */
.nav-strip-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1050;
}

.nav-strip-dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    animation: navDropFade 0.15s ease;
}

@keyframes navDropFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-strip-dropdown-toggle {
    appearance: none;
    border: 0 !important;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.nav-strip-caret {
    font-size: 0.58rem;
    transition: transform 0.2s ease;
}

.nav-strip-dropdown-toggle[aria-expanded="true"] .nav-strip-caret {
    transform: rotate(180deg);
}

.nav-strip-dropdown-menu {
    min-width: 200px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(39, 28, 33, 0.16);
    top: 100% !important;
    left: 0 !important;
    margin-top: 0 !important;
    z-index: 2000 !important;
    background: #fff;
}

.nav-strip-dropdown-menu .dropdown-menu {
    min-width: 200px;
    top: 0 !important;
    left: 100% !important;
    margin-top: 0 !important;
    z-index: 2100 !important;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(39, 28, 33, 0.16);
}

.nav-strip-dropdown-menu .dropend {
    position: relative;
}

.nav-strip-dropdown-menu .dropend:hover>.dropdown-menu {
    display: block;
    animation: navDropFade 0.15s ease;
}

.nav-strip-dropdown-menu .dropdown-item {
    border-radius: 6px;
    color: #4a3e42;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 10px;
}

.nav-strip-dropdown-menu .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-strip-link.nav-style-featured {
    color: #7c5b14 !important;
}

.nav-strip-link.nav-style-new {
    color: #138a62 !important;
}

/* Admin header URL manager */
.site-nav-manager {
    max-width: none;
}

.site-nav-manager-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
    flex-wrap: wrap;
}

.site-nav-manager-header h3 {
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.site-nav-manager-header p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
}

.site-nav-manager-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.site-nav-grid,
.site-nav-row {
    display: grid;
    grid-template-columns: 42px minmax(150px, .95fr) minmax(300px, 1.7fr) 150px 155px 110px 72px 72px 42px;
    gap: 0.55rem;
    align-items: center;
}

.site-nav-grid-head {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 0.45rem;
    padding: 0 0.85rem;
    text-transform: uppercase;
}

.site-nav-row-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.site-nav-row {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.72rem 0.85rem;
}

.site-nav-row.is-child-row {
    background: #f8fafc;
    border-left: 3px solid var(--primary);
}

.site-nav-index {
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.68rem;
    font-weight: 800;
    cursor: grab;
}

.site-nav-row .form-control,
.site-nav-row .form-select {
    border-radius: 7px !important;
    font-size: 0.76rem;
    min-height: 36px;
}

.site-nav-delete {
    border-radius: 8px !important;
    height: 36px;
    padding: 0 !important;
    width: 36px;
}

.site-nav-help {
    align-items: flex-start;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    color: #166534;
    display: flex;
    font-size: 0.8rem;
    gap: 0.75rem;
    margin-top: 1.2rem;
    padding: 1rem 1.15rem;
}

.site-nav-help i {
    margin-top: 2px;
}

@media (max-width: 1199.98px) {
    .site-nav-grid-head {
        display: none;
    }

    .site-nav-row {
        grid-template-columns: 38px repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .nav-strip .container {
        display: block !important;
        padding-left: var(--page-pad) !important;
        padding-right: var(--page-pad) !important;
    }

    .nav-strip-container {
        align-items: stretch !important;
        flex-direction: column !important;
        gap: 0 !important;
        height: auto !important;
        justify-content: flex-start !important;
        padding: 12px 0 16px !important;
    }

    .nav-strip-dropdown {
        display: block;
        width: 100%;
    }

    .nav-strip-dropdown-toggle {
        justify-content: space-between !important;
        padding: 10px 4px !important;
        width: 100% !important;
    }

    .nav-strip .dropdown-menu.nav-strip-dropdown-menu,
    .nav-strip .dropdown-menu.nav-strip-dropdown-menu.show {
        inset: auto !important;
        border-radius: 8px;
        box-shadow: none;
        float: none !important;
        margin: 4px 0 8px !important;
        position: static !important;
        transform: none !important;
        width: 100%;
    }
}

/* Keep the expanded header menu from being covered by the first hero band. */
.main-header {
    z-index: 1060 !important;
}

.nav-strip {
    overflow: visible !important;
    position: relative !important;
    z-index: 1050 !important;
}

.nav-strip .container,
.nav-strip .navbar-collapse,
.nav-strip-container,
.nav-strip-dropdown {
    overflow: visible !important;
}

.nav-strip-dropdown-menu {
    z-index: 1070 !important;
}

.jewel-hero,
.jewel-hero.carousel {
    position: relative;
    z-index: 0;
}

@media (max-width: 767.98px) {

    .site-nav-manager-actions,
    .site-nav-manager-actions .btn {
        width: 100%;
    }

    .site-nav-row {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .site-nav-index {
        align-self: start;
        grid-row: span 9;
        padding-top: 8px;
    }

    .site-nav-delete {
        justify-self: end;
    }
}

/* Fix cramped/uneven mobile header: account text was forced visible
   (!important) and the sign-out icon had no circular frame like the other
   icon buttons, so the row looked lopsided on narrow screens. */
@media (max-width: 767.98px) {
    .header-container {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .brand {
        order: 1 !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .actions-nav {
        order: 2 !important;
        width: 100% !important;
        justify-content: center !important;
        gap: 0.4rem !important;
        flex-wrap: nowrap !important;
    }

    .search-form {
        order: 3 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .account-copy,
    .sign-out-link span {
        display: none !important;
    }

    .account-menu,
    .icon-link,
    .sign-out-link {
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .account-icon,
    .cart-icon,
    .sign-out-link i {
        width: 34px !important;
        height: 34px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        border: 1px solid var(--border-color) !important;
        font-size: 0.85rem !important;
        box-sizing: border-box !important;
    }

    .fashion-menu-toggle {
        width: 34px !important;
        height: 34px !important;
        padding: 6px !important;
        margin: 0 !important;
        line-height: 1 !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .fashion-menu-toggle .navbar-toggler-icon {
        width: 16px !important;
        height: 16px !important;
        background-size: 16px 16px !important;
        vertical-align: middle !important;
    }
}

/* Fix nested dropdowns and hover interactions */
.jewel-product-image img, .product-img-wrapper img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: fill;
    transition: transform .45s ease;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.load-more-wrap[hidden] {
    display: none;
}

.load-more-btn {
    min-width: 190px;
}

.load-more-btn:disabled {
    cursor: progress;
    opacity: .72;
    transform: none;
}

@media (max-width: 700px) {
    .jewel-hero, .jewel-hero.carousel, .jewel-hero .carousel-inner, .jewel-hero-slide, .jewel-hero-slide.carousel-item, .jewel-hero-content {
        height: 300px;
    }
}
/* Frontend floating WhatsApp and back-to-top controls */
.frontend-floating-actions {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    pointer-events: none;
}

.floating-whatsapp,
.floating-back-top {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    border: 0;
    text-decoration: none;
    pointer-events: auto;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.floating-whatsapp {
    position: relative;
    color: #fff;
    background: #25d366;
    font-size: 1.55rem;
    box-shadow: 0 0 0 7px rgba(37, 211, 102, .14), 0 14px 30px rgba(37, 211, 102, .34);
    animation: whatsappGlow 1.8s ease-in-out infinite;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 1px solid rgba(37, 211, 102, .42);
    animation: whatsappRing 1.8s ease-out infinite;
}

.floating-whatsapp:hover,
.floating-back-top:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.04);
}

.floating-back-top {
    color: #fff;
    background: #050505;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .22);
}

.floating-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes whatsappGlow {
    0%, 100% { box-shadow: 0 0 0 7px rgba(37, 211, 102, .14), 0 14px 30px rgba(37, 211, 102, .34); }
    50% { box-shadow: 0 0 0 11px rgba(37, 211, 102, .2), 0 18px 38px rgba(37, 211, 102, .48); }
}

@keyframes whatsappRing {
    0% { transform: scale(.86); opacity: .9; }
    100% { transform: scale(1.24); opacity: 0; }
}

@media (max-width: 640px) {
    .frontend-floating-actions {
        right: 14px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-whatsapp,
    .floating-back-top {
        width: 48px;
        height: 48px;
    }
}

/* Product Share Button */
.share-widget {
    position: relative;
    margin-top: 0.75rem;
}

.share-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    display: none;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm, 8px);
    box-shadow: var(--shadow-lg);
}

.share-menu.open {
    display: flex;
}

.share-menu a,
.share-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 0;
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.share-menu a:hover,
.share-menu button:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.share-menu i {
    width: 18px;
    text-align: center;
    color: var(--accent-yellow);
}

.share-menu #shareWhatsapp i {
    color: #25d366;
}

.share-menu #shareFacebook i {
    color: #1877f2;
}

/* Product Colour Swatches */
.color-select-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text-main);
}

.color-select-group label #selectedColorLabel {
    font-weight: 600;
    color: var(--text-heading);
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-swatch {
    width: 52px;
    height: 52px;
    padding: 2px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.color-swatch:hover {
    border-color: var(--accent-yellow);
}

.color-swatch.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-light);
}

/* Product Detail: Brand line, Highlights, Specifications */
.detail-brand-row {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: -0.5rem;
    margin-bottom: 0.75rem;
}

.detail-brand-row a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.detail-brand-row a:hover {
    text-decoration: underline;
}

.detail-highlights,
.detail-description,
.detail-specifications {
    margin-bottom: 2rem;
}

.detail-highlights h3,
.detail-description h3,
.detail-specifications h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.detail-highlights ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-main);
    line-height: 1.8;
}

.detail-highlights p {
    color: var(--text-main);
    line-height: 1.8;
    margin: 0;
}

.detail-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 0.92rem;
}

.detail-spec-table tr {
    border-bottom: 1px solid var(--border-color);
}

.detail-spec-table tr:last-child {
    border-bottom: 0;
}

.detail-spec-table th,
.detail-spec-table td {
    text-align: left;
    padding: 0.65rem 1rem 0.65rem 0;
    vertical-align: top;
}

.detail-spec-table th {
    width: 35%;
    color: var(--text-muted);
    font-weight: 600;
}

.detail-spec-table td {
    color: var(--text-main);
}

@media (max-width: 600px) {
    .detail-spec-table th {
        width: 45%;
    }
}
