/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 219, 210, 0.25);
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition);
}

header.scrolled {
    box-shadow: 0 4px 30px var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.08em;
}

.logo-sub {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    margin-left: 0.1rem;
    font-family: var(--font-heading);
}

@media (max-width: 640px) {
    .logo-text {
        font-size: 0.95rem;
    }
    .logo-sub {
        font-size: 0.4rem;
    }
    .logo img {
        height: 60px;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: color var(--transition);
    position: relative;
    text-transform: uppercase;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header-actions button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted-foreground);
    transition: all var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-actions button:hover {
    color: var(--primary);
    background: var(--bg-secondary);
}

.header-actions button svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.5rem;
    font-weight: 500;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-family: var(--font-heading);
}

.cart-badge.show {
    display: flex;
}

.menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background var(--transition);
}

.menu-btn:hover {
    background: var(--bg-secondary);
}

.menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    stroke-width: 1.5;
}

@media (min-width: 1024px) {
    .menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 2rem 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 99;
    animation: slideDown 0.3s ease;
    box-shadow: 0 10px 40px var(--shadow);
}

.mobile-menu.open {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    text-transform: uppercase;
}

.mobile-menu a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ===== HERO SLIDER ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 7rem 1.5rem 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--bg-secondary);
}

.hero-slider .slide:first-child::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(247, 245, 240, 0.9);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08));
}

@media (max-width: 640px) {
    .hero-logo {
        max-width: 200px;
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
    font-weight: 500;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(44, 36, 30, 0.15);
    background: rgba(247, 245, 240, 0.4);
    backdrop-filter: blur(4px);
    color: var(--muted-foreground);
    border-radius: 50%;
    transition: all var(--transition);
    text-decoration: none;
}

.hero-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
    background: rgba(247, 245, 240, 0.8);
}

.hero-social svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1.5rem;
    }
    .hero-actions {
        flex-direction: row;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-tagline {
        font-size: 1rem;
    }
    .hero {
        padding: 6rem 1rem 3rem;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 40px var(--shadow-hover);
    max-width: 600px;
    width: 90%;
    display: none;
    animation: slideUp 0.5s var(--ease-out);
}

.cookie-banner.show {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-banner.hide {
    animation: slideDown 0.4s var(--ease-out) forwards;
}

@media (min-width: 640px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-banner p {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-weight: 400;
    line-height: 1.5;
}

.cookie-banner .btn-cookie {
    padding: 0.4rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
}

.cookie-banner .btn-cookie:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

.cookie-banner .btn-cookie-outline {
    background: transparent;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    padding: 0.4rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.cookie-banner .btn-cookie-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 15px var(--shadow);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px var(--shadow-hover);
    border-color: var(--accent);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--bg-secondary);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 30, 0.5), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.25rem;
}

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

.product-card-overlay button {
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.product-card-overlay button:hover {
    transform: scale(1.05);
    background: var(--accent);
    color: var(--accent-foreground);
}

.product-card-body {
    padding: 1.25rem;
}

.product-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    font-weight: 400;
}

.product-price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1rem 0.5rem;
    background: linear-gradient(to top, rgba(44, 36, 30, 0.65), transparent);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    pointer-events: none;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(4px);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    font-size: 0.5rem;
    color: var(--muted-foreground);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-heading);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filters button {
    padding: 0.4rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.filters button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filters button.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
    box-shadow: 0 2px 15px var(--shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -15px var(--shadow-hover);
    border-color: var(--accent);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 1px solid var(--border);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all var(--transition);
    color: var(--muted-foreground);
}

.service-card:hover .service-icon {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.08) rotate(-4deg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ===== PROJECTS ===== */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 15px var(--shadow);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px var(--shadow-hover);
}

.project-card-image {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: var(--bg-secondary);
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.project-card:hover .project-card-image img {
    transform: scale(1.06);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 30, 0.65), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-overlay span {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
    font-weight: 500;
    font-family: var(--font-heading);
}

.project-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 0.1rem;
}

.project-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(4px);
    padding: 0.2rem 0.7rem;
    border-radius: 2px;
    font-size: 0.5rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image-frame {
    position: absolute;
    inset: 0;
    border: 8px solid rgba(247, 245, 240, 0.08);
    pointer-events: none;
}

.about-image-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--card);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 35px var(--shadow);
    border-radius: var(--radius);
}

.about-image-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
}

.about-image-card p {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-weight: 400;
}

@media (max-width: 640px) {
    .about-image-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -1rem;
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about-stat h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--accent);
}

.about-stat p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    font-weight: 500;
    font-family: var(--font-heading);
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    transition: background var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--muted-foreground);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    display: none;
    font-size: 0.9rem;
    font-weight: 400;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeUp 0.3s ease;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    flex-shrink: 0;
    stroke-width: 1.5;
}

.contact-info-item a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition);
    font-weight: 400;
}

.contact-info-item a:hover {
    opacity: 0.7;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-foreground);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
    font-weight: 400;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== SHIPPING ===== */
.shipping-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .shipping-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shipping-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shipping-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
    box-shadow: 0 2px 15px var(--shadow);
}

.shipping-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px var(--shadow-hover);
    border-color: var(--accent);
}

.shipping-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(193, 190, 157, 0.08);
    border-radius: 50%;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.shipping-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.shipping-card h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.shipping-card p {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    font-weight: 400;
}

