:root {
    --primary: #4E342E;
    --secondary: #C9A227;
    --background: #FFF8F0;
    --bg: #FFF8F0;
    --white: #ffffff;
    --text: #2C2C2C;
    --muted: #6f625e;
    --accent: #8D6E63;
    --soft-gold: #fff4cc;
    --border: #eadfce;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background);
    color: var(--text);
}

/* HEADER */
header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
}

.rn-top-bar {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 500;
}

.rn-header {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.rn-logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    margin-left: 12px;
}

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

.rn-cart-btn,
.rn-primary-btn {
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.rn-cart-btn:hover,
.rn-primary-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.rn-outline-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

/* HERO TWO COLUMN SLIDER */
.premium-hero-section {
    background:
        radial-gradient(circle at top left, rgba(201,162,39,0.15), transparent 32%),
        linear-gradient(135deg, #fff8f0 0%, #f7ead7 100%);
    position: relative;
    overflow: hidden;
}

.premium-hero-slide {
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
}

.min-vh-hero {
    min-height: 720px;
}

.premium-hero-content {
    position: relative;
    z-index: 3;
    max-width: 540px;
    padding: 40px 0;
}

.premium-badge {
    display: inline-block;
    background: var(--soft-gold);
    color: #8a6500;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(201,162,39,0.25);
    box-shadow: 0 8px 22px rgba(201,162,39,0.16);
    margin-bottom: 24px;
}

.premium-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.08;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.premium-hero-content p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 32px;
}

.premium-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.premium-btn-primary,
.premium-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 56px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

.premium-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(78,52,46,0.22);
}

.premium-btn-primary:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.premium-btn-outline {
    background: rgba(255,255,255,0.85);
    color: var(--primary);
    border: 1px solid rgba(201,162,39,0.45);
}

.premium-btn-outline:hover {
    background: var(--white);
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.premium-hero-image-box {
    position: relative;
    z-index: 2;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(78,52,46,0.18);
    border: 1px solid rgba(255,255,255,0.45);
    background: #f8ead8;
}

.premium-hero-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,248,240,0.15), rgba(255,248,240,0));
    pointer-events: none;
}

.premium-hero-image-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center right;
    display: block;
    transition: transform 5s ease;
}

.carousel-item.active .premium-hero-image-box img {
    transform: scale(1.04);
}

.premium-control {
    width: 58px;
    height: 58px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.premium-control span {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    border: 1px solid rgba(201,162,39,0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.carousel-control-prev {
    left: 24px;
}

.carousel-control-next {
    right: 24px;
}

.premium-indicators {
    bottom: 26px;
}

.premium-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.35;
    border: none;
}

.premium-indicators .active {
    width: 38px;
    border-radius: 30px;
    opacity: 1;
}

/* TRUST */
.trust-section {
    padding: 46px 0 20px;
    margin-top: -40px;
    position: relative;
    z-index: 4;
}

.trust-card {
    background: var(--white);
    text-align: center;
    padding: 30px 20px;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    border: 1px solid rgba(234,223,206,0.8);
    font-size: 28px;
}

.trust-card:hover {
    transform: translateY(-8px);
}

.trust-card h5 {
    color: var(--primary);
    margin-top: 15px;
    font-weight: 700;
    font-size: 18px;
}

.trust-card p {
    color: #777;
    margin: 0;
    font-size: 14px;
}

/* SECTIONS */
.rn-section {
    padding: 78px 0;
}

.rn-light {
    background: #fbefe1;
}

.rn-section-title {
    text-align: center;
    margin-bottom: 42px;
}

.rn-section-title span {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
}

.rn-section-title h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 42px;
    margin: 8px 0 10px;
}

.rn-section-title p {
    color: #777;
    margin: 0;
}

/* CATEGORY */
.category-card-link {
    text-decoration: none;
    color: inherit;
}

.rn-category-card {
    background: var(--white);
    border-radius: 22px;
    padding: 34px 22px;
    text-align: center;
    border: 1px solid var(--border);
    transition: 0.3s;
    height: 100%;
}

.rn-category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.10);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-gold);
    border-radius: 50%;
    font-size: 30px;
}

.rn-category-card h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.rn-category-card p {
    color: #777;
    margin: 0;
}

/* PRODUCT CARDS */
.rn-product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
    border: 1px solid rgba(234,223,206,0.7);
}

.rn-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f5eadc;
}

.product-image-wrap img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: 0.45s;
}

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

.product-badge {
    position: absolute;
    left: 15px;
    top: 15px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 30px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 800;
}

.rn-product-body {
    padding: 22px;
}

.rn-product-body small {
    color: var(--accent);
    font-weight: 700;
}

.rn-product-body h5 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 7px;
    min-height: 48px;
}

.product-desc {
    color: #777;
    font-size: 14px;
    min-height: 42px;
}

.rn-price {
    margin: 12px 0 18px;
}

.rn-price del {
    color: #999;
    margin-right: 8px;
}

