/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --primary: #2c3e50;
    --accent: #27ae60;
    --accent-dark: #1e8449;
    --accent-light: #e8f5e9;
    --bg-light: #fdfbf7;
    --bg-white: #ffffff;
    --text-dark: #222222;
    --text-light: #666666;
    --text-muted: #888888;
    --border: #e1e1e1;
    --font-main: 'Figtree', sans-serif;
    --font-heading: 'Jost', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Utilities --- */
.desktop-only { display: block; }
.mobile-only { display: none; }

/* --- Top Bar --- */
.top-bar {
    background: #fdfdfd;
    color: #444;
    font-size: 0.75rem;
    padding: 9px 0;
    letter-spacing: 0.5px;
    font-weight: 500;
    border-bottom: 1px solid #ebebeb;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #555;
    margin-right: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--accent);
}

.top-right a {
    margin-left: 20px;
    margin-right: 0;
}

/* --- Header --- */
header {
    background: var(--bg-white);
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 100;
}

.header-inner {
    padding-top: 22px;
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    max-height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

.search-bar {
    flex: 1;
    max-width: 580px;
    margin: 0 20px;
    position: relative;
}

.search-bar form {
    position: relative;
    width: 100%;
}

.search-bar input {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    padding: 13px 20px 13px 48px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #333;
    font-family: var(--font-main);
    transition: var(--transition);
}

.search-bar input:focus {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.05rem;
    pointer-events: none;
}

/* Search Autocomplete */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 1000;
    max-height: 420px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #fcfcfc;
}

.search-result-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
    background: #f5f5f5;
}

.search-result-info h6 {
    margin: 0 0 3px 0;
    font-size: 0.95rem;
    color: #222;
    font-weight: 600;
    font-family: var(--font-heading);
}

.search-result-info span {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.header-whatsapp:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    color: #fff;
}

.login-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.login-link:hover {
    color: var(--accent);
}

.icon-link {
    font-size: 1.25rem;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    color: var(--accent);
}

.cart-icon {
    position: relative;
}

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

/* --- Navigation Menu (Desktop) --- */
.nav-container {
    border-top: 1px solid #f2f2f2;
    background: #fff;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.nav-menu a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #333;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
    font-weight: 600;
}

/* --- Mobile Menu Drawer --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active {
    transform: translateX(0);
}

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

.drawer-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.close-drawer {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #555;
    padding: 5px;
}

.drawer-content {
    padding: 15px 20px;
    overflow-y: auto;
    flex: 1;
}

.drawer-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f4f4f4;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.drawer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.drawer-divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #333;
    padding: 6px;
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: #0f1412;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.03);
    display: flex;
    align-items: stretch;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 16, 13, 0.68) 0%, rgba(10, 16, 13, 0.25) 50%, rgba(10, 16, 13, 0) 85%);
    pointer-events: none;
}

.slide-left-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px 40px 80px;
    background: linear-gradient(90deg, rgba(12, 18, 15, 0.45) 0%, rgba(12, 18, 15, 0.2) 75%, rgba(12, 18, 15, 0) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.slide-content {
    color: #fff;
}

.slide-tagline {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.88rem;
    margin-bottom: 14px;
    color: #55efc4;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.18;
    margin-bottom: 16px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.slide-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 26px;
    font-weight: 400;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    background: var(--accent, #27ae60);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.45);
    text-decoration: none;
}

.btn-hero:hover {
    background: var(--accent-dark, #1e8449);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.6);
    color: #fff;
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all 0.25s;
}

.btn-hero-whatsapp:hover {
    background: #1eb954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: #fff;
    color: #222;
    transform: translateY(-50%) scale(1.08);
}

.prev-btn { left: 25px; }
.next-btn { right: 25px; }

/* Category Quick Card */
.cat-quick-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid #eee;
}

.cat-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cat-quick-img-box {
    height: 155px;
    background: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-quick-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cat-quick-card:hover .cat-quick-img-box img {
    transform: scale(1.06);
}

.cat-quick-info {
    padding: 15px 12px;
    text-align: center;
}

.cat-quick-title {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.cat-quick-count {
    font-size: 0.82rem;
    color: var(--accent, #27ae60);
    font-weight: 600;
}

/* --- Split Promo Banners (2 Column) --- */
.banner-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.promo-banner-card {
    position: relative;
    height: 290px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.promo-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.promo-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15,20,18,0.92) 0%, rgba(15,20,18,0.4) 60%, rgba(15,20,18,0.1) 100%);
    transition: opacity 0.3s;
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
}

.promo-badge {
    display: inline-block;
    background: var(--accent, #27ae60);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.promo-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    line-height: 1.25;
}

.promo-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    line-height: 1.5;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #222;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.promo-btn:hover {
    background: var(--accent, #27ae60);
    color: #fff;
    transform: translateX(3px);
}

/* --- Full Width Promo Banner --- */
.banner-full-promo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 55px 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.banner-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 20, 0.93) 0%, rgba(15, 23, 20, 0.8) 55%, rgba(15, 23, 20, 0.35) 100%);
}

