:root {
    --blue: #4EBEDE;
    --blue-dark: #2E9BB8;
    --blue-light: #DDF0F8;
    --orange: #DE8D48;
    --orange-dark: #C77630;
    --orange-light: #FBE8D5;
    --purple: #5E3F9A;
    --purple-dark: #4A3280;
    --purple-light: #E8E2F2;
    --slate: #4A4D5A;
    --slate-muted: #7A7D8A;
    --mist: #F0F7FA;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(74, 77, 90, 0.08);
    --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    min-height: 100vh;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background: linear-gradient(135deg, #F0F7FA 0%, #DDF0F8 100%);
    color: var(--slate);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
}

header {
    text-align: center;
    margin-bottom: 36px;
    animation: fadeInDown 0.8s ease both;
}

.logo-mark {
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    letter-spacing: -0.02em;
    color: var(--slate);
    margin-bottom: 8px;
}

.site-name {
    font-size: clamp(2rem, 6vw, 2.8rem);
    letter-spacing: -0.02em;
    color: var(--slate);
    margin-bottom: 8px;
    font-weight: 700;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--slate-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(24px, 5vw, 44px);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.form-group { margin-bottom: 22px; }

label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate-muted);
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #D0E8F0;
    border-radius: 12px;
    background: var(--mist);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    color: var(--slate);
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(78, 189, 222, 0.15);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

textarea { min-height: 100px; resize: vertical; }

button {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(222, 141, 72, 0.35);
    transition: transform 0.15s, box-shadow 0.15s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(222, 141, 72, 0.42);
}

button:active { transform: translateY(0); }

footer {
    text-align: center;
    margin-top: 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: var(--slate-muted);
}

.confirmation {
    text-align: center;
    padding: 24px 8px;
}

.confirmation .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--blue-dark);
    animation: popIn 0.5s ease 0.3s both;
}

.confirmation h2 {
    font-size: clamp(1.7rem, 5vw, 2.3rem);
    margin-bottom: 12px;
}

.confirmation p {
    font-family: 'Montserrat', sans-serif;
    color: var(--slate-muted);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 28px;
}

.details {
    background: var(--mist);
    border-radius: 14px;
    padding: 22px;
    text-align: left;
    max-width: 420px;
    margin: 0 auto 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.details strong {
    color: var(--slate);
    display: inline-block;
    min-width: 110px;
}

.secondary-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1.5px solid var(--orange);
    border-radius: 12px;
    color: var(--orange);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.secondary-btn:hover {
    background: var(--orange);
    color: var(--white);
}

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(240, 247, 250, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(78, 189, 222, 0.18);
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.nav-brand img {
    height: 100%;
    max-height: 64px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate);
    text-decoration: none;
    margin-left: 28px;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(222, 141, 72, 0.32);
}

.nav-phone {
    color: var(--blue-dark) !important;
    font-weight: 700 !important;
}

.nav-phone i {
    font-size: 0.8rem;
    margin-right: 4px;
}

.nav-whatsapp-btn {
    background: #25D366;
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: box-shadow 0.15s, transform 0.15s;
}

.nav-whatsapp-btn:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-1px);
}

.nav-whatsapp-btn i {
    font-size: 1rem;
}

.nav-whatsapp-mobile {
    display: none;
    background: #25D366;
    color: var(--white) !important;
    padding: 8px 14px;
    border-radius: 50px;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    margin-left: auto;
    margin-right: 12px;
}

.nav-whatsapp-mobile i {
    font-size: 1rem;
}

.nav-dropdown-wrapper {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.2s;
}

.nav-dropdown-wrapper:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 189, 222, 0.15);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(74, 77, 90, 0.12);
    padding: 8px;
    z-index: 300;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    display: flex;
}

.nav-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--slate) !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.15s;
    margin: 0 !important;
    border-bottom: none !important;
}

.nav-dropdown-item:hover {
    background: rgba(221, 240, 248, 0.6);
}

