:root { --green-50: #f0fdf4; --green-100: #dcfce7; --green-200: #bbf7d0; --green-500: #22c55e; --green-600: #16a34a; --green-700: #15803d; --green-800: #166534; --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb; --gray-300: #d1d5db; --gray-400: #9ca3af; --gray-500: #6b7280; --gray-700: #374151; --gray-900: #111827; --color-bg: #ffffff; --color-surface: var(--gray-50); --color-text: var(--gray-900); --color-muted: var(--gray-500); --color-border: var(--gray-200); --color-primary: var(--green-600); --color-primary-hover: var(--green-700); --color-primary-light: var(--green-50); --color-success: var(--green-600); --color-error: #dc2626; --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; --radius-sm: 6px; --radius: 10px; --radius-lg: 16px; --radius-xl: 24px; --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05); --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04); --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04); --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04); --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03); --space: 1rem; --container: min(100% - 2rem, 1200px); --transition: 0.18s ease; } *, *::before, *::after { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; font-family: var(--font-sans); font-size: 1rem; line-height: 1.6; color: var(--color-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; } img { display: block; max-width: 100%; } a { color: var(--color-primary); } .container { width: 100%; max-width: var(--container); margin-inline: auto; } .site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border); padding: 0.3rem 0; } .site-header .container { display: flex; align-items: center; justify-content: space-between; } .site-header--logo .container { justify-content: center; } .site-brand { display: inline-flex; align-items: center; text-decoration: none; } .site-logo { display: block; max-height: 50px; width: auto; object-fit: contain; } .site-name { font-size: 1.2rem; font-weight: 800; color: var(--color-text); text-decoration: none; letter-spacing: -0.02em; display: flex; align-items: center; gap: 0.4rem; } .site-name::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); } .site-brand:hover .site-name { color: var(--color-primary); } .hero { position: relative; overflow: hidden; background: linear-gradient(140deg, #052e16 0%, #14532d 45%, #166534 100%); color: #fff; padding: 5rem 0 4rem; text-align: center; background-size: cover; background-position: center; } .hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient( circle at 20% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 60% ), radial-gradient( circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50% ); pointer-events: none; } .hero::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient( to bottom, transparent, rgba(255, 255, 255, 0.06) ); pointer-events: none; } .hero-inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; } .hero-eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-200); margin-bottom: 1rem; background: rgba(255, 255, 255, 0.08); padding: 0.3rem 0.8rem; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.12); } .hero-title { margin: 0 0 0.75rem; font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; } .hero-subtitle { margin: 0 0 2rem; font-size: 1.05rem; opacity: 0.85; line-height: 1.6; } .hero-cta { display: inline-flex; align-items: center; gap: 0.4rem; background: #fff; color: var(--green-700); font-weight: 700; font-size: 0.95rem; padding: 0.75rem 1.75rem; border-radius: 999px; text-decoration: none; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2); transition: transform var(--transition), box-shadow var(--transition); } .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); color: var(--green-800); } .section-title { margin: 2.5rem 0 1.25rem; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; color: var(--color-text); } .products-slider-wrap { position: relative; margin-bottom: 3.5rem; min-width: 0; } .products-slider-nav { display: flex; position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--color-border); background: var(--color-bg); color: var(--color-text); box-shadow: var(--shadow-sm); cursor: pointer; align-items: center; justify-content: center; transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); } .products-slider-nav svg { width: 18px; height: 18px; } .products-slider-nav:hover { background: var(--gray-100); border-color: var(--gray-300); box-shadow: var(--shadow); } .products-slider-prev { left: 4px; } .products-slider-next { right: 4px; } @media (min-width: 560px) { .products-slider-nav { width: 44px; height: 44px; } .products-slider-nav svg { width: 20px; height: 20px; } .products-slider-prev { left: -12px; } .products-slider-next { right: -12px; } } .products-slider-wrap.products-slider-nav-hidden .products-slider-nav { display: none !important; } .products-slider-nav:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; } .products-slider-nav:disabled:hover { background: var(--color-bg); border-color: var(--color-border); box-shadow: var(--shadow-sm); } .product-grid { display: flex; align-items: stretch; gap: 1rem; overflow-x: scroll; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; touch-action: pan-x pan-y; overscroll-behavior-x: contain; margin: 0 -0.5rem 1rem; padding: 0.25rem 0.5rem; scrollbar-width: none; -ms-overflow-style: none; min-width: 0; } .product-grid::-webkit-scrollbar { display: none; } .product-grid .product-card { flex: 0 0 calc(100% - 1rem); min-width: calc(100% - 1rem); scroll-snap-align: start; display: flex; flex-direction: column; touch-action: pan-x pan-y; } @media (min-width: 560px) { .product-grid { margin: 0 -0.5rem 1rem; padding: 0.25rem 0.5rem; } .product-grid .product-card { flex: 0 0 calc(50% - 0.5rem); min-width: calc(50% - 0.5rem); } } @media (min-width: 900px) { .product-grid .product-card { flex: 0 0 calc(33.333% - 0.67rem); min-width: calc(33.333% - 0.67rem); } } @media (min-width: 1100px) { .product-grid .product-card { flex: 0 0 calc(25% - 0.75rem); min-width: calc(25% - 0.75rem); } } .product-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-xs); display: flex; flex-direction: column; transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition); } .product-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); transform: translateY(-2px); } .product-card-image { aspect-ratio: 1; background: var(--gray-100); overflow: hidden; position: relative; cursor: pointer; } .product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; } .product-card:hover .product-card-image img { transform: scale(1.03); } .product-card-badge { position: absolute; top: 0.6rem; left: 0.6rem; background: var(--color-primary); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 999px; letter-spacing: 0.04em; } .product-card-body { padding: 1rem 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; min-height: 0; } .product-card-size-slot { min-height: 2.75rem; } .product-card-size-slot--empty { min-height: 2.75rem; margin: 0; padding: 0; } @media (max-width: 559px) { .product-card-body { padding: 0.65rem 0.65rem 0.75rem; gap: 0.35rem; } .product-card-title { font-size: 0.8125rem; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; } .product-card-desc { display: none; } .product-card-footer { margin-top: auto; padding-top: 0.5rem; gap: 0.5rem; } .product-card-price { font-size: 1rem; } .product-card-size-label { margin-bottom: 0.25rem; } .product-card-size-chip { min-width: 2rem; padding: 0.3rem 0.5rem; font-size: 0.75rem; } .product-card-footer .btn-order { padding: 0.4rem 0.6rem; font-size: 0.75rem; } .product-card-footer .btn-order svg { width: 14px; height: 14px; } .product-card-image { aspect-ratio: 1; } } .product-card-title { margin: 0; font-size: 0.9375rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; color: var(--color-text); cursor: pointer; transition: color var(--transition); min-height: 2.7em; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; } .product-card-title:hover { color: var(--color-primary); } .product-card-desc { margin: 0; font-size: 0.8125rem; color: var(--color-muted); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--gray-100); } .product-card-price { font-size: 1.125rem; font-weight: 700; color: var(--color-text); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; } .product-card-size-wrap { margin: 0; } .product-card-size-label { display: block; font-size: 0.6875rem; font-weight: 600; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; } .product-card-size-select-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } .product-card-size-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; } .product-card-size-chip { display: inline-flex; align-items: center; justify-content: center; min-width: 2.25rem; padding: 0.4rem 0.65rem; font-size: 0.8125rem; font-weight: 500; color: var(--color-text); background: var(--gray-100); border: 1px solid var(--color-border); border-radius: 999px; cursor: pointer; transition: background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition); } .product-card-size-chip:hover { background: var(--gray-200); border-color: var(--gray-300); } .product-card-size-chip.is-selected { background: var(--color-primary); border-color: var(--color-primary); color: #fff; } .product-card-size-chip.is-selected:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); color: #fff; } .product-card-size-chip:focus { outline: none; box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.35); } .product-card-size-chip.is-selected:focus { box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.5); } .product-card-size-row { display: flex; align-items: center; gap: 0.5rem; } .product-card-size-row .product-card-size-chips { flex: 1; } .product-card-size-info { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 1.75rem; height: 1.75rem; padding: 0; color: var(--color-muted); background: var(--gray-100); border: 1px solid var(--color-border); border-radius: 50%; cursor: pointer; transition: color var(--transition), background-color var(--transition), border-color var(--transition); } .product-card-size-info:hover { color: var(--color-primary); background: var(--green-50); border-color: var(--green-200); } .product-card-size-info:focus { outline: none; box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.3); } .size-info-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem; } .size-info-popup[hidden] { display: none !important; } .size-info-popup-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(4px); } .size-info-popup-content { position: relative; background: var(--color-bg); border-radius: 12px; max-width: 360px; width: 100%; max-height: 80vh; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); } .size-info-popup-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--color-border); } .size-info-popup-title { margin: 0; font-size: 1rem; font-weight: 700; color: var(--color-text); } .size-info-popup-close { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; padding: 0; font-size: 1.5rem; line-height: 1; color: var(--color-muted); background: none; border: none; border-radius: 6px; cursor: pointer; transition: color var(--transition), background-color var(--transition); } .size-info-popup-close:hover { color: var(--color-text); background: var(--gray-100); } .size-info-popup-body { padding: 1rem 1.25rem 1.25rem; overflow-y: auto; max-height: 50vh; } .size-info-popup-list { list-style: none; margin: 0; padding: 0; } .size-info-popup-item { padding: 0.5rem 0; border-bottom: 1px solid var(--gray-100); } .size-info-popup-item:last-child { border-bottom: none; } .size-info-popup-item-name { font-size: 0.8125rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.2rem; } .size-info-popup-item-desc { font-size: 0.8125rem; color: var(--color-muted); line-height: 1.45; margin: 0; } .product-card-footer .btn-order { width: auto; flex-shrink: 0; padding: 0.5rem 0.875rem; font-size: 0.8125rem; border-radius: 8px; } .modal-size-wrap { margin: 1rem 0; } .modal-size-label { display: block; font-size: 0.8rem; font-weight: 600; color: #6b7280; margin-bottom: 0.35rem; } .modal-size-select { width: 100%; max-width: 200px; padding: 0.6rem 1rem; font-size: 0.95rem; border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; } .cart-item-size { font-size: 0.85em; color: #6b7280; font-weight: 500; } .product-detail { padding: 2.5rem 0; } .product-detail-grid { display: grid; gap: 2.5rem; align-items: start; } @media (min-width: 768px) { .product-detail-grid { grid-template-columns: 1fr 1fr; } } .product-detail-image { background: var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); } .product-detail-image img { width: 100%; height: 100%; object-fit: cover; } .product-detail-title { margin: 0 0 0.4rem; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; } .product-detail-price { margin: 0 0 1rem; font-size: 1.6rem; font-weight: 800; color: var(--color-primary); letter-spacing: -0.02em; } .product-detail-short { margin: 0 0 1rem; color: var(--color-muted); font-size: 1.05rem; line-height: 1.6; } .product-detail-description { margin: 0 0 1.5rem; line-height: 1.7; color: var(--gray-700); } .product-gallery-thumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; } .product-thumb { padding: 0; border: 2px solid transparent; border-radius: var(--radius); cursor: pointer; background: none; transition: border-color var(--transition); } .product-thumb:hover { border-color: var(--color-border); } .product-thumb.active { border-color: var(--color-primary); } .product-thumb img { display: block; border-radius: var(--radius-sm); } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; padding: 0.6rem 1.25rem; font-size: 0.9rem; font-weight: 700; font-family: inherit; text-align: center; text-decoration: none; border: none; border-radius: var(--radius); cursor: pointer; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); white-space: nowrap; } .btn:active { transform: scale(0.98); } .btn-order { background: var(--color-primary); color: #fff; width: 100%; border-radius: var(--radius); font-size: 0.875rem; padding: 0.55rem 1rem; } .btn-order:hover { background: var(--color-primary-hover); color: #fff; } .btn-submit { background: var(--color-primary); color: #fff; padding: 0.85rem 2rem; font-size: 1rem; border-radius: var(--radius); width: 100%; box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3); } .btn-submit:hover { background: var(--color-primary-hover); box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4); transform: translateY(-1px); } .sticky-order-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100; display: none; align-items: center; gap: 0.4rem; padding: 0.75rem 1.35rem; background: var(--color-primary); color: #fff; font-weight: 700; font-size: 0.9rem; text-decoration: none; border-radius: 999px; box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45); transition: transform var(--transition), box-shadow var(--transition); } @media (max-width: 899px) { .sticky-order-btn { display: inline-flex; } } .sticky-order-btn:hover { color: #fff; background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22, 163, 74, 0.5); } .order-section { margin-bottom: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--color-border); } .order-section h2 { margin: 0 0 0.5rem; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; } .cod-notice { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; font-weight: 600; color: var(--color-success); background: var(--green-50); border: 1px solid var(--green-200); padding: 0.45rem 1rem; border-radius: 999px; margin-bottom: 1.5rem; } .order-form { max-width: 44rem; margin-inline: auto; background: var(--gray-50); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); } .form-group { margin-bottom: 1.25rem; } .form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--gray-700); } .required { color: var(--color-error); margin-left: 1px; } .optional { color: var(--color-muted); font-weight: 400; font-size: 0.85em; } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.65rem 0.9rem; font-size: 1rem; font-family: inherit; color: var(--color-text); background: var(--color-bg); border: 1.5px solid var(--gray-300); border-radius: var(--radius); transition: border-color var(--transition), box-shadow var(--transition); appearance: none; -webkit-appearance: none; } .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12); } .form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); } .form-group textarea { resize: vertical; min-height: 90px; } .form-group input.input-error, .form-group select.input-error, .form-group textarea.input-error { border-color: var(--color-error); background: #fff5f5; } .form-group input.input-error:focus, .form-group select.input-error:focus, .form-group textarea.input-error:focus { box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1); } .field-error { display: block; font-size: 0.8rem; color: var(--color-error); margin-top: 0.3rem; font-weight: 500; } .form-errors { list-style: none; padding: 0.85rem 1rem; margin: 0 0 1.25rem; background: #fef2f2; border: 1px solid #fecaca; color: var(--color-error); border-radius: var(--radius); font-size: 0.9rem; } .form-errors li + li { margin-top: 0.3rem; } .error-banner { background: #fef2f2; border: 1px solid #fecaca; color: var(--color-error); padding: 0.85rem 1rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.9rem; font-weight: 500; } .success-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--color-primary); color: #fff; padding: 1rem var(--space); text-align: center; font-weight: 600; font-size: 0.95rem; box-shadow: var(--shadow-md); animation: slideDown 0.3s ease; } @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .no-products { color: var(--color-muted); margin: 3rem 0; text-align: center; font-size: 1.05rem; } .site-footer { position: relative; margin-top: auto; padding: 0; background: #0f172a; color: #e2e8f0; font-size: 0.9375rem; } .footer-accent { height: 4px; background: linear-gradient( 90deg, var(--color-primary, #059669) 0%, #34d399 100% ); width: 100%; } .footer-inner { max-width: var(--container-max, 1200px); margin: 0 auto; padding: 3rem var(--space, 1rem) 0; } .footer-hero { text-align: center; padding-bottom: 2.5rem; } .footer-logo { display: inline-block; font-size: 1.5rem; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: -0.03em; margin-bottom: 0.5rem; transition: color 0.2s ease; } .footer-logo:hover { color: #34d399; } .footer-logo-img { display: block; max-height: 50px; width: auto; object-fit: contain; transition: opacity 0.2s ease; } .footer-logo:hover .footer-logo-img { opacity: 0.9; } .footer-tagline { margin: 0 0 1.75rem; font-size: 0.9375rem; color: #94a3b8; line-height: 1.5; max-width: 28rem; margin-left: auto; margin-right: auto; } .footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem 1.5rem; } .footer-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.875rem; color: #cbd5e1; text-decoration: none; font-size: 0.875rem; font-weight: 500; border-radius: 9999px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08); transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; } .footer-link:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.12); } .footer-link svg { width: 1rem; height: 1rem; flex-shrink: 0; opacity: 0.9; } .footer-link--text { cursor: default; max-width: 16rem; text-align: left; } .footer-link--text:hover { background: rgba(255, 255, 255, 0.06); color: #cbd5e1; border-color: rgba(255, 255, 255, 0.08); } .footer-address { white-space: pre-line; line-height: 1.45; } .footer-link--wa:hover { background: rgba(37, 211, 102, 0.15); border-color: rgba(37, 211, 102, 0.35); color: #4ade80; } .footer-link--wa svg { color: #25d366; } .footer-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem 1rem; padding: 1.25rem 0; border-top: 1px solid rgba(255, 255, 255, 0.06); font-size: 0.8125rem; color: #64748b; } .footer-copy, .footer-credit { margin: 0; } .footer-divider { width: 4px; height: 4px; border-radius: 50%; background: #475569; } .footer-credit a { color: #94a3b8; text-decoration: none; transition: color 0.2s ease; } .footer-credit a:hover { color: #34d399; } @media (max-width: 640px) { .footer-inner { padding: 2.25rem var(--space, 1rem) 0; } .footer-hero { padding-bottom: 2rem; } .footer-logo { font-size: 1.25rem; } .footer-tagline { margin-bottom: 1.5rem; font-size: 0.875rem; } .footer-links { flex-direction: column; align-items: stretch; gap: 0.5rem; } .footer-link { justify-content: center; } .footer-link--text { max-width: none; justify-content: center; text-align: center; } .footer-link--text .footer-address { text-align: center; } .footer-legal { flex-direction: column; padding: 1rem 0; gap: 0.5rem; } .footer-divider { display: none; } } .whatsapp-float { position: fixed; bottom: 5.5rem; right: 1.5rem; width: 56px; height: 56px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); z-index: 9999; transition: transform 0.2s, box-shadow 0.2s; } .whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5); color: #fff; } .main { flex: 1; min-height: 0; overflow: hidden; } .btn-order { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; cursor: pointer; transition: all 0.2s ease; } .btn-order.added { background: var(--color-primary, #198754) !important; color: #fff !important; pointer-events: none; } .btn-order svg { flex-shrink: 0; }