/**
 * Li-Store - Frontend Styles
 * Modern, Clean Design
 */

/* ===== CSS Variables ===== */
:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fed7aa;
    --secondary: #1e293b;
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
    --info: #3b82f6;
    
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
}

.logo-icon {
    display: flex;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.search-box {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-box .material-icons-outlined {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 20px;
}

.search-box input {
    width: 100%;
    height: 44px;
    padding: 0 16px 0 44px;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    background: var(--gray-50);
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
}

.nav-btn:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.nav-btn .badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn.whatsapp-btn {
    color: #25d366;
}

.nav-btn.whatsapp-btn:hover {
    background: #dcfce7;
    color: #16a34a;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-badge .material-icons-outlined {
    font-size: 14px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.hero-title .text-primary {
    color: var(--primary);
}

.hero-desc {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 28px;
    max-width: 440px;
}

.hero-graphic {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stars svg {
    width: 200px;
    height: 200px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* ===== Section Styles ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}

.title-accent {
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
}

.link-primary {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.link-primary:hover {
    color: var(--primary-dark);
}

.link-primary .material-icons-outlined {
    font-size: 18px;
}

/* ===== Categories ===== */
.categories-section {
    padding: 40px 0 20px;
}

.categories-list, .categories-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.category-btn .material-icons-outlined {
    font-size: 18px;
}

/* ===== Products Grid ===== */
.featured-section {
    padding: 20px 0 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 20px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.product-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    text-align: center;
}

.product-category {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.product-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-price {
    margin-bottom: 16px;
}

.product-price .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.product-price .period {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

/* ===== Steps Section ===== */
.steps-section {
    padding: 60px 0;
    background: white;
}

.steps-section .section-title {
    justify-content: center;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon .material-icons-outlined {
    font-size: 32px;
    color: var(--primary);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--gray-500);
    max-width: 240px;
    margin: 0 auto;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.footer-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-500);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-600);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    height: 44px;
    padding: 0 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    background: white;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 0.5px;
}

/* ===== WhatsApp Float ===== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 99;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* ===== Product Detail Page ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--gray-500);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--gray-300);
}

.breadcrumb .current {
    color: var(--gray-700);
    font-weight: 500;
}

.product-detail {
    padding-bottom: 40px;
}

.product-detail-header {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.product-detail-image {
    width: 280px;
    height: 280px;
    min-width: 280px;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
    padding: 20px;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-info {
    flex: 1;
}

.product-detail-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.product-detail-desc {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 1px solid #bbf7d0;
}

.product-detail-badge .material-icons-outlined {
    font-size: 14px;
}

/* Plan Section */
.plan-section {
    margin-bottom: 32px;
    position: relative;
    padding-left: 48px;
}

.section-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.plan-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    border-color: var(--gray-300);
}

.plan-card.popular, .plan-card.selected {
    border-color: var(--primary);
    background: #fffbeb;
}

.plan-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.plan-label.popular {
    color: var(--primary);
}

.plan-check {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--primary);
}

.plan-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.plan-price .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
}

.plan-price .price.text-primary {
    color: var(--primary);
}

.plan-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 8px;
}

/* Delivery Section */
.delivery-section {
    margin-bottom: 24px;
    position: relative;
    padding-left: 48px;
}

/* Order Summary */
.order-summary {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.order-summary-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    gap: 24px;
}

.order-info {
    display: flex;
    gap: 48px;
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-info-item .label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

.order-info-item .value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.order-info-item .value.price {
    font-size: 24px;
}

.btn-order {
    min-width: 220px;
}

.btn-order .material-icons-outlined {
    font-size: 20px;
}

.order-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    font-size: 13px;
    color: var(--gray-500);
}

.order-note .material-icons-outlined {
    font-size: 18px;
    color: var(--info);
}

/* ===== Page Header ===== */
.page-header {
    text-align: center;
    padding: 40px 0 32px;
}

.page-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.page-desc {
    font-size: 15px;
    color: var(--gray-500);
}

.page-desc .clear-search {
    color: var(--primary);
    text-decoration: none;
    margin-left: 10px;
    font-weight: 500;
}

.page-desc .clear-search:hover {
    text-decoration: underline;
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state .material-icons-outlined {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--gray-500);
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-info {
    font-size: 14px;
    color: var(--gray-500);
}

/* ===== Payment Modal ===== */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.payment-modal.active {
    opacity: 1;
    visibility: visible;
}

.payment-modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.payment-modal.active .payment-modal-content {
    transform: translateY(0);
}

.payment-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
    z-index: 1;
}

.payment-modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.payment-modal-header {
    text-align: center;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.payment-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.payment-modal-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.payment-modal-body {
    padding: 24px;
}

/* Order Summary in Modal */
.payment-order-summary {
    background: var(--gray-50);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.payment-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.payment-product img {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    object-fit: contain;
    background: white;
    padding: 4px;
    border: 1px solid var(--gray-200);
}

.payment-product-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-plan-name {
    font-size: 12px;
    color: var(--gray-500);
}

.payment-total {
    text-align: right;
    flex-shrink: 0;
}

.payment-total .label {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.payment-total .amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

/* QRIS Section */
.payment-qris-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.payment-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.payment-section-title .material-icons-outlined {
    font-size: 20px;
    color: #3b82f6;
}

.payment-qris-image {
    background: white;
    border-radius: var(--border-radius-sm);
    padding: 12px;
    margin-bottom: 12px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-qris-image img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
}

.payment-qris-merchant {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.payment-qris-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-qris-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray-600);
}

.payment-qris-steps .step-num {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

/* WhatsApp Section */
.payment-whatsapp-section {
    text-align: center;
}

.payment-whatsapp-section .payment-section-title {
    margin-bottom: 8px;
}

.payment-whatsapp-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

/* ===== Text Utilities ===== */
.text-primary { color: var(--primary); }
.text-center { text-align: center; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-graphic {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .product-detail-image {
        width: 200px;
        height: 200px;
        min-width: 200px;
        margin: 0 auto;
    }
    
    .order-summary-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .order-info {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-order {
        min-width: 100%;
        width: 100%;
    }
    
    .payment-qris-steps {
        gap: 12px;
    }
    
    .payment-qris-image img {
        width: 150px;
        height: 150px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .search-box {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-list {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
    
    .category-btn {
        flex-shrink: 0;
    }
}