.nav-dropdown-count {
    background: var(--blue-light);
    color: var(--blue-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

.nav-toggle { display: none; }

.nav-toggle-label {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--slate);
    user-select: none;
    padding: 8px;
}

.nav-toggle-label .close { display: none; }

.nav-toggle:checked + .nav-toggle-label .open { display: none; }
.nav-toggle:checked + .nav-toggle-label .close { display: inline; }

.hero {
    position: relative;
    padding: 130px 24px 140px;
    text-align: center;
    background: url('/static/podium.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 77, 90, 0.58) 0%, rgba(74, 77, 90, 0.42) 50%, rgba(94, 63, 154, 0.30) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.08;
    margin-bottom: 22px;
    color: var(--white);
}

.hero h1 span { color: #F2C896; }

.hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 34px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 34px;
}

.badge {
    background: var(--white);
    border: 1px solid rgba(78, 189, 222, 0.22);
    border-radius: 50px;
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-dark);
    box-shadow: var(--shadow);
}

.cta-btn {
    display: inline-block;
    padding: 18px 34px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(222, 141, 72, 0.38);
    transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(222, 141, 72, 0.45);
}

.section {
    padding: 86px 24px;
}

.section-alt { background: var(--white); }

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: var(--slate-muted);
    max-width: 560px;
    margin: 0 auto 52px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.service-card {
    background: var(--mist);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(78, 189, 222, 0.15);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.service-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--slate-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.product-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(74, 77, 90, 0.12);
}

.product-image {
    position: relative;
    height: 200px;
    background: var(--mist);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 50px;
}

.product-info {
    padding: 22px;
    text-align: left;
}

.product-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--slate);
}

.product-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: var(--slate-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.product-gallery {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.pd-main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--mist);
    overflow: hidden;
    position: relative;
}

.pd-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.pd-thumbs {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: var(--white);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.pd-thumb {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    background: var(--mist);
    padding: 0;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: none;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-thumb:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 189, 222, 0.25);
}

.pd-thumb.active {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-light);
}

.delivery-video-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(74, 77, 90, 0.18);
    transition: transform 0.2s, box-shadow 0.2s;
}

.delivery-video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(74, 77, 90, 0.25);
}

.delivery-video-preview {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.delivery-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.2s;
}

.delivery-video-wrapper:hover .delivery-video-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.delivery-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blue-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.delivery-video-wrapper:hover .delivery-play-btn {
    transform: scale(1.1);
}

.delivery-video-overlay p {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    max-height: 90vh;
    max-width: 95vw;
}

.video-modal-player {
    max-height: 90vh;
    max-width: 95vw;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--slate);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.video-modal-close:hover {
    background: var(--white);
}

@media (max-width: 768px) {
    .pd-main-image {
        aspect-ratio: 1 / 1;
    }
    .pd-thumb {
        width: 60px;
        height: 60px;
    }
    .product-detail {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 80px;
    }
    .sticky-bar-price {
        font-size: 0.95rem;
    }
    .sticky-bar-buttons .cta-btn {
        padding: 12px 10px;
        font-size: 0.82rem;
    }
}

.product-details h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 14px;
}

.product-details .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 18px;
}

.product-details .description {
    font-family: 'Montserrat', sans-serif;
    color: var(--slate-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.product-meta span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    background: var(--mist);
    color: var(--slate);
    padding: 8px 14px;
    border-radius: 50px;
}

.features-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--slate);
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
}

.product-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--slate);
    padding: 8px 0;
    border-bottom: 1px solid rgba(78, 189, 222, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--blue);
    font-size: 0.9rem;
}

.product-order-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 8px;
}

.product-order-buttons .cta-btn {
    flex: 1;
    text-align: center;
    padding: 16px 20px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.whatsapp-btn {
    background: #25D366;
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Sticky order bar on product pages */
.sticky-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(78, 189, 222, 0.18);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 -6px 24px rgba(74, 77, 90, 0.1);
}

.sticky-bar-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-dark);
    white-space: nowrap;
}

.sticky-bar-buttons {
    display: flex;
    flex: 1;
    gap: 10px;
}

.sticky-bar-buttons .cta-btn {
    flex: 1;
    text-align: center;
    padding: 14px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Reviews section */
.reviews-section {
    margin-top: 40px;
    padding: 32px 0;
    border-top: 1px solid rgba(78, 189, 222, 0.15);
}

.reviews-inner {
    max-width: 700px;
    margin: 0 auto;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: var(--blue-light);
    border-radius: 12px;
}

.reviews-avg {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-avg-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate);
}