/* ===== FOOTER ===== */
footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-brand .logo-text {
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--muted-foreground);
    transition: all var(--transition);
    padding: 0.25rem;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.footer-copy {
    font-size: 0.65rem;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-legal a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.6rem;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    transition: color var(--transition);
    font-weight: 500;
}

.footer-legal a:hover {
    color: var(--accent);
}
.footer-legal span {
    color: var(--border);
}

/* ===== LEGAL MODAL ===== */
.legal-modal .modal {
    max-width: 650px;
    grid-template-columns: 1fr;
}

.legal-modal .modal-body {
    padding: 2.5rem;
}

.legal-modal .modal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.legal-modal .modal-body .legal-date {
    font-size: 0.7rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.legal-modal .modal-body .legal-content {
    color: var(--muted-foreground);
    line-height: 1.8;
    font-size: 0.9rem;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.legal-modal .modal-body .legal-content h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.legal-modal .modal-body .legal-content p {
    margin-bottom: 0.75rem;
}

.legal-modal .modal-body .legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-modal .modal-body .legal-content ul li {
    margin-bottom: 0.25rem;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(44, 36, 30, 0.5);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--bg);
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    max-height: 92vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    animation: scaleIn 0.4s var(--ease-out);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .modal {
        grid-template-columns: 1fr 1fr;
    }
}

.modal-image {
    background: var(--bg-secondary);
    min-height: 280px;
    position: relative;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(247, 245, 240, 0.92);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--primary);
}

.modal-close:hover {
    background: var(--bg);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem 2.5rem;
    overflow-y: auto;
}

.modal-body .category {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.modal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.modal-body .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent);
    margin: 0.75rem 0 1rem;
}

.modal-body .desc {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .modal-body {
        padding: 1.25rem;
    }
    .modal-body h2 {
        font-size: 1.4rem;
    }
    .modal-body .price {
        font-size: 1.5rem;
    }
}

/* ===== CART ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(44, 36, 30, 0.3);
    backdrop-filter: blur(6px);
    display: none;
    animation: fadeIn 0.3s ease;
}

.cart-overlay.open {
    display: block;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: var(--bg);
    z-index: 151;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.08);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-header h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--muted-foreground);
    transition: color var(--transition);
}

.cart-header button:hover {
    color: var(--primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 0;
    color: var(--muted-foreground);
}

.cart-empty svg {
    width: 48px;
    height: 48px;
    color: var(--muted);
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

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

.cart-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-weight: 400;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.cart-item-actions button {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--muted-foreground);
    font-size: 0.8rem;
}

.cart-item-actions button:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
}

.cart-item-actions .remove-btn {
    border-color: transparent;
    color: #c0392b;
    margin-left: auto;
}

.cart-item-actions .remove-btn:hover {
    background: rgba(192, 57, 43, 0.06);
}

.cart-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--card);
    flex-shrink: 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cart-total span:last-child {
    color: var(--accent);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    z-index: 300;
    opacity: 0;
    transition: all 0.5s var(--ease-out);
    pointer-events: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    letter-spacing: 0.04em;
    font-family: var(--font-heading);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-tooltip {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.4rem 1rem;
    border-radius: var(--radius);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 20px var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
    pointer-events: none;
    white-space: nowrap;
    font-family: var(--font-heading);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WHATSAPP MODAL ===== */
.whatsapp-modal .modal {
    max-width: 480px;
    grid-template-columns: 1fr;
}

.whatsapp-modal .modal-body {
    padding: 2rem 2.5rem;
}

.whatsapp-modal .modal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.whatsapp-modal .modal-body p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.whatsapp-modal .modal-body input,
.whatsapp-modal .modal-body textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--card);
    color: var(--fg);
    transition: border-color var(--transition);
    outline: none;
    font-weight: 400;
}

.whatsapp-modal .modal-body input:focus,
.whatsapp-modal .modal-body textarea:focus {
    border-color: var(--accent);
}

.whatsapp-modal .modal-body textarea {
    resize: vertical;
    min-height: 80px;
}

.whatsapp-modal .modal-body .form-group {
    margin-bottom: 1rem;
}
.whatsapp-modal .modal-body .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ===== UTILITY ===== */
.text-center {
    text-align: center;
}
.text-accent {
    color: var(--accent);
}
.text-muted {
    color: var(--muted-foreground);
}
.mt-4 {
    margin-top: 1rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}
.w-full {
    width: 100%;
}
.max-w-2xl {
    max-width: 42rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.rounded {
    border-radius: var(--radius);
}
.border {
    border: 1px solid var(--border);
}
.bg-card {
    background: var(--card);
}
.shadow {
    box-shadow: 0 4px 25px -8px var(--shadow);
}
.scroll-mt-20 {
    scroll-margin-top: 5rem;
}
.hidden {
    display: none;
}
.inline-block {
    display: inline-block;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.z-10 {
    z-index: 10;
}
.pointer-events-none {
    pointer-events: none;
}
.object-cover {
    object-fit: cover;
}
.overflow-hidden {
    overflow: hidden;
}
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.uppercase {
    text-transform: uppercase;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.tracking-widest {
    letter-spacing: 0.1em;
}
.text-sm {
    font-size: 0.875rem;
}
.text-xs {
    font-size: 0.75rem;
}
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}