:root {
    --color-bg: #FAF7F5;
    --color-card: #FFFFFF;
    --color-primary: #FF6B6B;
    --color-secondary: #FFB347;
    --color-text: #2D3436;
    --color-muted: #636E72;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

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

@font-face {
    font-family: 'Nunito';
    src: url('./nunito.woff2') format('woff2');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--color-text);
    overflow-x: hidden;
}

/* Header */
.header-sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: var(--color-text);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 3rem 1rem;
    text-align: center;
    /*background: rgb(164 216 200 / 10%);*/
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 0rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,107,0.5);
}

/* Categories Navigation */
.categories-nav {
    position: sticky;
    top: 88px;
    padding: 1rem 0;
    z-index: 999;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #2d3436;
    background: var(--color-card);
}

.categories-nav::-webkit-scrollbar {
    height: 4px;
}

.categories-nav::-webkit-scrollbar-track {
    background: #2d3436;
}

.categories-nav::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.category-pill {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 50px;
    margin-right: 0.75rem;
    font-weight: 4  00;
    color: var(--color-text);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-pill:hover, .category-pill.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.05);
}

/* Product Grid */
.product-grid {
    padding: 2rem 0;
}

.product-card {
    background: var(--color-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .video-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.product-info {
    padding: 1.25rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.product-text {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.product-category {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
}

.product-price span {
    font-size: 1.25rem;
}

.btn-buy {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

/* Trust Block */
.trust-block {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.trust-item {
    text-align: center;
    margin-bottom: 2rem;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.trust-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-section {
    padding: 2rem 0;
}

.accordion-button {
    background: white;
    color: var(--color-text);
    font-weight: 700;
    border: none;
    padding: 2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--color-primary);
    color: white;
    box-shadow: none;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-body {
    background: white;
    padding: 1.5rem 1.5rem;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.social-icons {
    margin: 1.5rem 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 0.5rem;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Offcanvas Menu */
.offcanvas-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
}

.nav-link-custom {
    padding: 1rem;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid #E8E8E8;
    transition: all 0.3s ease;
}

.nav-link-custom:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}