.reviews-avg-stars {
    color: #f5a623;
    font-size: 1rem;
}

.reviews-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--slate-muted);
}

.reviews-list {
    margin-bottom: 32px;
}

.reviews-empty {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--slate-muted);
    text-align: center;
    padding: 24px;
}

.review-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(78, 189, 222, 0.1);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate);
}

.review-stars {
    color: #f5a623;
    font-size: 0.8rem;
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.5;
    margin: 0 0 6px 0;
}

.review-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: var(--slate-muted);
}

.review-alert {
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-alert-success {
    background: rgba(37, 211, 102, 0.1);
    color: #1a8c4a;
}

.review-alert-info {
    background: rgba(78, 189, 222, 0.1);
    color: var(--blue-dark);
}

.review-form-wrapper {
    background: var(--white);
    border: 1px solid rgba(78, 189, 222, 0.15);
    border-radius: 12px;
    padding: 24px;
}

.review-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--slate);
    margin-bottom: 18px;
}

.review-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.review-form .form-group {
    flex: 1;
}

.review-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 6px;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    box-sizing: border-box;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-light);
}

.review-form textarea {
    resize: vertical;
    min-height: 70px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    padding: 8px 0;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.4rem;
    color: #ccc;
    margin: 0;
    transition: color 0.15s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #f5a623;
}

.review-submit-btn {
    padding: 10px 28px;
    border: none;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.review-submit-btn:hover {
    background: var(--blue-dark);
}

@media (max-width: 600px) {
    .review-form-row {
        flex-direction: column;
        gap: 16px;
    }
}

/* Product card wrapper + WhatsApp icon */
.product-card-wrapper {
    position: relative;
}

.card-whatsapp-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: transform 0.15s, box-shadow 0.15s;
    z-index: 5;
}

.card-whatsapp-btn i {
    font-size: 1rem;
}

.card-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--slate-muted);
    margin-bottom: 28px;
}

.breadcrumb a {
    color: var(--blue-dark);
    text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    border-bottom: 2px solid rgba(78, 189, 222, 0.18);
    padding-bottom: 12px;
}

.admin-tabs a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--slate-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.admin-tabs a:hover { background: var(--blue-light); color: var(--blue-dark); }

.admin-tabs a.active {
    background: var(--blue);
    color: var(--white);
}

.admin-logout-form {
    margin-left: auto;
}

.admin-logout-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    background: rgba(222, 141, 72, 0.12);
    color: var(--orange-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s;
}

.admin-logout-btn:hover {
    background: var(--orange);
    color: var(--white);
}

.login-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-card {
    max-width: 400px;
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(74, 77, 90, 0.12);
    padding: 40px 32px;
    text-align: center;
}

.login-logo {
    margin-bottom: 24px;
}

.login-logo img {
    max-height: 56px;
    width: auto;
}

.login-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--slate);
    margin-bottom: 8px;
}

.login-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--slate-muted);
    margin-bottom: 28px;
}

.login-error {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #c0392b;
    background: rgba(192, 57, 43, 0.08);
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.login-form {
    text-align: left;
}

.login-form .form-group {
    margin-bottom: 18px;
}

.login-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 6px;
}

.login-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.login-form input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-light);
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn:hover {
    background: var(--blue-dark);
}

.admin-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.product-grid-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
}

.product-admin-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.product-admin-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.product-admin-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-admin-info h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.product-admin-info .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.product-admin-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.product-admin-actions a, .product-admin-actions button {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.product-admin-actions a.edit {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.product-admin-actions form { flex: 1; }

.product-admin-actions button.delete {
    width: 100%;
    background: var(--orange-light);
    color: var(--orange-dark);
}

.admin-form .form-group { margin-bottom: 18px; }

.admin-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--slate);
}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="file"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(78, 189, 222, 0.25);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
}

.admin-form textarea { min-height: 100px; resize: vertical; }

.admin-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.admin-form .features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.admin-form .features-list input {
    width: 100%;
}

.image-upload-preview {
    max-width: 220px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.admin-product-form {
    max-width: 800px;
    margin: 0 auto;
}

.admin-form-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--slate-muted);
    margin-bottom: 28px;
}