.banner-full-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

.banner-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent, #27ae60);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.banner-full-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    line-height: 1.25;
}

.banner-full-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    margin-bottom: 26px;
}

.banner-full-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-banner-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-banner-main:hover {
    background: #1eb954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    color: #fff;
}

.btn-banner-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-banner-secondary:hover {
    background: #fff;
    color: #222;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .banner-split-grid {
        grid-template-columns: 1fr;
    }
    .banner-full-promo {
        padding: 40px 30px;
    }
    .slide-title {
        font-size: 2.2rem;
    }
}

/* --- Section Products / Vitrin --- */
.section-products {
    padding: 60px 0 40px 0;
    background: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.section-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-link:hover {
    color: var(--accent);
    gap: 12px;
}

.product-carousel-wrapper {
    position: relative;
    padding: 0 10px;
}

.product-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 5px 25px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.product-item {
    flex: 0 0 280px;
    max-width: 280px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    border-color: #ddd;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-item-img {
    height: 240px;
    width: 100%;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.product-item:hover .product-item-img img {
    transform: scale(1.05);
}

.product-item-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.product-name:hover {
    color: var(--accent);
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f4fbf7;
    color: var(--accent-dark);
    border: 1px solid rgba(39, 174, 96, 0.3);
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.btn-whatsapp-small:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.carousel-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 5;
    transition: var(--transition);
}

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

.carousel-prev { left: -15px; }
.carousel-next { right: -15px; }

/* --- Banners --- */
.home-banner-section {
    padding: 30px 0;
}

.grid-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mid-banner-card {
    height: 250px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.mid-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.mid-banner-card .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.mid-banner-card h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 6px;
    color: #fff;
}

.mid-banner-card p {
    font-size: 1rem;
    color: #eee;
    margin-bottom: 12px;
}

.mid-banner-card a {
    text-decoration: underline;
    color: #fff;
    font-weight: 600;
}

/* --- Customer Reviews Section --- */
.reviews-section {
    padding: 60px 20px 50px 20px;
    background: #fff;
}

.reviews-section .section-title {
    margin-bottom: 35px;
    text-align: left;
}

.reviews-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 35px;
    align-items: flex-start;
}

.review-summary-card {
    background: #fbfcfc;
    border: 1px solid #eef2f3;
    border-radius: var(--radius, 12px);
    padding: 28px 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.average-rating {
    text-align: center;
    margin-bottom: 22px;
    border-bottom: 1px solid #eee;
    padding-bottom: 18px;
}

.rating-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #222;
    line-height: 1;
    font-family: var(--font-heading);
}

.stars {
    color: #f1c40f;
    font-size: 1.15rem;
    margin: 8px 0 6px 0;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.stars i.filled {
    color: #f1c40f;
}

.stars i {
    color: #ddd;
}

.review-count {
    font-size: 0.88rem;
    color: #666;
    font-weight: 500;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
}

.star-label {
    width: 50px;
    color: #555;
    font-weight: 500;
}

.progress-bar-bg {
    flex: 1;
    height: 8px;
    background: #eef1f2;
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #f1c40f;
    border-radius: 6px;
}

.count-label {
    width: 25px;
    text-align: right;
    color: #888;
    font-weight: 600;
}

/* Reviews Slider */
.review-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.review-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 2px 20px 2px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.review-slider::-webkit-scrollbar {
    height: 6px;
}

.review-slider::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.review-card {
    flex: 0 0 340px;
    max-width: 340px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: var(--radius, 12px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #27ae60;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-meta {
    flex: 1;
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 3px 0;
}

.review-stars {
    color: #f1c40f;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.review-stars i.filled {
    color: #f1c40f;
}

.verified-badge {
    color: #27ae60;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.review-comment {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
    flex: 1;
}

.reviewed-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8faf9;
    border-radius: 8px;
    border: 1px solid #eef2f0;
    font-size: 0.85rem;
    color: #333;
    transition: background 0.2s;
}

.reviewed-product:hover {
    background: #f0f7f3;
}

.reviewed-product img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.slider-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.slider-arrow:hover {
    background: var(--accent, #27ae60);
    border-color: var(--accent, #27ae60);
    color: #fff;
}

/* --- Blog Section --- */
.section-blog {
    padding: 50px 20px 60px 20px;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: var(--radius, 10px);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 12px rgba(0,0,0,0.03);
}

.blog-card:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #ddd;
}

.blog-card-img {
    height: 165px;
    width: 100%;
    overflow: hidden;
    background: #f4f4f4;
    display: block;
}

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-cat {
    display: inline-block;
    background: #eef7f2;
    color: var(--accent, #27ae60);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 8px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.blog-card-title a:hover {
    color: var(--accent, #27ae60);
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent, #27ae60);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.blog-card-more:hover {
    gap: 8px;
    color: var(--accent-dark, #1e8449);
}

/* --- Product Detail Page --- */
.product-page-container {
    padding: 30px 20px 80px 20px;
}

.product-top-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 45px;
    margin-top: 20px;
    align-items: start;
}

.product-gallery-column {
    display: flex;
    flex-direction: column;
}

.main-image-wrapper {
    position: relative;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.main-image-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.gallery-thumbs-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 15px;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.thumb-item {
    width: 72px;
    height: 72px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.2s;
    padding: 2px;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--accent, #27ae60);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.25);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.product-cat-tag {
    display: inline-block;
    background: #eef7f2;
    color: var(--accent, #27ae60);
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 15px;
}

.btn-whatsapp-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    transition: all 0.25s;
    width: 100%;
}

.btn-whatsapp-big:hover {
    background: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* --- Product Detailed Tabs Section --- */
.product-detailed-section {
    margin-top: 60px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.product-tabs-header {
    display: flex;
    background: #f8faf9;
    border-bottom: 2px solid #eef2f3;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-tabs-header::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 16px 24px;
    border: none;
    background: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--accent, #27ae60);
}

.tab-btn.active {
    color: var(--accent, #27ae60);
    font-weight: 700;
    border-bottom-color: var(--accent, #27ae60);
    background: #fff;
}

.tab-content-pane {
    padding: 35px 30px;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

/* --- Dimensions Table Styling --- */
.dimensions-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid #e5e9ea;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.dimensions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: #fff;
    text-align: left;
    min-width: 500px;
}

.dimensions-table thead {
    background: #f8faf9;
}

.dimensions-table th {
    background: #f8faf9;
    color: #2c3e50;
    font-weight: 700;
    padding: 14px 18px;
    border-bottom: 2px solid var(--accent, #27ae60);
    white-space: nowrap;
}

.dimensions-table th i {
    color: var(--accent, #27ae60);
    margin-right: 6px;
}

.dimensions-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.dimensions-table tr:last-child td {
    border-bottom: none;
}

.dimensions-table tr:nth-child(even) {
    background-color: #fafcfb;
}

.dimensions-table tr:hover {
    background-color: #f0f9f4;
}

.dimensions-table strong {
    color: #222;
    font-weight: 600;
}

.dimensions-note {
    margin-top: 15px;
    padding: 14px 18px;
    background: #f0f8f4;
    border-left: 4px solid var(--accent, #27ae60);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #235438;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.dimensions-note i {
    color: var(--accent, #27ae60);
    font-size: 1.1rem;
    margin-top: 3px;
}

.dimensions-note a {
    color: var(--accent, #27ae60);
    font-weight: 700;
    text-decoration: underline;
}

/* --- Features Box Grid --- */
.product-features-box ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.product-features-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fdfdfd;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #edf1f2;
}

.product-features-box li i {
    color: var(--accent, #27ae60);
    margin-top: 4px;
    font-size: 1.05rem;
}

/* --- Footer --- */
footer {
    background: #1a252f;
    color: #fff;
    padding-top: 60px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

footer .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.footer-logo {
    max-height: 70px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-social-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social-box:hover {
    background: var(--accent);
    transform: translateY(-2px);
    color: #fff;
}

footer h6 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* --- Floating Action Buttons (Bottom Right Stack) --- */
.floating-action-stack {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

.float-btn:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.float-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.float-whatsapp {
    background: #25d366;
    animation: floatPulse 2.5s infinite;
}

.float-phone {
    background: #2c3e50;
}

.float-scroll-top {
    background: var(--accent, #27ae60);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.8);
}

.float-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

@keyframes floatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 4px 15px rgba(0,0,0,0.2);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 4px 15px rgba(0,0,0,0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 15px rgba(0,0,0,0.2);
    }
}

@media (max-width: 576px) {
    .floating-action-stack {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
}
