:root {

    --gold: #d4af37;
    --dark: #111111;
    --brown: #2b1810;
    --cream: #f8f3ea;

}

body {

    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5 {

    font-family: 'Playfair Display', serif;

}

.custom-navbar {

    background: rgba(17, 17, 17, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);

}

.navbar-brand {

    font-size: 32px;
    color: var(--gold) !important;
    letter-spacing: 2px;

}

.nav-link {

    color: #fff !important;
    margin-left: 18px;
    font-weight: 500;
    transition: 0.3s;

}

.nav-link:hover {

    color: var(--gold) !important;

}

.btn-gold {

    background: var(--gold);
    color: #111;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: 0.3s;

}

.btn-gold:hover {

    background: #fff;
    color: #111;

}

.hero-section {

    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)),
        url('../images/hero.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    color: #fff;

}

.hero-content h1 {

    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;

}

.hero-content p {

    font-size: 18px;
    margin: 25px 0;

}

.section-padding {

    padding: 100px 0;

}

.section-title {

    text-align: center;
    margin-bottom: 60px;

}

.section-title h2 {

    font-size: 48px;
    color: var(--brown);

}

.collection-card {

    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.4s;

}

.collection-card:hover {

    transform: translateY(-10px);

}

.collection-card img {

    width: 100%;
    height: 280px;
    object-fit: cover;

}

.collection-content {

    padding: 25px;

}

.footer-section {

    background: #111;
    color: #fff;
    padding: 80px 0 30px;

}

.footer-logo {

    color: var(--gold);
    font-size: 42px;

}

.footer-links {

    list-style: none;
    padding: 0;

}

.footer-links li {

    margin-bottom: 10px;

}

.footer-links a {

    color: #ddd;
    text-decoration: none;

}

.footer-links a:hover {

    color: var(--gold);

}

.whatsapp-float {

    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 60px;
    height: 60px;

    background: #25d366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    z-index: 999;

    text-decoration: none;

}

@media(max-width:768px) {

    .hero-content h1 {

        font-size: 42px;

    }

    .section-title h2 {

        font-size: 34px;

    }

}

.no-image-hero {

    background:
        radial-gradient(circle at top right, rgba(212,175,55,0.25), transparent 30%),
        radial-gradient(circle at bottom left, rgba(212,175,55,0.15), transparent 25%),
        linear-gradient(135deg, #111111, #2b1810);

    position: relative;
    overflow: hidden;

}

.hero-overlay {

    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(0,0,0,0.7),
            rgba(0,0,0,0.3));

}

.hero-tag {

    display: inline-block;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold);

    padding: 10px 20px;
    border-radius: 50px;

    margin-bottom: 25px;
    font-weight: 500;

}

.hero-stats {

    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;

}

.stats-box {

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);

    padding: 30px;
    border-radius: 20px;

    text-align: center;
    backdrop-filter: blur(10px);

}

.stats-box h2 {

    color: var(--gold);
    font-size: 42px;

}

.stats-box p {

    color: #ddd;
    margin: 0;

}

.section-subtitle {

    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;

}

.section-heading {

    font-size: 48px;
    margin-bottom: 25px;
    color: var(--brown);

}

.about-features {

    margin-top: 30px;

}

.feature-item {

    margin-bottom: 15px;
    font-weight: 500;

}

.feature-item i {

    color: var(--gold);
    margin-right: 10px;

}

.why-section {

    background: #111;
    color: #fff;

}

.why-section .section-title h2 {

    color: #fff;

}

.why-card {

    background: #1b1b1b;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: 0.4s;

}

.why-card:hover {

    transform: translateY(-10px);
    border: 1px solid var(--gold);

}

.why-card i {

    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;

}

.benefit-box {

    display: flex;
    gap: 20px;
    margin-bottom: 30px;

}

.benefit-box i {

    font-size: 28px;
    color: var(--gold);

}

.testimonial-section {

    background: #f8f3ea;

}

.testimonial-card {

    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);

}