.form-section {
    padding: 22px 0;
    border-top: 1px solid rgba(78, 189, 222, 0.12);
}

.price-input-row {
    display: flex;
    gap: 8px;
}

.price-input-row select {
    width: 90px;
    flex-shrink: 0;
    padding: 10px 8px;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    background: var(--white);
    cursor: pointer;
}

.price-input-row input {
    flex: 1;
}

.form-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.form-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--blue-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title i {
    color: var(--orange);
    font-size: 0.95rem;
}

.form-section-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--slate-muted);
    margin-bottom: 12px;
}

.image-upload-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.image-upload-trigger {
    width: 100%;
}

.image-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 20px;
    border: 2px dashed rgba(78, 189, 222, 0.35);
    border-radius: 12px;
    background: var(--mist);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-dark);
}

.image-upload-label:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}

.image-upload-label i {
    font-size: 1.6rem;
    color: var(--orange);
}

.image-upload-trigger input[type="file"] {
    display: none;
}

.image-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: var(--slate-muted);
    margin-top: 8px;
    text-align: center;
}

.feature-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.feature-input-row input {
    flex: 1;
}

.remove-feature-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: none;
    border-radius: 8px;
    background: var(--orange-light);
    color: var(--orange-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background 0.2s;
    box-shadow: none;
}

.remove-feature-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

.add-feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 1.5px dashed var(--blue);
    border-radius: 10px;
    background: transparent;
    color: var(--blue-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
    box-shadow: none;
}

.add-feature-btn:hover {
    background: var(--blue-light);
    transform: none;
    box-shadow: none;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: var(--blue);
    cursor: pointer;
}

.checkbox-custom {
    display: none;
}

.form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(78, 189, 222, 0.12);
}

.form-actions button {
    width: auto;
    min-width: 160px;
}

.form-actions .secondary-btn {
    width: auto;
}

.ai-enrich-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--blue-light) 100%);
    border-radius: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ai-fill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(94, 63, 154, 0.3);
    white-space: nowrap;
}

.ai-fill-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(94, 63, 154, 0.4);
}

.ai-fill-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.ai-fill-btn i {
    font-size: 1rem;
}

.ai-fill-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--slate-muted);
    margin: 0;
}

.image-gallery-admin {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.img-thumb-wrapper {
    position: relative;
    width: 120px;
    border-radius: 10px;
    overflow: visible;
}

.img-thumb-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.img-thumb-wrapper.is-featured img {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-light);
}

.img-thumb-actions {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    justify-content: center;
}

.img-action-form {
    margin: 0;
    padding: 0;
}

.img-action-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: none;
    border-radius: 8px;
    background: var(--blue-light);
    color: var(--blue-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: none;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}

.img-action-btn:hover {
    background: var(--blue);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

.img-action-btn.featured-active {
    background: var(--orange);
    color: var(--white);
}

.img-action-btn.delete-img-btn {
    background: #FEE5E5;
    color: #C53030;
}

.img-action-btn.delete-img-btn:hover {
    background: #C53030;
    color: var(--white);
}

.img-featured-label {
    display: flex !important;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: var(--slate-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    justify-content: center;
    margin-top: 4px;
}

.img-featured-label input[type="radio"] {
    width: 14px;
    height: 14px;
    min-width: 14px;
    accent-color: var(--orange);
}

.img-thumb-number {
    position: absolute;
    top: 4px;
    left: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 6px;
}

.admin-categories-page {
    max-width: 700px;
    margin: 0 auto;
}

.category-add-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.category-add-row input {
    flex: 1;
}

.category-add-row button {
    width: auto;
    min-width: 100px;
    white-space: nowrap;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--mist);
    border-radius: 10px;
    border: 1px solid rgba(78, 189, 222, 0.12);
    transition: border-color 0.2s;
}

.category-row:hover {
    border-color: rgba(78, 189, 222, 0.3);
}

.category-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-icon {
    color: var(--blue);
    font-size: 0.9rem;
}

.category-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate);
}

.category-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: var(--slate-muted);
    background: var(--blue-light);
    padding: 3px 10px;
    border-radius: 50px;
}

.category-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cat-edit-btn, .cat-delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: none;
}

