:root {
    --bg-white: #ffffff;
    --text-black: #1a1a1a;
    --text-grey: #555555;
    --wood-accent: #8b5a2b;
    --color-gold: #111111;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ===== Global Font Reset ===== */
* {
    font-family: var(--font-body) !important;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
    font-family: var(--font-body) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ensure icons keep their font */
.bi, [class^="bi-"], [class*=" bi-"] {
    font-family: 'bootstrap-icons' !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-black);
    margin-bottom: 1rem;
}

/* ===== Navbar ===== */
.navbar {
    background-color: var(--bg-white);
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
}

:root {
    --bg-white: #ffffff;
    --text-black: #1a1a1a;
    --text-grey: #555555;
    --wood-accent: #8b5a2b;
    --color-gold: #111111;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ===== Global Font Reset ===== */
* {
    font-family: var(--font-body) !important;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
    font-family: var(--font-body) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ensure icons keep their font */
.bi, [class^="bi-"], [class*=" bi-"] {
    font-family: 'bootstrap-icons' !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-black);
    margin-bottom: 1rem;
}

/* ===== Navbar ===== */
.navbar {
    background-color: var(--bg-white);
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-black) !important;
}

/* Responsive logo */
.navbar-logo {
    max-height: 46px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .navbar-logo {
        max-height: 34px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        max-height: 30px;
    }
}

.nav-link {
    color: var(--text-black) !important;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-left: 0.5rem;
    padding: 0.5rem 0.8rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== Buttons ===== */
.btn-primary {
    background-color: var(--text-black);
    border: 1px solid var(--text-black);
    color: var(--bg-white);
    padding: 1rem 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: var(--bg-white);
    color: var(--text-black);
    border: 1px solid var(--text-black);
    padding: 1rem 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    font-size: 0.9rem;
}

/* ===== Product Cards ===== */
.card {
    border: none;
    transition: all 0.3s ease;
}

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

.card-img-top {
    height: 400px;
    object-fit: cover;
    filter: grayscale(10%);
    transition: filter 0.3s;
}

.card:hover .card-img-top {
    filter: grayscale(0%);
}

.card-title a {
    color: var(--text-black);
    font-family: var(--font-heading) !important;
}

/* Price text always black */
.card-text,
.price-text,
.price-black {
    color: var(--text-black) !important;
    font-weight: 600;
}

/* ===== Hero ===== */
.hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0;
}

/* ===== Footer ===== */
footer {
    background-color: #f9f9f9;
    color: var(--text-black);
    border-top: 1px solid #eee;
    padding: 4rem 0;
}

footer h5 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

footer a {
    color: #111111 !important;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #555555 !important;
    text-decoration: underline;
}

/* ===== Utilities ===== */
.text-gold {
    color: var(--color-gold) !important;
}

.list-group-item.active {
    background-color: #111111 !important;
    border-color: #111111 !important;
    color: #ffffff !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}

/* ===== Professional Spacing & Alignment ===== */
.bg-black-section {
    padding: 30px 0 30px;
}

.section-title-dark,
.section-title-light {
    margin-bottom: 1.5rem;
}

.product-grid-item {
    margin-bottom: 20px;
}

/* Add spacing between product rows */
.bg-black-section .col-6,
.bg-black-section .col-md-3 {
    margin-bottom: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bg-black-section {
        padding: 50px 0;
    }

    .section-title-dark,
    .section-title-light {
        font-size: 1.4rem !important;
        margin-bottom: 2rem;
    }

    .product-grid-item img {
        height: 280px !important;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.5rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .product-grid-item img {
        height: 200px !important;
    }

    .philosophy-text {
        padding: 0 15px;
    }
}

/* ===== Product Card Styles ===== */
.product-card-styled {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none !important;
    transition: transform 0.3s ease;
}

.product-card-styled:hover {
    transform: translateY(-4px);
}

.product-card-styled .card-img-top {
    height: 320px;
    object-fit: cover;
}

.product-card-name {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.4;
    color: var(--text-black) !important;
    text-align: left;
}

.product-card-name a {
    color: var(--text-black) !important;
}

.product-card-price {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #111 !important;
    text-align: left;
}

/* ===== Global Price Text ===== */
.price-text,
.arrival-card-price {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

/* ===== Footer Styles ===== */
.site-footer {
    background-color: #fafafa;
    border-top: 1px solid #eee;
}

.footer-heading {
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600 !important;
    color: var(--text-black) !important;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #111;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666 !important;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #111 !important;
    padding-left: 4px;
    text-decoration: none;
}

.footer-contact span {
    font-size: 0.88rem;
    color: #666;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #555 !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: #111;
    border-color: #111;
    color: #fff !important;
}

/* ===== Professional Header Icons & Badges ===== */
.header-icon-link {
    color: var(--text-black) !important;
    font-size: 1.35rem; /* Slightly larger for professional feel */
    padding: 0.5rem 0.8rem !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none !important;
}

.header-icon-link:hover {
    opacity: 0.7;
    transform: translateY(-1px);
    text-decoration: none !important;
}

.cart-badge-new {
    position: absolute;
    top: 4px;
    right: 2px;
    background-color: #000;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.user-avatar-custom {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--text-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .header-icon-link {
        padding: 0.3rem 0.4rem !important;
        font-size: 1.15rem;
    }

    /* Mobile cart icon - compact, next to logo */
    .mobile-cart-icon,
    .mobile-user-icon {
        padding: 0.25rem 0.35rem !important;
        font-size: 1.1rem;
    }

    .mobile-cart-icon .cart-badge-new {
        top: 2px;
        right: 0px;
        width: 15px;
        height: 15px;
        font-size: 0.55rem;
    }

    /* Navbar toggler - compact */
    .navbar-toggler {
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
    }

    /* Navbar overall padding on mobile */
    .navbar {
        padding: 0.4rem 0;
    }
}

/* ===== PRODUCT PAGE FULL SECTIONS ===== */

/* Dark Brand Story Banner */
.brand-story-banner {
    background-color: #111111;
    padding: 80px 0;
}

.brand-story-custom-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.brand-story-custom-desc {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 90%;
    margin: 0 auto;
}

.brand-badges-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 160px;
    text-align: center;
}

.badge-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #222;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.badge-circle::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px dashed rgba(0,0,0,0.3);
    border-radius: 50%;
    z-index: -1;
}

.badge-circle:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.badge-color-1 { background-color: #d1b894; }
.badge-color-2 { background-color: #e6e2d8; }
.badge-color-3 { background-color: #9ca794; color: #fff; border-color: rgba(255,255,255,0.1); }
.badge-color-3::before { border-color: rgba(255,255,255,0.4); }
.badge-color-4 { background-color: #b56b53; color: #fff; border-color: rgba(255,255,255,0.1); }
.badge-color-4::before { border-color: rgba(255,255,255,0.4); }

.badge-label {
    color: #cccccc;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    line-height: 1.6;
}
/* Guarantee Blocks */
.guarantee-section {
    padding: 60px 0;
}

.guarantee-block {
    background-color: #f0f0f0;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease;
}

.guarantee-block:hover {
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
}

.guarantee-title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.guarantee-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}
/* Minimalist Reviews Section */
.reviews-section-minimal {
    padding: 0px 0;
    background: #fff;
}

.reviews-header-minimal {
    margin-bottom: 20px;
}

.reviews-rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.reviews-stars-group {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.reviews-count-text {
    font-size: 0.8rem;
    color: #888;
}

.reviews-bars-minimal {
    flex: 1;
    max-width: 300px;
}

.review-bar-row-minimal {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.star-label {
    font-size: 0.75rem;
    color: #777;
    width: 45px;
}

.bar-container-minimal {
    flex: 1;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill-minimal {
    height: 100%;
    background: #e6a822;
}

.count-label {
    font-size: 0.75rem;
    color: #777;
    width: 25px;
    text-align: right;
}

/* Reviews List */
.review-card {
    padding: 10px 0;
}
/* Reviews Mockup Section */
.reviews-section {
    padding: 80px 0;
    background: #fff;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 30px;
}

.reviews-rating-big {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.reviews-stars-big {
    color: #e6a822;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.reviews-count {
    font-size: 0.85rem;
    color: #777;
}

.reviews-bars {
    flex: 1;
    max-width: 300px;
}

.review-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: #555;
}

.review-bar-container {
    flex: 1;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: #e6a822;
}

.btn-write-review {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s background;
}

.btn-write-review:hover {
    background: #333;
}

.review-card {
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #555;
    font-size: 1.1rem;
}

.review-user-name {
    font-weight: 600;
    color: #111;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-verified {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
}

.review-stars {
    color: #e6a822;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .brand-badges-row {
        gap: 20px;
    }
}

/* Floating WhatsApp Widget */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    color: #fff;
}

.whatsapp-tooltip {
    background-color: #f8f9fa;
    color: #333;
    padding: 10px 18px 10px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounceTooltip 2s infinite;
}

/* Tooltip tail arrow */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #f8f9fa;
    filter: drop-shadow(2px 0 2px rgba(0,0,0,0.05));
}

.tooltip-close {
    font-size: 1rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    top: -8px;
    left: -8px;
    background: #e9ecef;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #dee2e6;
}

.tooltip-close:hover {
    background: #dee2e6;
    color: #333;
}

@keyframes bounceTooltip {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-10px);
    }
    60% {
        transform: translateX(-5px);
    }
}

@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 80px;
        right: 20px;
    }
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}
/* ===== Mobile Responsive Adjustments ===== */
@media (max-width: 991.98px) {
    /* Navbar brand no right margin */
    .navbar-brand {
        margin-right: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    /* Product cards (products listing page) */
    .product-card-styled .card-img-top {
        height: 280px !important;
    }

    .product-card-name {
        font-size: 0.88rem !important;
        height: auto !important;
        overflow: hidden;
        margin-top: 4px !important;
        margin-bottom: 0px !important;
        line-height: 1.2 !important;
    }

    .product-card-price {
        font-size: 0.95rem !important;
        margin-bottom: 2px !important;
        margin-top: 0px !important;
        font-weight: 700 !important;
    }

    /* Product card body padding tighter */
    .product-card-styled .card-body {
        padding: 4px 6px 8px !important;
    }

    /* Reduce gap between cards in grid */
    .row.g-2,
    .row.g-3 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.75rem;
    }

    /* Badge section (product page) */
    .brand-badges-row {
        gap: 15px;
    }

    .badge-circle {
        width: 90px;
        height: 90px;
        font-size: 1.6rem;
    }

    /* Product page spacing */
    .guarantee-section {
        padding: 30px 0;
    }

    .guarantee-block {
        padding: 25px 15px;
    }

    /* Footer on mobile */
    .footer-heading {
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    /* Tighter product grid images (products listing page) */
    .product-card-styled .card-img-top {
        height: 240px !important;
    }

    /* Card body even tighter on small */
    .product-card-styled .card-body {
        padding: 6px 4px 8px !important;
    }

    .product-card-name {
        font-size: 0.72rem !important;
    }

    .product-card-price {
        font-size: 0.78rem !important;
    }

    /* Badge circles smaller on very small screens */
    .badge-circle {
        width: 75px;
        height: 75px;
        font-size: 1.4rem;
    }

    .badge-item {
        width: 120px;
    }

    /* Reduce row gap on XS */
    .row.g-2,
    .row.g-3 {
        --bs-gutter-x: 0.35rem;
        --bs-gutter-y: 0.5rem;
    }
}

