/* ===================================================
   Ragsons Art Jewellery - Main Frontend CSS
   Royal Indian Gold + Maroon Theme
   =================================================== */
/* Font stack - uses system fonts as fallback when CDN is unavailable */

:root {
    --gold: #D4AF37;
    --gold-dark: #B8960C;
    --gold-light: #f0d060;
    --gold-pale: #FBF3DC;
    --maroon: #800000;
    --maroon-dark: #5c0000;
    --maroon-light: #9a1a1a;
    --black: #0D0D0D;
    --dark: #1a1a1a;
    --cream: #FDF8F0;
    --cream-dark: #F5EDD8;
    --text-primary: #2C1810;
    --text-muted: #7a6a5a;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', Arial, system-ui, sans-serif;
    background: #FDF8F0 !important;
    color: #2C1810 !important;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    color: var(--maroon);
    line-height: 1.3;
}

.section-title {
    font-size: 2rem;
    color: var(--maroon);
    position: relative;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    margin: 12px auto 20px;
}

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

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

.bg-gold {
    background: var(--gold);
}

.bg-maroon {
    background: var(--maroon);
}

/* ===== MARQUEE BAR ===== */
.marquee-bar {
    background: linear-gradient(90deg, #800000, #5c0000, #800000) !important;
    color: #f0d060 !important;
    padding: 9px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 35s linear infinite;
    padding-left: 100%;
}

.marquee-content:hover {
    animation-play-state: paused;
    cursor: default;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ===== NAVBAR ===== */
.main-navbar {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--maroon) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .brand-gem {
    color: var(--gold);
    font-size: 1.6rem;
}

.navbar-brand small {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-link-custom {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 22px 14px !important;
    letter-spacing: 0.02em;
    position: relative;
    transition: var(--transition);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    transform: scaleX(1);
}

.nav-link-custom:hover {
    color: var(--maroon) !important;
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--maroon);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--maroon);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* ===== HERO SLIDER ===== */
.hero-section {
    position: relative;
    background: var(--black);
    overflow: hidden;
    height: 520px;
}

@media (min-width: 768px) {
    .hero-section {
        height: 600px;
    }
}

@media (min-width: 1200px) {
    .hero-section {
        height: 680px;
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92, 0, 0, 0.85) 0%, rgba(13, 13, 13, 0.6) 60%, rgba(13, 13, 13, 0.3) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.hero-cta {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000 !important;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* Slider controls */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--gold);
    color: #000;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    padding: 18px 0;
}

.trust-item {
    text-align: center;
    color: #fff;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 6px;
}

.trust-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-subtitle {
    font-size: 0.75rem;
    opacity: 0.75;
}

/* ===== SECTION WRAPPER ===== */
.section-wrap {
    padding: 70px 0;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 48px;
}

/* ===== CATEGORIES ===== */
.categories-section {
    background: #fff;
}

.category-card {
    background: var(--cream);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: block;
    color: var(--text-primary);
}

.category-card:hover {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: #fff !important;
    border-color: var(--maroon);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.2);
}

.category-card:hover .cat-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
}

.category-card:hover .cat-name {
    color: #fff;
}

.cat-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.cat-img-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-name {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--maroon);
    transition: var(--transition);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--cream);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--maroon);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 30px;
    letter-spacing: 0.05em;
}

.product-badge.badge-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
}

.product-badge.badge-new {
    background: #27ae60;
}

.product-actions-hover {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(15px);
    transition: var(--transition);
}

.product-card:hover .product-actions-hover {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: var(--maroon);
    font-size: 0.9rem;
    transition: var(--transition);
}

.quick-action-btn:hover {
    background: var(--gold);
    color: #000;
}

.product-body {
    padding: 16px;
}

