/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d62828;
    --primary-dark: #b01e1e;
    --primary-light: #ff6b6b;
    --dark: #1a1a2e;
    --text: #2d3436;
    --text-light: #636e72;
    --bg: #fefaf5;
    --white: #ffffff;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

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

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

/* ============================================
   COMPACT HEADER
   ============================================ */
.compact-header {
    padding: 60px 130px 24px 24px !important;
    background: linear-gradient(145deg, #0f0f1a, #1a1a2e);
    border-bottom: 3px solid #d62828;
}

.compact-header h1 {
    font-size: 34px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

.compact-header .subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 4px 0 14px;
    color: #fff;
}

.compact-header .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.compact-header .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   PRICE DISCLAIMER
   ============================================ */
.price-disclaimer {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 12px 20px;
    background: #fef0ef;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    text-align: center;
}

.price-disclaimer p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}

.price-disclaimer i {
    color: var(--primary);
    margin-right: 8px;
}

.price-disclaimer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.price-disclaimer a:hover {
    text-decoration: underline;
}

/* ============================================
   CART ICON – Compact & Clean
   ============================================ */
.cart-icon {
    position: fixed;
    top: 16px;
    right: 16px;
    background: var(--white);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
    z-index: 1001;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.cart-icon:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.18);
}

.cart-icon i {
    font-size: 18px;
}

.cart-text {
    font-size: 14px;
}

.cart-count {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    min-width: 24px;
    padding: 1px 8px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 92vw;
    height: 100%;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    transition: right 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.cart-header h2 {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h2 i {
    color: var(--primary);
}

.close-cart {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
    padding: 0 8px;
}

.close-cart:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: var(--text-light);
}

.empty-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    color: #ccc;
}