.rn-price strong {
    color: var(--primary);
    font-size: 22px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions form {
    flex: 1;
}

.product-view-btn,
.product-cart-btn {
    width: 100%;
    border: none;
    text-align: center;
    padding: 11px 13px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.product-view-btn {
    background: #f3eee7;
    color: var(--primary);
    flex: 1;
}

.product-cart-btn {
    background: var(--primary);
    color: var(--white);
}

.product-view-btn:hover,
.product-cart-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* WHY / TESTIMONIALS */
.why-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
    font-size: 30px;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card h5 {
    margin-top: 20px;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.why-card p {
    color: #666;
    font-size: 14px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    height: 100%;
}

.testimonial-card h6 {
    color: var(--secondary);
    font-size: 20px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
}

/* NEWSLETTER */
.newsletter-section {
    background: var(--background);
    padding: 20px 0 0;
    position: relative;
    z-index: 10;
}

.newsletter-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--background);
    color: var(--primary);
    border: 3px solid var(--secondary);
    border-radius: 35px;
    padding: 42px 45px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
    transform: translateY(55px);
}

.newsletter-card h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.newsletter-card p {
    margin-bottom: 25px;
    color: #666;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.newsletter-form input {
    width: 450px;
    height: 58px;
    max-width: 100%;
    padding: 16px 22px;
    border: 1px solid #ddd;
    border-radius: 40px;
    outline: none;
}

.newsletter-form button {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
    border: none;
    border-radius: 40px;
    padding: 16px 35px;
    transition: 0.3s;
    height: 58px;
    min-width: 170px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* FOOTER */
.rn-footer {
    background: var(--primary);
    color: var(--white);
    padding: 130px 0 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 20px;
}

.footer-text,
.footer-contact {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-social {
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.10);
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.rn-footer h5 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

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

.footer-divider {
    border-color: rgba(255,255,255,0.15);
    margin-top: 50px;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    color: rgba(255,255,255,0.7);
}

/* OTHER EXISTING PAGE STYLES */
.page-banner {
    background:
        radial-gradient(circle at top right, rgba(201,162,39,0.18), transparent 35%),
        linear-gradient(135deg, #fff8f0, #f6ead7);
    padding: 80px 0;
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 48px;
}

.page-banner p {
    color: #666;
    font-size: 18px;
}

.filter-box,
.product-top-bar,
.empty-box,
.product-image-box,
.info-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.filter-box {
    padding: 25px;
    position: sticky;
    top: 120px;
}

.filter-box h5 {
    color: var(--primary);
    margin-bottom: 20px;
}

.filter-link {
    display: block;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 30px;
    color: var(--text);
    text-decoration: none;
    background: #fff8f0;
    transition: 0.3s;
}

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

.product-top-bar {
    padding: 18px 22px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-top-bar h4,
.product-title,
.info-card h4 {
    color: var(--primary);
}

.product-top-bar span,
.empty-box,
.product-short-desc {
    color: #777;
}

.product-image-box {
    padding: 30px;
    text-align: center;
}

.product-image-box img {
    max-height: 450px;
    object-fit: contain;
}

.product-category {
    color: var(--accent);
    font-weight: 600;
}

.product-price {
    margin: 25px 0;
}

.product-price del {
    color: #999;
    font-size: 22px;
    margin-right: 15px;
}

.product-price strong {
    color: var(--primary);
    font-size: 34px;
}

.info-card {
    padding: 30px;
    height: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .premium-hero-slide,
    .min-vh-hero {
        min-height: auto;
    }

    .premium-hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 60px 0 30px;
    }

    .premium-hero-content h1 {
        font-size: 48px;
    }

    .premium-hero-buttons {
        justify-content: center;
    }

    .premium-hero-image-box {
        margin-bottom: 70px;
        border-radius: 28px;
    }

    .premium-hero-image-box img {
        height: 360px;
    }

    .premium-control {
        display: none;
    }
}

@media (max-width: 768px) {
    .rn-section {
        padding: 55px 0;
    }

    .premium-hero-content h1 {
        font-size: 38px;
    }

    .premium-hero-content p {
        font-size: 16px;
    }

    .premium-btn-primary,
    .premium-btn-outline {
        min-width: 145px;
        min-height: 50px;
        font-size: 14px;
    }

    .premium-hero-image-box img {
        height: 280px;
    }

    .trust-section {
        margin-top: 0;
        padding-top: 40px;
    }

    .rn-section-title h2 {
        font-size: 32px;
    }

    .product-image-wrap img {
        height: 190px;
    }

    .rn-product-body {
        padding: 16px;
    }

    .rn-product-body h5 {
        font-size: 16px;
        min-height: auto;
    }

    .product-desc {
        display: none;
    }

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

    .newsletter-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .premium-hero-content h1 {
        font-size: 34px;
    }

    .premium-hero-buttons {
        flex-direction: column;
    }

    .premium-btn-primary,
    .premium-btn-outline {
        width: 100%;
    }

    .premium-hero-image-box img {
        height: 230px;
    }
}


/* =====================================================
   Version 2.0 Homepage Category + Premium Refinement
   Newsletter and Footer design intentionally unchanged.
   ===================================================== */

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.15s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.premium-hero-section {
    background:
        radial-gradient(circle at 8% 0%, rgba(201,162,39,0.12), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(78,52,46,0.08), transparent 28%),
        linear-gradient(135deg, #fff8f0 0%, #f9ecd9 100%);
}

.premium-hero-slide,
.min-vh-hero {
    min-height: 600px;
}

.premium-hero-content {
    max-width: 500px;
    padding: 35px 0;
}

.premium-badge {
    padding: 8px 17px;
    font-size: 12px;
    margin-bottom: 18px;
    box-shadow: none;
}

.premium-hero-content h1 {
    font-size: clamp(38px, 4.2vw, 54px);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.6px;
}

.premium-hero-content p {
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 26px;
}

.premium-btn-primary,
.premium-btn-outline {
    min-width: 150px;
    min-height: 48px;
    font-size: 14px;
}

.premium-hero-image-box {
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(78,52,46,0.15);
}

.premium-hero-image-box img {
    height: 430px;
}

.carousel-item.active .premium-hero-image-box img {
    transform: scale(1.035);
}

.premium-control {
    width: 46px;
    height: 46px;
}

.premium-control span {
    width: 44px;
    height: 44px;
    font-size: 28px;
}

.premium-indicators {
    bottom: 18px;
}

.trust-section {
    padding: 38px 0 16px;
    margin-top: -28px;
}

.trust-card {
    padding: 24px 18px;
    border-radius: 18px;
    font-size: 24px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.07);
}

.trust-card h5 {
    font-size: 16px;
    margin-top: 12px;
}

.trust-card p {
    font-size: 13px;
}

.rn-section {
    padding: 64px 0;
}

.rn-section-title {
    margin-bottom: 34px;
}

.rn-section-title h2 {
    font-size: clamp(30px, 3.2vw, 38px);
    margin: 7px 0 8px;
}

.rn-section-title p {
    font-size: 15px;
}

.v2-category-section {
    background: #fff8f0;
}

.v2-category-card {
    height: 305px;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(78,52,46,0.10);
    border: 1px solid rgba(255,255,255,0.55);
    transition: 0.35s ease;
}

.v2-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease;
}

.v2-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.03) 0%,
        rgba(0,0,0,0.18) 45%,
        rgba(46,31,24,0.88) 100%
    );
    z-index: 1;
}