.contact-cta {

    background:
        linear-gradient(135deg,#2b1810,#111111);

    color: #fff;
    padding: 80px 0;

}

.contact-cta h2 {

    font-size: 42px;
    margin-bottom: 20px;

}

@media(max-width:768px){

    .section-heading {

        font-size: 34px;

    }

    .hero-stats {

        margin-top: 40px;

    }

}

.inner-page-banner {

    padding: 140px 0 100px;

    background:
        radial-gradient(circle at top right,
            rgba(212,175,55,0.20),
            transparent 30%),

        linear-gradient(135deg,
            #111111,
            #2b1810);

    color: #fff;
    text-align: center;

}

.inner-page-banner h1 {

    font-size: 64px;
    margin-bottom: 20px;

}

.inner-page-banner p {

    font-size: 18px;
    color: #ddd;

}

.about-box {

    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 10px 40px rgba(0,0,0,0.08);

    height: 100%;

    transition: 0.4s;

}

.about-box:hover {

    transform: translateY(-10px);

}

.about-box i {

    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;

}

.contact-card {

    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 10px 40px rgba(0,0,0,0.08);

    height: 100%;

}

.contact-card i {

    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;

}

.contact-card a {

    color: #111;
    text-decoration: none;
    font-weight: 600;

}

.map-box {

    overflow: hidden;
    border-radius: 20px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.10);

}

@media(max-width:768px){

    .inner-page-banner h1 {

        font-size: 42px;

    }

}

.verify-hero {

    padding: 120px 0 80px;

    background:
        radial-gradient(circle at top right,
            rgba(212,175,55,0.25),
            transparent 30%),

        linear-gradient(135deg,
            #111111,
            #2b1810);

    text-align: center;
    color: #fff;

}

.verify-badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(212,175,55,0.15);

    border: 1px solid rgba(212,175,55,0.4);

    color: var(--gold);

    padding: 12px 24px;

    border-radius: 50px;

    margin-bottom: 25px;

    font-weight: 600;

}

.verify-badge i {

    font-size: 20px;

}

.verify-hero h1 {

    font-size: 62px;
    margin-bottom: 20px;

}

.verify-hero p {

    color: #ddd;
    font-size: 18px;

}

.verify-section {

    padding: 80px 0;
    background: #f8f3ea;

}

.verify-card {

    background: #fff;

    padding: 50px;

    border-radius: 30px;

    box-shadow: 0 15px 60px rgba(0,0,0,0.10);

}

.verify-image {

    background: #fafafa;

    padding: 30px;

    border-radius: 20px;

    text-align: center;

}

.verify-image img {

    max-height: 450px;
    object-fit: contain;

}

.verified-status {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #16a34a;

    background: #dcfce7;

    padding: 10px 18px;

    border-radius: 50px;

    margin-bottom: 25px;

    font-weight: 600;

}

.product-title {

    font-size: 42px;
    margin-bottom: 35px;
    color: var(--brown);

}

.product-details {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;

}

.detail-box {

    background: #fafafa;

    padding: 25px;

    border-radius: 16px;

}

.detail-box span {

    display: block;

    color: #777;

    margin-bottom: 8px;

    font-size: 14px;

}

.detail-box h5 {

    margin: 0;
    font-size: 22px;

}

.hallmark-box {

    margin-top: 35px;

    background:
        linear-gradient(135deg,
            #d4af37,
            #f5d76e);

    color: #111;

    padding: 18px 25px;

    border-radius: 16px;

    font-weight: 700;

    display: inline-flex;
    align-items: center;
    gap: 12px;

}

.verify-error {

    padding: 150px 0;

    text-align: center;

}

.verify-error h2 {

    font-size: 48px;

}

@media(max-width:768px){

    .verify-hero h1 {

        font-size: 38px;

    }

    .product-title {

        font-size: 30px;

    }

    .product-details {

        grid-template-columns: 1fr;

    }

    .verify-card {

        padding: 30px;

    }

}

.compact-verify-section {

    min-height: 100vh;

    padding: 30px 0;

    background:
        radial-gradient(circle at top right,
            rgba(212,175,55,0.20),
            transparent 25%),

        linear-gradient(135deg,
            #111111,
            #2b1810);

    display: flex;
    align-items: center;

}

.compact-verify-card {

    max-width: 520px;

    margin: auto;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 20px 70px rgba(0,0,0,0.25);

}

.top-verify-status {

    background:
        linear-gradient(135deg,
            #16a34a,
            #22c55e);

    color: #fff;

    text-align: center;

    padding: 14px;

    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.top-verify-status i {

    font-size: 22px;

}

.compact-product-image {

    padding: 25px;
    text-align: center;
    background: #fafafa;

}

.compact-product-image img {

    width: 100%;
    max-height: 260px;
    object-fit: contain;

}

.compact-product-title {

    font-size: 28px;

    text-align: center;

    padding: 25px 20px 10px;

    color: var(--brown);

}

.compact-details-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px;

    padding: 20px;

}

.compact-detail-box {

    background: #fafafa;

    border-radius: 16px;

    padding: 18px;

    text-align: center;

}

.compact-detail-box span {

    display: block;

    font-size: 13px;

    color: #777;

    margin-bottom: 8px;

}

.compact-detail-box h5 {

    margin: 0;

    font-size: 18px;

    word-break: break-word;

}

.verified-brand {

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 25px;

    border-top: 1px solid #eee;

}

.brand-logo {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #d4af37,
            #f5d76e);

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;

    color: #111;

    font-size: 20px;

    flex-shrink: 0;

}

.verified-brand h4 {

    margin: 0;
    font-size: 22px;

}

.verified-brand p {

    margin: 4px 0 0;
    color: #777;

}

@media(max-width:768px){

    .compact-verify-section {

        padding: 15px;

    }

    .compact-product-title {

        font-size: 22px;

    }

    .compact-details-grid {

        gap: 10px;

        padding: 15px;

    }

    .compact-detail-box {

        padding: 14px 10px;

    }

    .compact-detail-box h5 {

        font-size: 16px;

    }

    .verified-brand h4 {

        font-size: 18px;

    }

}