/* Hero Swiper Animations */
.hero-swiper .swiper-slide {
    opacity: 0 !important;
    transition-property: opacity;
}

.hero-swiper .swiper-slide-active {
    opacity: 1 !important;
}

.hero-swiper .hero-overlay h1,
.hero-swiper .hero-overlay p,
.hero-swiper .hero-overlay a {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-swiper .swiper-slide-active .hero-overlay h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-swiper .swiper-slide-active .hero-overlay p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.hero-swiper .swiper-slide-active .hero-overlay a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

:root {
    --primary: #710000;
    --primary-light: #8B1A1A;
    --primary-dark: #4a0000;
    --secondary: #331400;
    --gold: #FFBE4E;
    --gold-dark: #D4A574;
    --bg-main: #FEF4E8;
    --bg-light: #FFF8F0;
    --bg-card: #FFFFFF;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-accent: #710000;
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 1rem 2rem rgba(0, 0, 0, 0.18);
    --radius: 12px;
    --radius-pill: 2rem;
    --transition: 0.3s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FEF4E8;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    text-align: center;
}

.loader-om {
    font-size: 5rem;
    color: #710000;
    animation: pulseOm 2s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes pulseOm {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s;
}

.header-main {
    background: #fff;
    padding: 10px 0;
    transition: 0.4s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-scrolled .header-main {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-scrolled .sub-nav {
    transform: translateY(-100%);
    opacity: 0;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px 40px;
    transition: 0.4s;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-text small {
    font-family: 'Great Vibes', cursive;
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-weight: 400;
    margin-top: -2px;
}

.btn-gold-premium {
    background: linear-gradient(135deg, var(--gold) 0%, #D4A574 100%);
    color: var(--secondary);
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gold-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    color: var(--secondary);
}

.btn-gold-premium.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.sub-nav {
    background: var(--primary);
    max-width: 700px;
    margin: 0 auto;
    /* Attached to header */
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    position: relative;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}

.sub-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.sub-nav li a {
    display: block;
    padding: 8px 15px 4px;
    /* Thinner links */
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.sub-nav li a:hover,
.sub-nav li a.active {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--gold);
}

/* Fix for content hidden under fixed header */
main {
    padding-top: 180px !important;
    min-height: 60vh;
}

.product-details-page {
    padding-top: 180px !important;
    padding-bottom: 60px !important;
}

/* Breadcrumb Styling */
.breadcrumb {
    margin-top: 15px !important;
    margin-bottom: 40px !important;
    padding-left: 15px;
}

.breadcrumb-item a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: " \f105 ";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ccc;
    padding: 0 15px;
}

/* Product Detail Gaps */
.product-details-page .row.g-5 {
    margin-top: 20px;
}

/* Product Gallery Styling */
.product-gallery {
    position: relative;
    margin-bottom: 30px;
}

.product-main-swiper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
    margin-bottom: 15px;
}

.product-main-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.product-main-swiper .swiper-slide {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb-swiper {
    padding: 10px 0;
}

.product-thumb-swiper .swiper-slide {
    width: 25%;
    height: auto;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--gold);
}

.product-thumb-swiper .swiper-slide img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.product-main-swiper .swiper-button-next,
.product-main-swiper .swiper-button-prev {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;

    after {
        font-size: 1.2rem;
    }
}

.product-main-swiper .swiper-button-next::after,
.product-main-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.product-meta-box {
    padding: 50px !important;
    border-radius: 30px !important;
}

.product-meta-box h1 {
    margin-bottom: 25px !important;
}

.product-main-img {
    margin-bottom: 30px;
}

/* Components */
.section-pad {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.8rem;
    color: var(--primary);
    font-weight: 400;
}

.section-heading h2 span {
    color: var(--gold-dark);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 40px;
}

.cat-card {
    text-align: center;
}

.cat-square {
    width: 210px;
    height: 210px;
    margin: 0 auto 30px;
    border: 3px solid var(--gold-dark);
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cat-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.cat-label {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 15px;
    border-radius: 15px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(113, 0, 0, 0.12);
    border-color: var(--gold);
}

.product-img {
    height: 300px;
    background: #fdfdfd;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(113, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 3;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    background: var(--gold);
    color: #fff;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.product-info h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
    transition: 0.3s;
}

.product-card:hover h3 {
    color: var(--primary);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: auto;
    margin-bottom: 20px;
}

/* Compact Product Cards */
.product-card-small {
    max-width: 320px;
    margin: 0 auto;
}

.product-card-small .product-img {
    height: 240px;
    background: #f9f9f9;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-small .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-small .product-info {
    padding: 15px;
}

.product-card-small .product-info h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    height: 2.8rem;
    overflow: hidden;
}

.product-card-small .product-cat {
    font-size: 0.7rem;
    margin-bottom: 5px;
}

.product-card-small .product-price {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.product-card-small .product-badge {
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    font-size: 0.65rem;
}

.products-grid-center {
    max-width: 1050px;
    margin: 0 auto;
}

/* Trust Section */
.trust-section {
    position: relative;
    overflow: hidden;
}

.trust-section h2 span {
    color: var(--gold);
}

.trust-icon i {
    filter: drop-shadow(0 0 10px rgba(25, 190, 78, 0.3));
}

/* About Section Extras */
.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}

.site-footer {
    background: #1a0a00;
    color: #fff;
    padding: 80px 0 30px;
    border-top: 5px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 992px) {

    .cat-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-main-inner {
        padding: 10px 20px;
    }

    .hero-overlay h1 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .cat-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .cat-square {
        width: 100%;
        height: 250px;
    }

    .section-heading h2 {
        font-size: 2.8rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #fff9f2;
    padding: 80px 0;
}

.testimonial-swiper {
    padding: 20px 10px 60px;
}

.swiper-slide {
    height: auto;
    /* Allow equal height via swiper */
}

.testimonial-card {
    background: #fff;
    padding: 30px 25px;
    /* Reduced padding */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid rgba(113, 0, 0, 0.03);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(113, 0, 0, 0.08);
}

.quote-icon {
    font-size: 2rem;
    /* Smaller icon */
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 0.95rem;
    /* Smaller font */
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    /* Cleaner font for small text */
    flex-grow: 1;
}

.user-img {
    width: 60px;
    /* Smaller image */
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin-bottom: 10px;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.user-location {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Global Presence Section Refined */
.global-section {
    background: #00050a;
    /* Fallback */
    background: radial-gradient(circle at center, #001a33 0%, #000000 100%);
    padding: 100px 0;
    color: #fff;
}

.globe-container {
    height: 500px;
    cursor: grab;
    position: relative;
    width: 100%;
}

@media (max-width: 992px) {
    .globe-container {
        height: 400px;
    }
}

.presence-grid {
    display: grid;
    gap: 20px;
}

.presence-info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.presence-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: 0.3s;
}

.presence-info-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.presence-info-card:hover::before {
    transform: scaleY(1);
}

.presence-info-card i {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

.presence-info-card h4 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
}

.presence-info-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.7;
}

.free-shipping-badge {
    background: linear-gradient(45deg, #d4af37, #f1d592);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 12px;
}

/* Certifications & Trust Section */
.cert-section {
    background: #fff;
    text-align: center;
}

.cert-badge-top {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.cert-title {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cert-title span {
    font-family: 'Great Vibes', cursive;
    color: var(--gold-dark);
}

.cert-subtext {
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    opacity: 0.8;
}

.cert-icon-card {
    padding: 30px 20px;
    transition: var(--transition);
    height: 100%;
}

.cert-icon-card:hover {
    transform: translateY(-10px);
}

.cert-icon-circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.cert-icon-card:hover .cert-icon-circle {
    background: var(--gold);
    color: var(--secondary);
    border-style: solid;
}

.cert-icon-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 700;
}

.cert-icon-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cert-seals-row {
    margin-top: 60px;
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.seal-item {
    text-align: center;
}

.seal-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    filter: grayscale(1) opacity(0.6);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbfbfb;
    padding: 10px;
    border: 1px solid transparent;
}

.seal-item:hover .seal-img-wrapper {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.seal-item span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    transition: 0.3s;
}

.seal-item:hover span {
    color: var(--primary);
}

@media (max-width: 768px) {
    .cert-title {
        font-size: 2.5rem;
    }

    .cert-seals-row {
        padding: 40px 0;
    }

    .seal-img-wrapper {
        width: 100px;
        height: 100px;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(rgba(42, 21, 6, 0.95), rgba(10, 5, 0, 0.95));
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.newsletter-box p {
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 15px 30px;
    flex-grow: 1;
    color: #fff;
    outline: none;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: linear-gradient(45deg, #d4af37, #f1d592);
    color: #000;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.accordion-button {
    padding: 25px 30px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #fff9f2;
    color: var(--primary);
}

.accordion-body {
    padding: 0 30px 30px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .newsletter-box h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }

    .newsletter-form button {
        margin-top: 15px;
        width: 100%;
    }
}

/* Site Footer Refined */
.site-footer {
    background: #111111;
    color: #ffffff;
    padding: 100px 0 30px;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo-footer {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

.footer-col h4 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a::before {
    content: '›';
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.subscription-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-subscribe-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
}

.footer-subscribe-form input {
    background: transparent;
    border: none;
    padding: 12px 25px;
    color: #fff;
    flex-grow: 1;
    outline: none;
}

.footer-subscribe-form button {
    background: linear-gradient(45deg, #d4af37, #f1d592);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    transition: 0.3s;
}

.footer-subscribe-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-main-inner {
        padding: 5px 15px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .sub-nav {
        max-width: 95%;
    }

    .sub-nav li a {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    main {
        padding-top: 140px !important;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Product Page Specific Refinements */
.product-main-img {
    transition: 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-main-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.product-meta-box {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

.product-meta-box h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.price-tag {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

/* --- Testimonial Flip Cards --- */
.testimonial-flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.testimonial-flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.flip-card-front {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border: 1px solid #f0f0f0;
}

.flip-card-front .stars {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: #eee;
}

.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Sacred Categories & Featured Creations --- */
.sacred-categories-wrap {
    padding: 100px 0;
    background: radial-gradient(circle at center, #fffcf8 0%, #fef4e8 100%);
    position: relative;
    overflow: hidden;
}

.sacred-categories-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    opacity: 0.3;
    pointer-events: none;
}

.sacred-title-block {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.sacred-title-block h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.sacred-title-block h2 span {
    color: var(--gold-dark);
    font-family: 'Great Vibes', cursive;
    display: block;
    font-size: 1.8rem;
    margin-top: -10px;
}

.tree-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 40px;
}

.root-node-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
}

.root-node {
    background: white;
    padding: 15px 45px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(113, 0, 0, 0.1);
    border: 2px solid var(--gold);
    font-weight: 800;
    color: var(--primary);
    font-size: 1.4rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
}

.root-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(113, 0, 0, 0.15);
}

.featured-creations-wrap {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.divine-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(254, 244, 232, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(254, 244, 232, 0.4) 0%, transparent 40%);
    pointer-events: none;
}

.divine-subtitle {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.divine-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.divine-divider .line {
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divine-divider i {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.8;
}

.tree-svg-responsive {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}

.tree-line {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.6;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2.5s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes autoFlip360 {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 5;
}

@media (max-width: 991px) {
    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .category-cards-grid {
        grid-template-columns: 1fr;
    }
}

.sacred-card {
    perspective: 1500px;
    height: 380px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.sacred-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: autoFlip360 15s linear infinite;
}

.sacred-card:hover .sacred-card-inner {
    animation-play-state: paused;
}

.sacred-card-front,
.sacred-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sacred-card-front img,
.sacred-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.sacred-card:hover .sacred-card-front img {
    transform: scale(1.1);
}

.sacred-card-back {
    transform: rotateY(180deg);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(113, 0, 0, 0.9) 0%, transparent 100%);
    color: #fff;
    text-align: center;
    transition: 0.4s;
}

.card-overlay-content h4 {
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-overlay-content p {
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s;
}

.sacred-card:hover .card-overlay-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Sacred Collections Styles */
.collection-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(113, 0, 0, 0.1);
}

.collection-card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.collection-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-card-img img {
    transform: scale(1.1);
}

.collection-card-body {
    padding: 25px 20px;
    text-align: center;
    background: #fff;
}

.collection-card-body h4 {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.collection-card:hover .collection-card-body h4 {
    color: var(--gold);
}

.collection-card-body span {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-card-body span {
    border-color: var(--gold);
    padding-bottom: 2px;
}

.sacred-card:hover .card-overlay-content p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .tree-svg-responsive {
        display: none;
    }

    .sacred-card {
        height: 320px;
    }

    .sacred-title-block h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .category-cards-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .sacred-card {
        height: 350px;
    }

    .cards-row {
        gap: 20px;
    }

    .capsule-card {
        width: 140px;
        height: 240px;
    }

    .sacred-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(113, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
    transform: scale(1.02);
}

.product-card:hover::after {
    opacity: 0.3;
    transform: scale(1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(113, 0, 0, 0.1);
}

/* --- About Us Page Extended Styles --- */
.about-hero {
    padding: 120px 0 60px;
    background: radial-gradient(circle at top right, #fff9f0, #ffffff);
    overflow: hidden;
}

.about-vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    transition: 0.4s;
}

.about-vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.about-vision-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.video-section-container {
    padding: 100px 0;
    background: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.video-section-container::before {
    content: '🕉';
    position: absolute;
    font-size: 30rem;
    color: rgba(255, 255, 255, 0.03);
    top: -10%;
    right: -5%;
    pointer-events: none;
}

.video-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16/9;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.video-box:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.play-btn {
    width: 90px;
    height: 90px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    animation: pulse-gold 2s infinite;
    transition: 0.4s;
}

.play-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: var(--gold);
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.director-section {
    padding: 100px 0;
    background: #fff;
}

.director-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.director-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
}

.timeline-wrap {
    padding: 100px 0;
    background: #fdfaf5;
}

.timeline-item {
    padding: 30px;
    border-left: 3px solid var(--gold);
    position: relative;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 35px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid #fff;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}
/* Reels Section Styles */
.reels-section { overflow: hidden; }
.reels-swiper { padding: 20px 0 60px !important; }
.reel-card { background: #000; border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(255, 215, 0, 0.2); aspect-ratio: 9/16; }
.reel-card:hover { transform: scale(1.03); box-shadow: 0 15px 40px rgba(113, 0, 0, 0.6); border-color: var(--gold); }
.reel-video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.reel-video-container iframe { width: 100%; height: 100%; border: none; object-fit: cover; }
.reels-section .swiper-pagination-bullet { background: var(--gold); opacity: 0.5; }
.reels-section .swiper-pagination-bullet-active { opacity: 1; width: 25px; border-radius: 5px; }

/* Custom Orders & Utility Styles */
.bg-gold { background: var(--gold) !important; }
.sub-title {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.premium-title span {
    color: var(--gold-dark);
    font-family: 'Great Vibes', cursive;
}
