:root {
    --cocoa: #3e1c0f;
    --latte: #f8f3eb;
    --evergreen: #1f6f5c;
    --sage: #6f8f7b;
    --amber: #d9a05b;
    --champagne: #f2d4ab;
    --charcoal: #151312;
    --text-dark: #1f1a16;
    --text-muted: #7c7367;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.82);
    --border-soft: rgba(62, 28, 15, 0.08);
    --gradient-brand: linear-gradient(120deg, #1f6f5c, #c7683f);
    --shadow-strong: 0 28px 55px rgba(21, 19, 18, 0.25);
    --shadow-soft: 0 12px 35px rgba(21, 19, 18, 0.12);
}

.btn-add-cart {
    background: var(--evergreen);
    color: var(--white);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.4rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-add-cart .btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-add-cart .btn-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
    position: absolute;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.btn-add-cart .icon-check {
    opacity: 0;
    transform: translateX(-15px) scale(0.6);
}

.btn-add-cart .icon-cart {
    transform: translateX(-100%);
    animation: cartEnter 1s ease forwards;
}

.btn-add-cart .btn-label {
    transition: color 0.3s ease;
}

.btn-add-cart.is-adding .icon-cart {
    animation: cartDrive 0.9s ease forwards;
}

.btn-add-cart.is-adding .btn-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255,255,255,0.4);
    animation: pulse 0.9s ease;
}

.btn-add-cart.is-added .icon-cart {
    opacity: 0;
    transform: translateX(40px) scale(0.8);
}

.btn-add-cart.is-added .icon-check {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.btn-add-cart.is-added {
    background: linear-gradient(135deg, #1f6f5c, #3cb88f);
    box-shadow: 0 18px 40px rgba(31, 111, 92, 0.3);
}

.btn-add-cart:disabled {
    opacity: 0.9;
    cursor: not-allowed;
}

@keyframes cartEnter {
    from {
        transform: translateX(-30px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes cartDrive {
    0% {
        transform: translateX(0);
    }
    60% {
        transform: translateX(24px);
    }
    100% {
        transform: translateX(24px) scale(0.5);
        opacity: 0;
    }
}

@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 0.9;
    }
    to {
        transform: scale(1.25);
        opacity: 0;
    }
}

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

body {
    font-family: 'Manrope', 'Nunito Sans', sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(217, 160, 91, 0.15), transparent 55%), linear-gradient(135deg, #fbf8f3, #f3ece1);
    color: var(--text-dark);
    line-height: 1.65;
    position: relative;
    min-height: 100vh;
    letter-spacing: 0.01em;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 24%, rgba(199, 104, 63, 0.25), transparent 45%),
        radial-gradient(circle at 82% 8%, rgba(31, 111, 92, 0.2), transparent 50%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.65), transparent 60%);
    opacity: 0.75;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Manrope', serif;
    color: var(--cocoa);
    letter-spacing: 0.015em;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--glass);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    border-radius: 0 0 2rem 2rem;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.topbar {
    background: linear-gradient(90deg, rgba(62, 28, 15, 0.95), rgba(31, 111, 92, 0.9));
    color: var(--latte);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.25rem 5vw;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    overflow: hidden;
}

.topbar-marquee {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 1.2rem;
    min-width: 0;
}

.topbar .brand-name {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    animation: marquee-scroll 18s linear infinite;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.18em;
    min-width: max-content;
}

.marquee-track span {
    flex-shrink: 0;
}

.contact-number {
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.12em;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 5vw;
    position: relative;
}

.logo {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--cocoa);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cocoa);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.header-search {
    flex: 1;
    max-width: 420px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 0.2rem 0.3rem 0.2rem 0.8rem;
    border: 1px solid rgba(31, 111, 92, 0.2);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6), 0 8px 20px rgba(21, 19, 18, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-search:focus-within {
    border-color: rgba(31, 111, 92, 0.5);
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.85), 0 14px 30px rgba(31, 111, 92, 0.18);
}

.header-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.6rem 0.4rem;
}

.header-search input::placeholder {
    color: var(--text-muted);
}

.header-search input:focus {
    outline: none;
}

.header-search button {
    border: none;
    background: linear-gradient(120deg, #1f6f5c, #c7683f);
    color: #fff;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(31, 111, 92, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-search button svg {
    width: 18px;
    height: 18px;
}

.header-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(31, 111, 92, 0.35);
}

.header-search button span {
    font-size: 0.9rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid transparent;
    position: relative;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--evergreen);
    transform: translateY(-2px);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    transform: scaleX(1);
}

.main-nav a:focus-visible {
    outline: 3px solid rgba(31, 111, 92, 0.35);
    border-radius: 6px;
}

.nav-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding-right: 0.4rem;
}