.cat-edit-btn {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.cat-edit-btn:hover {
    background: var(--blue);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

.cat-delete-btn {
    background: var(--orange-light);
    color: var(--orange-dark);
}

.cat-delete-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 77, 90, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(74, 77, 90, 0.25);
    padding: 32px;
    max-width: 420px;
    width: 90%;
    animation: fadeInUp 0.3s ease both;
}

.modal-content h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.feature {
    display: flex;
    gap: 16px;
}

.feature i {
    color: var(--blue);
    font-size: 1.3rem;
    margin-top: 4px;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.feature p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--slate-muted);
    line-height: 1.6;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.testimonial {
    background: var(--mist);
    border-radius: var(--radius);
    padding: 28px;
}

.stars { color: #f5b041; margin-bottom: 14px; font-size: 0.95rem; }

.testimonial p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 18px;
}

.testimonial .name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--slate);
}

.cta-section {
    text-align: center;
    padding: 90px 24px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 14px;
}

.cta-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-light {
    background: var(--white);
    color: var(--purple);
    box-shadow: 0 8px 26px rgba(74, 77, 90, 0.15);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card i {
    color: var(--blue);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--slate-muted);
}

.contact-card a {
    color: var(--slate-muted);
    text-decoration: none;
    font-weight: 700;
}

.contact-card a:hover { color: var(--blue); }

.landing-footer {
    background: var(--slate);
    color: var(--white);
    text-align: center;
    padding: 40px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

.landing-footer a { color: var(--blue-light); text-decoration: none; }

footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-bottom: 16px;
}

footer .footer-links a {
    color: var(--blue-light);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.15s;
}

footer .footer-links a:hover {
    color: var(--white);
}

.landing-footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.landing-footer .footer-links a:hover {
    color: var(--white);
}

footer p {
    margin: 0;
}

.policy-page {
    max-width: 760px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: var(--slate);
}

.policy-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 24px;
    color: var(--slate);
}

.policy-page h2 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--blue-dark);
}

.policy-page p {
    margin-bottom: 16px;
    color: var(--slate-muted);
}

.policy-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.policy-page ul li {
    margin-bottom: 8px;
    color: var(--slate-muted);
}

.policy-page a {
    color: var(--blue-dark);
    text-decoration: underline;
}

.policy-page .cta-btn {
    margin-top: 32px;
    text-decoration: none;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    margin-top: 24px;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid #D0E8F0;
}

.admin-table th {
    background: var(--blue-light);
    color: var(--blue-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.admin-table tr:hover { background: rgba(221, 240, 248, 0.5); }

.admin-table td strong { color: var(--slate); }

.admin-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.admin-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--slate-muted);
    font-family: 'Montserrat', sans-serif;
}

.admin-count {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--slate-muted);
    margin-bottom: 12px;
}