.empty-cart p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.empty-cart span {
    font-size: 14px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    font-size: 15px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

.cart-item-request {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
    font-style: italic;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-controls button {
    background: #f5f5f5;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    color: var(--text);
}

.cart-item-controls button:hover {
    background: var(--primary);
    color: var(--white);
}

.cart-item-controls span {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.remove-item {
    background: none !important;
    color: #ccc !important;
    font-size: 18px !important;
}

.remove-item:hover {
    color: var(--primary) !important;
    background: none !important;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.cart-total {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: right;
    color: var(--dark);
}

.checkout-btn {
    background: #25D366;
    color: var(--white);
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: #1da15a;
    transform: scale(1.02);
}

.checkout-btn i {
    font-size: 22px;
}

/* ============================================
   MENU
   ============================================ */
.menu-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.category-wrapper {
    margin: 32px 0 16px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    font-size: 28px;
}

.category-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.category-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 20px;
    margin-top: 8px;
}

/* ============================================
   PRODUCT GRID & CARDS
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.product {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.product-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.product-image-wrapper img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #f8f0ea;
    transition: var(--transition);
}

.product:hover .product-image-wrapper img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    transition: var(--transition);
}

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

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
    line-height: 1.4;
    flex: 1;
}

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

.product-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.product-add {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.product-add:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 12px 0 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.reviews-section.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

.reviews-header {
    text-align: center;
    margin-bottom: 14px;
}

.section-tag {
    display: inline-block;
    background: #fef0ef;
    color: var(--primary);
    padding: 3px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    border: 1px solid rgba(214, 40, 40, 0.15);
}

.reviews-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.reviews-header p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.reviews-grid-wrapper {
    position: relative;
    margin: 0 -16px;
    padding: 0 16px;
}

.reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 4px 14px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

.reviews-grid::-webkit-scrollbar {
    height: 4px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.reviews-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.review-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    position: relative;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.review-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 32px rgba(214, 40, 40, 0.10);
    border-color: var(--primary-light);
    background: #ffffff;
}

.review-card::before {
    content: "\201C";
    position: absolute;
    top: -6px;
    right: 14px;
    font-size: 50px;
    color: var(--primary);
    opacity: 0.05;
    font-family: Georgia, serif;
    pointer-events: none;
    line-height: 1;
}

.review-avatar {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 3px 8px rgba(214, 40, 40, 0.20);
    user-select: none;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 2px;
    letter-spacing: -0.2px;
}

.review-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    font-style: italic;
}

.reviews-cta {
    text-align: center;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(214, 40, 40, 0.2);
    transition: var(--transition);
    text-decoration: none;
}

.btn-review:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.btn-review i {
    font-size: 16px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #d0d7de;
    transition: var(--transition);
    text-decoration: none;
}

.btn-explore:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(214, 40, 40, 0.05);
    transform: translateY(-2px);
}

.btn-explore i {
    font-size: 13px;
    transition: 0.2s;
}

.btn-explore:hover i {
    transform: translateX(4px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 60px 20px 70px;
    background: #fafafa;
}

.about-container {
    max-width: 900px;
    margin: auto;
    background: var(--white);
    padding: 48px 56px;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f8ed;
    color: #0d7b37;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-tag i {
    font-size: 14px;
}

.about-container h2 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #222;
}

.about-container h2 span {
    color: #d32027;
}

.about-container p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.about-container p:last-child {
    margin-bottom: 0;
}

.about-container strong {
    color: #222;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certifications-section {
    padding: 40px 20px 60px;
    background: #fafafa;
}

.certifications-container {
    max-width: 1200px;
    margin: 0 auto;
}

.certifications-header {
    text-align: center;
    margin-bottom: 40px;
}

.cert-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f8ed;
    color: #0d7b37;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.certifications-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.certifications-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cert-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.cert-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 12px;
    background: #fafaf5;
}

.cert-card:hover .cert-image-wrapper img {
    transform: scale(1.02);
}

.cert-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(13, 123, 55, 0.92);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.cert-overlay i {
    font-size: 14px;
}

.cert-info {
    padding: 20px 24px 24px;
}

.cert-info h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.cert-info h3 i {
    color: var(--primary);
    margin-right: 6px;
}

.cert-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.trust-badges span i {
    color: var(--primary);
    font-size: 18px;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 20px;
    background: #25D366;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.floating-wa i {
    font-size: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #17172b, #242446);
    color: #fff;
    padding: 60px 20px;
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1100px;
    margin: auto;
    width: 100%;
}

.footer-brand h3 {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-brand p {
    color: #d0d0d0;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-brand p i {
    margin-right: 6px;
}

.footer-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.footer-contact a {
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-contact a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.footer-contact a:hover {
    background: #d32027;
    transform: translateY(-3px);
}

.footer-contact .review-card {
    background: rgba(255, 183, 3, 0.15);
    border: 1px solid rgba(255, 183, 3, 0.2);
}

.footer-contact .review-card i {
    color: #ffb703;
}

.footer-contact .review-card:hover {
    background: #ffb703;
    color: #1a1a2e;
}

.footer-contact .review-card:hover i {
    color: #1a1a2e;
}

.footer-hours {
    margin-top: 35px;
    color: #ddd;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.footer-hours p {
    font-size: 15px;
}

.footer-hours p i {
    margin-right: 8px;
    width: 20px;
    color: #ffb703;
}

.footer-address {
    color: #bbb !important;
}

.footer-disclaimer {
    margin-top: 30px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-disclaimer i {
    color: #ffb703;
    margin-right: 8px;
}

.footer-disclaimer strong {
    color: #fff;
}

.price-note {
    margin-top: 20px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.price-note p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.price-note i {
    color: #ffb703;
    margin-right: 6px;
}

.price-note strong {
    color: rgba(255, 255, 255, 0.85);
}

.footer-copy {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    background: #f8f0ea;
}

.modal-info {
    padding: 24px 28px 28px;
}

.modal-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
}

.modal-desc {
    font-size: 15px;
    color: var(--text-light);
    margin: 8px 0 12px;
    line-height: 1.5;
}

.modal-price {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.modal-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.qty-btn {
    background: #f5f5f5;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.qty-btn i {
    pointer-events: none;
}

.qty-input {
    width: 70px;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: inherit;
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary);
}

.modal-request {
    margin: 16px 0;
}

.modal-request label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.modal-request label i {
    margin-right: 6px;
}

.modal-request textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    transition: var(--transition);
}

.modal-request textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.add-to-cart-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin: 8px 0;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.add-to-cart-btn i {
    font-size: 18px;
}

.modal-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    padding: 14px 24px;
    border-radius: 40px;
    width: 100%;
    transition: var(--transition);
}

.modal-wa-btn:hover {
    background: #1da15a;
    transform: scale(1.02);
}

.modal-wa-btn i {
    font-size: 20px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    border: none;
}

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

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .compact-header {
        padding: 50px 70px 20px 16px !important;
    }
    .compact-header h1 {
        font-size: 26px !important;
    }
    .compact-header .subtitle {
        font-size: 14px;
    }
    .compact-header .badges span {
        font-size: 11px !important;
        padding: 3px 12px !important;
    }
    .compact-header .nav-links a {
        font-size: 12px !important;
        padding: 4px 12px !important;
    }

    .cart-icon {
        top: 12px;
        right: 12px;
        padding: 8px 14px;
        border-radius: 30px;
    }
    .cart-icon i {
        font-size: 16px;
    }
    .cart-text {
        display: none;
    }
    .cart-count {
        font-size: 11px;
        min-width: 20px;
        padding: 1px 6px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
    .product {
        padding: 14px;
    }
    .product-image-wrapper img {
        width: 100px;
        height: 100px;
    }

    .cart-drawer {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }

    .floating-wa {
        padding: 12px 18px;
        font-size: 14px;
    }
    .floating-wa span {
        display: none;
    }

    .modal-content {
        margin: 10px;
        border-radius: 20px;
    }
    .modal-info {
        padding: 20px;
    }
    .modal-name {
        font-size: 22px;
    }

    .category-title {
        font-size: 20px;
    }

    .about-container {
        padding: 28px;
    }
    .about-container h2 {
        font-size: 30px;
    }
    .about-container p {
        font-size: 17px;
    }

    .certifications-header h2 {
        font-size: 26px;
    }
    .certifications-header p {
        font-size: 16px;
    }
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .trust-badges {
        gap: 12px 24px;
    }
    .trust-badges span {
        font-size: 13px;
    }

    .price-disclaimer p {
        font-size: 13px;
    }
    .price-note p {
        font-size: 12px;
    }

    .review-card {
        flex: 0 0 260px;
        padding: 14px 16px;
        gap: 10px;
    }
    .review-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
        flex: 0 0 32px;
    }
    .reviewer-name {
        font-size: 13px;
    }
    .review-text {
        font-size: 13px;
    }
    .reviews-header h2 {
        font-size: 20px;
    }

    .footer-contact {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand h3 {
        font-size: 26px;
    }
    .footer-hours {
        justify-content: center;
        text-align: center;
    }
    .footer-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .compact-header {
        padding: 40px 60px 16px 12px !important;
    }
    .compact-header h1 {
        font-size: 20px !important;
    }
    .compact-header .subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .cart-icon {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        border-radius: 26px;
    }
    .cart-icon i {
        font-size: 14px;
    }
    .cart-count {
        font-size: 10px;
        min-width: 18px;
        padding: 0 5px;
    }

    .product-image-wrapper img {
        width: 80px;
        height: 80px;
    }
    .product-name {
        font-size: 15px;
    }
    .product-price {
        font-size: 18px;
    }

    .about-container {
        padding: 20px 18px;
    }
    .about-container h2 {
        font-size: 24px;
    }
    .about-container p {
        font-size: 16px;
    }

    .cert-info {
        padding: 16px 18px 20px;
    }
    .cert-info h3 {
        font-size: 17px;
    }
    .cert-info p {
        font-size: 14px;
    }

    .price-disclaimer {
        padding: 10px 14px;
    }
    .price-disclaimer p {
        font-size: 12px;
    }
    .price-note p {
        font-size: 11px;
    }

    .review-card {
        flex: 0 0 240px;
        padding: 12px 14px;
        gap: 8px;
        border-radius: 10px;
    }
    .review-avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
        flex: 0 0 28px;
    }
    .reviewer-name {
        font-size: 12px;
    }
    .review-text {
        font-size: 12px;
        line-height: 1.4;
    }
    .btn-review,
    .btn-explore {
        font-size: 13px;
        padding: 8px 18px;
        width: 100%;
        justify-content: center;
    }
    .reviews-cta {
        flex-direction: column;
        gap: 8px;
    }
    .reviews-header h2 {
        font-size: 18px;
    }
    .reviews-header p {
        font-size: 13px;
    }
    .section-tag {
        font-size: 10px;
        padding: 2px 12px;
    }

    .footer-contact {
        grid-template-columns: 1fr;
    }
    .footer-brand h3 {
        font-size: 22px;
    }
}