.cart-count-badge {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--evergreen);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(31, 111, 92, 0.35);
    transform: translateY(-1px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cart-link:hover .cart-count-badge,
.nav-cart-link.active .cart-count-badge {
    background: var(--gradient-brand);
    transform: translateY(-3px);
}

.page-content {
    padding: 0 5vw 4.5rem;
    min-height: 60vh;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.flash {
    padding: 0.75rem 5vw;
    font-weight: 500;
}

.flash-success {
    background: #d1fae5;
    color: #065f46;
}

.flash-error {
    background: #fee2e2;
    color: #b91c1c;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4.5rem;
    perspective: 1200px;
}

.hero h1 {
    font-size: clamp(2.6rem, 4vw, 3.75rem);
    color: var(--cocoa);
    margin-bottom: 1.2rem;
    text-shadow: 0 18px 35px rgba(62, 28, 15, 0.28);
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.hero > div {
    background: var(--glass);
    padding: 2.25rem;
    border-radius: 1.75rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: rotateY(-4deg) translateZ(18px);
}

.hero > div:last-child {
    background: transparent;
    padding: 0;
    box-shadow: none;
    transform: rotateY(8deg) translateZ(35px);
    animation: float 8s ease-in-out infinite;
}

.btn {
    display: inline-block;
    background-image: var(--gradient-brand);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(31, 111, 92, 0.35);
}

.btn:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 30px 60px rgba(31, 111, 92, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--evergreen);
    border: 2px solid rgba(31, 111, 92, 0.35);
    box-shadow: none;
    padding: 0.8rem 1.8rem;
}

.btn-outline:hover {
    color: #fff;
    background: var(--evergreen);
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(31, 111, 92, 0.35);
}

.section-title {
    font-size: 2.15rem;
    margin-bottom: 1.5rem;
    color: var(--cocoa);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 64px;
    height: 4px;
    border-radius: 999px;
    background: var(--gradient-brand);
    box-shadow: 0 6px 18px rgba(217, 160, 91, 0.55);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.categories,
.why-choose,
.product-grid,
.recommended-brands {
    margin-bottom: 3rem;
}

.text-muted {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 235, 0.92));
    padding: 1.65rem;
    border-radius: 1.15rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card h3 {
    color: var(--cocoa);
    margin-bottom: 0.5rem;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-strong);
}

.card:hover::before {
    opacity: 1;
}

.categories .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 220px;
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--latte);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 0 1px rgba(62, 28, 15, 0.08);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 238, 226, 0.92));
    padding: 1.35rem;
    border-radius: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    border: 1px solid rgba(214, 180, 140, 0.45);
    box-shadow: 0 20px 45px rgba(87, 60, 30, 0.18);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.4), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(48, 33, 11, 0.22);
}

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

.product-card h4 {
    font-size: 1.3rem;
    color: var(--cocoa);
    margin-bottom: 0.15rem;
}

.product-card .badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--evergreen);
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    align-self: flex-start;
    font-weight: 600;
    border: 1px solid rgba(31, 111, 92, 0.15);
}

.product-thumb {
    width: 100%;
    border-radius: 1.1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, 0.04);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 20px 30px rgba(7, 29, 13, 0.15);
    position: relative;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.product-card p {
    color: var(--text-muted);
    line-height: 1.65;
}

.variant-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 500;
}

.product-card button,
.product-card .btn-mini {
    border: none;
    background: var(--evergreen);
    color: var(--white);
    padding: 0.6rem 1.1rem;
    border-radius: 0.85rem;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(31, 111, 92, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-mini {
    background: var(--cocoa);
    color: var(--latte);
    padding: 0.5rem 1.2rem;
    border-radius: 0.85rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 12px 24px rgba(62, 28, 15, 0.32);
}

.product-card button:hover,
.btn-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.filter-btn {
    border: 1px solid rgba(31, 111, 92, 0.5);
    color: var(--evergreen);
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--evergreen);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(31, 111, 92, 0.32);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.table th,
.table td {
    padding: 0.85rem;
    border-bottom: 1px solid rgba(21, 19, 18, 0.08);
    text-align: left;
}

.auth-card {
    max-width: 420px;
    margin: 3rem auto;
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(21, 19, 18, 0.12);
    border-radius: 0.75rem;
    font-family: inherit;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.92);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.auth-hero {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(242, 212, 171, 0.2));
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.auth-hero h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0.5rem 0 1rem;
}

.auth-hero p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.auth-hero ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-hero ul li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.auth-hero ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--amber);
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(62, 28, 15, 0.08);
    font-weight: 600;
}

.contact-chip a {
    color: var(--evergreen);
    text-decoration: underline;
}

.auth-form {
    display: flex;
    flex-direction: column;
}