@media (max-width: 760px) {
    .nav-toggle-label { display: block; }
    .nav-whatsapp-mobile { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(240, 247, 250, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(78, 189, 222, 0.15);
        padding: 10px 24px 20px;
        box-shadow: 0 16px 30px rgba(74, 77, 90, 0.08);
        gap: 0;
    }
    .nav-toggle:checked ~ .nav-links { display: flex; }
    .nav-links {
        align-items: flex-start;
    }
    .nav-links a, .nav-links .nav-dropdown-toggle {
        margin: 8px 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(78, 189, 222, 0.12);
        font-size: 0.9rem;
    }
    .nav-links > *:last-child { border-bottom: none; }
    .nav-brand img { max-height: 48px; }
    .nav-dropdown {
        position: static;
        display: flex;
        padding-left: 16px;
        box-shadow: none;
        border: none;
        background: transparent;
        backdrop-filter: none;
    }
    .nav-dropdown-wrapper:hover .nav-dropdown {
        display: flex;
    }
    .nav-dropdown-toggle i { display: none; }
    .nav-whatsapp-btn {
        justify-content: flex-start;
        margin-top: 4px;
    }
    .nav-inner { padding: 10px 18px; }
    .hero { padding: 90px 18px 100px; }
    .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .hero p { font-size: 1rem; }
    .hero-badges { gap: 8px; margin-bottom: 26px; }
    .badge { padding: 6px 12px; font-size: 0.75rem; }
    .section { padding: 60px 18px; }
    .section-title { font-size: 1.7rem; }
    .section-subtitle { margin-bottom: 36px; font-size: 0.95rem; }
    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-card { max-width: 420px; margin: 0 auto; }
    .product-image { height: 220px; }
    .product-detail { grid-template-columns: 1fr; gap: 28px; }
    .product-details h1 { font-size: 1.8rem; }
    .product-details .price { font-size: 1.25rem; }
    .product-meta { gap: 8px; }
    .breadcrumb { font-size: 0.78rem; margin-bottom: 20px; }
    .cta-section { padding: 64px 18px; }
    .cta-btn { padding: 15px 26px; font-size: 0.95rem; }
    .admin-tabs { gap: 8px; margin-bottom: 20px; }
    .admin-tabs a { padding: 8px 14px; font-size: 0.85rem; }
    .admin-actions { justify-content: stretch; }
    .admin-actions .cta-btn { width: 100%; text-align: center; }
    .product-grid-admin { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-admin-card img { height: 110px; }
    .product-admin-info { padding: 12px; }
    .product-admin-info h4 { font-size: 0.9rem; }
    .product-admin-actions { flex-direction: column; gap: 6px; }
    .product-admin-actions a, .product-admin-actions button { font-size: 0.75rem; padding: 7px 8px; }
    .admin-form .row { grid-template-columns: 1fr; gap: 14px; }
    .admin-form .form-group { margin-bottom: 14px; }
    .admin-form input, .admin-form textarea, .admin-form select { padding: 10px 12px; font-size: 0.95rem; }
    .admin-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .admin-table { min-width: 760px; }
    .admin-table th, .admin-table td { padding: 10px 8px; font-size: 0.85rem; }
    .container { padding: 28px 16px; }
    .container-wide { padding: 28px 16px; }
    .card { padding: 22px 16px; }
    .row { grid-template-columns: 1fr; gap: 14px; }
    .form-group { margin-bottom: 14px; }
    .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 1rem; }
    .logo-mark img { max-width: 140px; }
    header h1 { font-size: 1.8rem; }
    .tagline { font-size: 0.9rem; }
    .landing-footer { padding: 32px 18px; font-size: 0.8rem; }
    .features-grid { gap: 18px; }
    .feature { flex-direction: column; gap: 10px; text-align: center; }
    .contact-grid { gap: 18px; }
}

@media (max-width: 520px) {
    .nav-brand img { max-height: 42px; }
    .hero { padding: 70px 16px 80px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; }
    .cta-btn { padding: 14px 22px; font-size: 0.9rem; }
    .product-grid-admin { grid-template-columns: 1fr; }
    .product-admin-card { max-width: 360px; margin: 0 auto; }
    .product-admin-card img { height: 160px; }
    .product-admin-actions { flex-direction: row; }
    .admin-tabs { flex-wrap: wrap; }
    .admin-tabs a { flex: 1; text-align: center; min-width: 100px; }
    .product-image { height: 190px; }
    .product-info { padding: 18px; }
    .product-info h3 { font-size: 1.05rem; }
    .product-price { font-size: 1rem; }
    .product-detail { gap: 22px; }
    .product-details h1 { font-size: 1.5rem; }
    .product-details .price { font-size: 1.15rem; }
    .product-features li { font-size: 0.9rem; }
    .image-upload-preview { max-width: 100%; width: 100%; }
    .form-actions { flex-direction: column; }
    .form-actions button, .form-actions .secondary-btn { width: 100%; text-align: center; }
    .category-add-row { flex-direction: column; }
    .category-add-row button { width: 100%; }
    .category-row { flex-direction: column; gap: 10px; align-items: flex-start; }
    .category-actions { width: 100%; }
    .cat-edit-btn, .cat-delete-btn { flex: 1; justify-content: center; }
    .admin-table th, .admin-table td { font-size: 0.8rem; }
}

@media (max-width: 360px) {
    .nav-brand img { max-height: 38px; }
    .nav-toggle-label { font-size: 1.35rem; }
    .hero h1 { font-size: 1.6rem; }
    .section { padding: 48px 14px; }
    .container { padding: 22px 14px; }
    .card { padding: 18px 14px; }
    .cta-btn { padding: 12px 18px; font-size: 0.85rem; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}