.v2-category-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 21px;
    z-index: 2;
}

.v2-category-content span {
    color: #E7C369;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.v2-category-content h5 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    margin: 7px 0 7px;
}

.v2-category-content p {
    color: rgba(255,255,255,0.88);
    font-size: 13.5px;
    font-weight: 600;
    margin: 0;
}

.v2-category-card:hover {
    transform: translateY(-7px);
    color: #fff;
    box-shadow: 0 18px 42px rgba(78,52,46,0.18);
}

.v2-category-card:hover img {
    transform: scale(1.08);
}

.rn-product-card {
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.07);
}

.rn-product-card:hover {
    transform: translateY(-7px);
}

.product-image-wrap img {
    height: 220px;
}

.rn-product-body {
    padding: 18px;
}

.rn-product-body h5 {
    font-size: 16px;
    min-height: 42px;
}

.product-desc {
    font-size: 13.5px;
    min-height: 38px;
}

.rn-price strong {
    font-size: 19px;
}

.product-view-btn,
.product-cart-btn {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13.5px;
}

.why-card {
    border-radius: 20px;
    padding: 30px 20px;
    font-size: 26px;
}

.why-card h5 {
    font-size: 16px;
    margin-top: 15px;
}

.testimonial-card {
    border-radius: 20px;
    padding: 28px;
}

@media (max-width: 991px) {
    .premium-hero-slide,
    .min-vh-hero {
        min-height: auto;
    }

    .premium-hero-content {
        padding: 48px 0 28px;
    }

    .premium-hero-content h1 {
        font-size: 42px;
    }

    .premium-hero-image-box img {
        height: 335px;
    }

    .v2-category-card {
        height: 285px;
    }
}

@media (max-width: 768px) {
    .rn-section {
        padding: 50px 0;
    }

    .premium-hero-content h1 {
        font-size: 34px;
    }

    .premium-hero-content p {
        font-size: 15px;
    }

    .premium-hero-image-box img {
        height: 255px;
    }

    .v2-category-card {
        height: 255px;
    }

    .v2-category-content h5 {
        font-size: 22px;
    }

    .product-image-wrap img {
        height: 185px;
    }
}

@media (max-width: 480px) {
    .premium-hero-content h1 {
        font-size: 31px;
    }

    .v2-category-card {
        height: 240px;
    }
}