.auth-form label {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.auth-form input {
    margin-bottom: 1.25rem;
}

.auth-meta {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.text-link {
    color: var(--evergreen);
    font-weight: 600;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--evergreen);
    box-shadow: 0 0 0 3px rgba(31, 111, 92, 0.18);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row > * {
    flex: 1;
}

.site-footer {
    background: radial-gradient(circle at top, #1b0c04, #050200);
    color: var(--white);
    padding: 2.75rem 5vw;
    border-radius: 2rem 2rem 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.28);
    border-top: 1px solid rgba(242, 212, 171, 0.25);
}

.footer-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.site-footer h4 {
    color: var(--champagne);
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
    color: var(--champagne);
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

.table-actions button,
.table-actions a {
    border: none;
    padding: 0.4rem 0.9rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-secondary {
    background: var(--champagne);
    color: var(--cocoa);
    box-shadow: 0 15px 30px rgba(191, 145, 98, 0.35);
}

.btn-danger {
    background: #c7683f;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(199, 104, 63, 0.35);
}

.floating-whatsapp {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 1.05rem 2.25rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 1.05rem;
    box-shadow: 0 20px 45px rgba(18, 140, 126, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp::before {
    content: '';
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.65), transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg fill='none'%3E%3Ccircle cx='16' cy='16' r='16' fill='%2325D366'/%3E%3Cpath d='M16 7.2c-4.88 0-8.83 3.88-8.83 8.66c0 1.97.66 3.78 1.78 5.23L8 25.5l4.2-1.34a9.7 9.7 0 0 0 3.79.75c4.88 0 8.83-3.88 8.83-8.66C24.82 11.08 20.87 7.2 16 7.2Z' fill='%23fff'/%3E%3Cpath d='M16 9.67c3.57 0 6.46 2.82 6.46 6.29s-2.89 6.29-6.46 6.29c-1.09 0-2.14-.27-3.05-.77l-.22-.12l-2.49.8l.82-2.11l-.14-.22a5.53 5.53 0 0 1-.93-3.87c.32-2.87 2.75-5.29 5.71-5.29Zm3.65 7.69c-.2-.11-1.18-.6-1.37-.67c-.18-.07-.32-.11-.46.11c-.14.22-.53.67-.65.81c-.12.14-.24.16-.44.05c-.2-.11-.84-.31-1.6-.99c-.59-.52-.99-1.18-1.11-1.38c-.12-.2-.01-.3.09-.41c.09-.09.2-.24.3-.35c.1-.11.13-.19.2-.33c.06-.14.03-.25-.02-.35c-.05-.11-.46-1.11-.63-1.52c-.17-.41-.34-.35-.46-.36h-.39c-.14 0-.36.05-.55.24c-.19.19-.73.68-.73 1.66c0 .97.75 1.9.86 2.03c.11.14 1.47 2.32 3.57 3.16c.5.21.89.34 1.19.44c.5.16.95.14 1.31.09c.4-.06 1.18-.48 1.35-.95c.17-.47.17-.87.12-.95c-.05-.08-.18-.13-.38-.24Z' fill='%2325D366'/%3E%3C/g%3E%3C/svg%3E") center/95% no-repeat;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
}

.floating-whatsapp span {
    font-size: 1.05rem;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(18, 140, 126, 0.4);
}


.cart-list {
    display: grid;
    gap: 1rem;
}

.cart-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.cart-thumb {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(214, 180, 140, 0.35));
    box-shadow: 0 8px 18px rgba(21, 19, 18, 0.15);
    flex-shrink: 0;
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item input {
    width: 72px;
    margin: 0;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 111, 92, 0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(239, 233, 224, 0.95));
    color: var(--cocoa);
    font-weight: 600;
    text-align: center;
    box-shadow: inset 0 2px 6px rgba(255,255,255,0.6), 0 6px 18px rgba(31, 111, 92, 0.12);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cart-item input:focus {
    outline: none;
    border-color: rgba(31, 111, 92, 0.6);
    box-shadow: inset 0 2px 8px rgba(255,255,255,0.8), 0 12px 28px rgba(31, 111, 92, 0.2);
}

.cart-item .btn-danger {
    min-width: 110px;
    justify-self: end;
    border-radius: 999px;
    padding: 0.45rem 1.2rem;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(199, 104, 63, 0.35);
}

.cart-item .btn-danger:hover {
    box-shadow: 0 16px 36px rgba(199, 104, 63, 0.45);
}

.order-summary {
    max-width: 420px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.94);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.badge-green {
    background: rgba(31, 111, 92, 0.1);
    color: var(--evergreen);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

@keyframes float {
    0% { transform: rotateY(6deg) translateY(0) translateZ(35px); }
    50% { transform: rotateY(-2deg) translateY(-12px) translateZ(45px); }
    100% { transform: rotateY(6deg) translateY(0) translateZ(35px); }
}

@media (max-width: 768px) {
    .header-main {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        width: 100%;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-item-info {
        flex-direction: column;
    }

    .cart-thumb {
        width: 90px;
        height: 90px;
    }

    .hero > div,
    .hero > div:last-child {
        transform: none;
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}