.product-cat {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-name {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a {
    color: inherit;
}

.product-name a:hover {
    color: var(--gold-dark);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.price-sale {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--maroon);
}

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

.price-discount {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.product-footer {
    padding: 0 16px 16px;
    display: flex;
    gap: 8px;
}

.btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* ===== SECTION THEMES ===== */
.section-dark {
    background: var(--black);
    color: #fff;
}

.section-dark .section-title {
    color: #fff;
}

.section-dark .product-card {
    background: #1a1a1a;
    border-color: rgba(212, 175, 55, 0.2);
}

.section-dark .product-name {
    color: #e0e0e0;
}

.section-dark .price-sale {
    color: var(--gold);
}

.section-cream {
    background: var(--cream-dark);
}

/* ===== FEATURED BANNER (middle CTA) ===== */
.featured-banner {
    background: linear-gradient(135deg, var(--maroon) 0%, #5c0000 50%, #2c0000 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.featured-banner h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2.5rem;
}

.featured-banner h2 span {
    color: var(--gold);
}

.featured-banner p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--maroon);
}

.testimonial-city {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.star-rating {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

/* ===== ABOUT SNIPPET ===== */
.about-snippet {
    background: #fff;
}

.about-snippet .about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-snippet .about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 12px 20px;
    border-radius: var(--radius);
}

.about-badge .number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: #fff;
    padding: 50px 0;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.page-header .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item.active {
    color: var(--gold);
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== PRODUCT LISTING ===== */
.filter-sidebar .card {
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
    background: #fff;
}

.filter-card-header {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    padding: 14px 20px;
    border-radius: var(--radius) var(--radius) 0 0;
    font-weight: 700;
}

.filter-item {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-item input[type=checkbox] {
    accent-color: var(--maroon);
}

.filter-item label {
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ===== PRODUCT DETAIL ===== */
.product-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 1;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--gold);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-title {
    font-size: 2rem;
    color: var(--maroon);
}

.price-big {
    font-size: 2rem;
    font-weight: 800;
    color: var(--maroon);
}

.price-big-orig {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-save-badge {
    background: #fff3e0;
    color: #e65100;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background: var(--cream);
    border: none;
    width: 40px;
    height: 44px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--maroon);
    font-weight: 700;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--gold);
    color: #000;
}

.qty-val {
    width: 50px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 700;
    font-size: 1rem;
    color: var(--maroon);
    background: #fff;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-to-cart:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp-order {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* ===== CART ===== */
.cart-table th {
    background: var(--cream-dark);
    color: var(--maroon);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-summary {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-total-row.final {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--maroon);
    border: none;
    padding-top: 14px;
}

/* ===== CHECKOUT ===== */
.checkout-form .form-control {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    transition: var(--transition);
}

.checkout-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.checkout-form .form-label {
    font-weight: 600;
    color: var(--maroon);
    font-size: 0.9rem;
}

.checkout-form .form-select {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand span {
    color: var(--gold);
}

.footer-desc {
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-heading {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    font-size: 0.875rem;
}

.footer-links a::before {
    content: '❧';
    color: var(--gold);
    font-size: 0.7rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    margin-top: 40px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--gold);
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-fab a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: waPulse 2.5s infinite;
    transition: transform 0.2s;
}

.whatsapp-fab a:hover {
    transform: scale(1.1);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== BUTTONS ===== */
.btn-primary-royal {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-royal:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: #000;
}

/* ===== SEARCH BAR ===== */
.search-form {
    display: flex;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.search-form input {
    border: none;
    padding: 10px 20px;
    flex: 1;
    outline: none;
    font-size: 0.9rem;
}

.search-form button {
    background: var(--gold);
    border: none;
    padding: 10px 20px;
    color: #000;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--maroon);
    color: #fff;
}

/* ===== MISC ===== */
.section-separator {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 0.8s linear infinite;
}

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

.toast-notification {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 9998;
    background: var(--maroon);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    color: var(--maroon);
    border-color: rgba(212, 175, 55, 0.2);
}

.pagination .page-link:hover {
    background: var(--cream-dark);
    color: var(--maroon);
}

.pagination .page-item.active .page-link {
    background: var(--maroon);
    border-color: var(--maroon);
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-wrap {
        padding: 50px 0;
    }

    .hero-section {
        height: 420px;
    }

    .hero-slide-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .product-footer {
        flex-direction: column;
    }

    .main-navbar .nav-link-custom {
        padding: 12px 16px !important;
    }

    .main-navbar .nav-link-custom::after {
        display: none;
    }
}

@media (max-width: 576px) {

    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}