:root { --primary: #0284c7; --primary-light: #38bdf8; --accent: #f59e0b; --bg: #f0f9ff; --card-bg: #ffffff; --text: #0f172a; --text-muted: #64748b; --border: #e0f2fe; --radius: 16px; --shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.08); } * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Plus Jakarta Sans', sans-serif; } body { background-color: #e0f2fe; color: var(--text); display: flex; justify-content: center; align-items: center; min-height: 100vh; }.mobile-frame { width: 100%; max-width: 412px; height: 100vh; max-height: 860px; background-color: var(--bg); display: flex; flex-direction: column; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-radius: 36px; overflow: hidden; border: 8px solid #0f172a; } @media(max-width: 450px) { .mobile-frame { max-height: 100vh; border-radius: 0; border: none; } } .app-header { padding: 20px 20px 10px; display: flex; justify-content: space-between; align-items: center; background: var(--bg); } .logo-area h1 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--primary); font-weight: 700; } .slogan { font-size: 11px; color: var(--text-muted); } .cart-btn { position: relative; width: 42px; height: 42px; background: var(--card-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); text-decoration: none; box-shadow: var(--shadow); } .cart-btn .badge { position: absolute; top: -2px; right: -2px; background: var(--primary-light); color: white; font-size: 10px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; } .app-content { flex: 1; overflow-y: auto; padding: 10px 20px 80px; } .welcome-banner { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.4; } .welcome-banner strong { color: var(--primary); font-size: 18px; font-family: 'Playfair Display', serif; } .search-box { background: var(--card-bg); display: flex; align-items: center; padding: 12px 16px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; } .search-box i { color: var(--text-muted); margin-right: 10px; } .search-box input { border: none; outline: none; width: 100%; font-size: 14px; background: transparent; color: var(--text); } .categories-section h2, .products-section h2 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 14px; color: var(--primary); } .categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; } .cat-item { background: var(--card-bg); padding: 14px 8px; border-radius: var(--radius); text-align: center; text-decoration: none; color: var(--text); box-shadow: var(--shadow); transition: transform 0.2s; } .cat-item:hover { transform: translateY(-3px); } .cat-icon { font-size: 22px; margin-bottom: 6px; } .cat-item span { font-size: 11px; font-weight: 600; } .promo-banner-card { background: linear-gradient(135deg, #0284c7, #38bdf8); color: white; padding: 18px; border-radius: var(--radius); position: relative; overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow); } .promo-banner-card h3 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 4px; } .promo-banner-card p { font-size: 12px; opacity: 0.9; } .promo-badge { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); padding: 6px 12px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 1px; } .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; } .see-all { font-size: 12px; color: var(--primary-light); font-weight: 600; text-decoration: none; } .product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; } .product-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; } .product-img { height: 130px; position: relative; } .product-img img { width: 100%; height: 100%; object-fit: cover; } .fav-btn { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.8); border: none; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); cursor: pointer; } .product-info { padding: 12px; display: flex; flex-direction: column; flex: 1; } .product-info h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; font-family: 'Playfair Display', serif; } .desc { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; } .price { font-size: 13px; font-weight: 700; color: var(--primary); margin-top: auto; } .btn-add-mini { margin-top: 8px; background: var(--primary); color: white; width: 100%; padding: 6px; border-radius: 8px; text-align: center; text-decoration: none; font-size: 12px; } .bottom-nav { position: absolute; bottom: 0; left: 0; width: 100%; height: 70px; background: var(--card-bg); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border); box-shadow: 0 -5px 15px rgba(0,0,0,0.03); z-index: 10; } .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-muted); font-size: 10px; gap: 4px; font-weight: 500; } .nav-item i { font-size: 18px; } .nav-item.active { color: var(--primary); font-weight: 700; } .highlight-nav { position: relative; top: -14px; } .create-btn-circle { width: 48px; height: 48px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(2,132,199,0.3); font-size: 20px; transition: transform 0.2s; } .create-btn-circle:hover { transform: scale(1.05); } .secondary-header { background: var(--card-bg); border-bottom: 1px solid var(--border); padding: 15px 20px; } .secondary-header h1 { font-size: 18px; font-family: 'Playfair Display', serif; color: var(--primary); } .back-btn { width: 36px; height: 36px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); text-decoration: none; } .filter-chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 16px; scrollbar-width: none; } .filter-chips::-webkit-scrollbar { display: none; } .chip { background: var(--card-bg); border: 1px solid var(--border); padding: 8px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text-muted); white-space: nowrap; cursor: pointer; } .chip.active { background: var(--primary); color: white; border-color: var(--primary); } .catalog-grid { margin-bottom: 20px; } .btn-primary-small { display: block; background: var(--bg); color: var(--primary); text-align: center; padding: 6px; border-radius: 8px; font-size: 11px; font-weight: 700; text-decoration: none; margin-top: 8px; border: 1px solid var(--primary); } .absolute-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 5; background: transparent; border: none; display: flex; justify-content: space-between; padding: 16px; } .fav-btn-floating { background: rgba(255,255,255,0.9); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); box-shadow: var(--shadow); cursor: pointer; } .product-hero-img { height: 260px; width: 100%; } .product-hero-img img { width: 100%; height: 100%; object-fit: cover; } .product-detail-body { background: var(--card-bg); border-top-left-radius: 30px; border-top-right-radius: 30px; margin-top: -30px; padding: 24px 20px 100px; position: relative; box-shadow: 0 -10px 30px rgba(0,0,0,0.05); } .rating-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; } .category-tag { font-size: 11px; background: var(--bg); padding: 4px 10px; border-radius: 12px; color: var(--primary-light); font-weight: 700; } .stars { font-size: 12px; color: var(--accent); display: flex; align-items: center; gap: 4px; font-weight: 600; } .product-detail-body h1 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 6px; } .main-price { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 16px; } .product-description { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; } .option-group { margin-bottom: 16px; } .option-group label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 8px; color: var(--text); } .size-options { display: flex; gap: 8px; } .size-btn { flex: 1; padding: 10px 0; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; font-size: 12px; font-weight: 600; cursor: pointer; text-align: center; } .size-btn.active { background: var(--primary); color: white; border-color: var(--primary); } .custom-select, .custom-input { width: 100%; padding: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; font-size: 13px; outline: none; color: var(--text); } .sticky-footer-bar { position: absolute; bottom: 70px; left: 0; width: 100%; background: var(--card-bg); padding: 14px 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; box-shadow: 0 -5px 15px rgba(0,0,0,0.03); } .total-display { display: flex; flex-direction: column; } .total-display span { font-size: 10px; color: var(--text-muted); } .total-display strong { font-size: 16px; color: var(--primary); } .btn-primary { background: var(--primary); color: white; padding: 14px 24px; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 13px; text-align: center; border: none; cursor: pointer; box-shadow: 0 8px 20px rgba(2,132,199,0.25); } .wizard-progress { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding: 0 10px; } .step-indicator { width: 32px; height: 32px; border-radius: 50%; background: var(--card-bg); border: 2px solid var(--border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; } .step-indicator.active { background: var(--primary); border-color: var(--primary); color: white; } .step-line { flex: 1; height: 2px; background: var(--border); } .wizard-step h2 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 16px; color: var(--primary); } .selection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; } .select-card { background: var(--card-bg); border: 2px solid var(--border); padding: 16px; border-radius: var(--radius); text-align: center; cursor: pointer; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; gap: 8px; font-weight: 600; font-size: 13px; } .select-card .emoji { font-size: 28px; } .select-card.active { border-color: var(--primary); background: #f0f9ff; } .selection-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; } .radio-card { background: var(--card-bg); padding: 14px 16px; border-radius: var(--radius); border: 1px solid var(--border); display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 13px; cursor: pointer; box-shadow: var(--shadow); } .radio-card input { accent-color: var(--primary); width: 16px; height: 16px; } .style-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; } .btn-group { display: flex; gap: 10px; } .btn-secondary { background: var(--card-bg); color: var(--text); border: 1px solid var(--border); padding: 14px 20px; border-radius: var(--radius); font-weight: 700; font-size: 13px; cursor: pointer; flex: 1; text-align: center; text-decoration: none; } .summary-card { background: var(--card-bg); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); margin-bottom: 20px; } .summary-card h3 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 12px; } .summary-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; font-size: 12px; } .summary-card li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--border); padding-bottom: 6px; } .estimate-box { background: var(--bg); padding: 10px; border-radius: 8px; text-align: center; } .estimate-box span { font-size: 10px; color: var(--text-muted); display: block; } .estimate-box strong { font-size: 14px; color: var(--primary); } .cart-items-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; } .cart-item { background: var(--card-bg); border-radius: var(--radius); padding: 12px; display: flex; gap: 12px; box-shadow: var(--shadow); } .cart-item-img { width: 70px; height: 70px; border-radius: 10px; overflow: hidden; } .cart-item-img img { width: 100%; height: 100%; object-fit: cover; } .cart-item-details { flex: 1; display: flex; flex-direction: column; justify-content: space-between; } .cart-item-details h3 { font-size: 13px; font-family: 'Playfair Display', serif; } .variant { font-size: 11px; color: var(--text-muted); } .item-price { font-size: 12px; font-weight: 700; color: var(--primary); } .qty-control { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; } .qty-control button { width: 22px; height: 22px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; cursor: pointer; } .cart-summary-box { background: var(--card-bg); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); margin-bottom: 16px; display: flex; flex-direction: column; gap: 10px; font-size: 12px; } .summary-row { display: flex; justify-content: space-between; color: var(--text-muted); } .total-row { font-weight: 700; color: var(--primary); font-size: 15px; border-top: 1px solid var(--border); padding-top: 8px; } .delivery-selection { display: flex; gap: 10px; margin-bottom: 20px; } .delivery-option { flex: 1; background: var(--card-bg); padding: 12px; border-radius: var(--radius); border: 1px solid var(--border); display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; cursor: pointer; box-shadow: var(--shadow); } .delivery-option.active { border-color: var(--primary); background: #f0f9ff; } .checkout-btn { display: block; text-align: center; text-decoration: none; } .confirmation-frame { background: var(--primary); color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px; text-align: center; } .success-icon-wrapper { width: 70px; height: 70px; background: white; color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); } .confirmation-frame h1 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 6px; } .thank-you-msg { font-size: 14px; margin-bottom: 16px; opacity: 0.9; } .order-ref { font-size: 12px; margin-bottom: 24px; opacity: 0.8; } .receipt-card { background: rgba(255,255,255,0.1); width: 100%; border-radius: var(--radius); padding: 16px; margin-bottom: 24px; } .receipt-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 12px; } .receipt-card li { display: flex; justify-content: space-between; } .status-badge { background: var(--accent); color: var(--primary); padding: 2px 8px; border-radius: 10px; font-weight: 700; font-size: 10px; } .action-buttons-stack { display: flex; flex-direction: column; gap: 10px; width: 100%; } .btn-whatsapp { background: #25d366; color: white; padding: 14px; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); } .btn-text { color: white; font-size: 12px; text-decoration: underline; opacity: 0.8; margin-top: 10px; } .tracking-header-card { background: var(--card-bg); padding: 16px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; } .tracking-header-card h3 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 4px; color: var(--primary); } .tracking-header-card p { font-size: 12px; color: var(--text-muted); } .timeline { display: flex; flex-direction: column; gap: 20px; position: relative; padding-left: 20px; } .timeline::before { content: ''; position: absolute; left: 26px; top: 10px; bottom: 10px; width: 2px; background: var(--border); } .timeline-item { display: flex; gap: 16px; position: relative; } .timeline-icon { width: 32px; height: 32px; background: var(--card-bg); border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-muted); z-index: 2; } .timeline-item.completed .timeline-icon { background: var(--primary); border-color: var(--primary); color: white; } .timeline-item.active .timeline-icon { background: var(--accent); border-color: var(--accent); color: var(--primary); box-shadow: 0 0 10px rgba(245, 158, 11, 0.5); } .timeline-text h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; } .timeline-text p { font-size: 11px; color: var(--text-muted); } .user-profile-card { background: var(--card-bg); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px; margin-bottom: 20px; } .avatar { width: 50px; height: 50px; background: var(--primary); color: white; font-family: 'Playfair Display', serif; font-size: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; } .user-info h3 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 2px; } .user-info p { font-size: 12px; color: var(--text-muted); } .menu-list { display: flex; flex-direction: column; gap: 10px; } .menu-item { background: var(--card-bg); padding: 14px 16px; border-radius: var(--radius); display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--text); font-size: 13px; font-weight: 600; box-shadow: var(--shadow); } .menu-item i:first-child { color: var(--primary); font-size: 16px; width: 20px; } .menu-item .arrow { margin-left: auto; color: var(--text-muted); font-size: 11px; } .admin-link { border: 1px dashed var(--primary-light); } .admin-body { background: #0f172a; color: #f0f9ff; } .admin-layout { display: flex; width: 100vw; height: 100vh; } .admin-sidebar { width: 260px; background: #1e293b; border-right: 1px solid #334155; padding: 24px; display: flex; flex-direction: column; gap: 30px; } .admin-sidebar h2 { font-family: 'Playfair Display', serif; color: var(--accent); font-size: 20px; } .admin-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 10px; } .admin-sidebar a { color: #94a3b8; text-decoration: none; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; } .admin-sidebar li.active a, .admin-sidebar a:hover { background: #334155; color: white; } .admin-main { flex: 1; padding: 30px; overflow-y: auto; } .admin-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; } .admin-header-top h1 { font-family: 'Playfair Display', serif; font-size: 22px; } .admin-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; } .stat-card { background: #1e293b; padding: 20px; border-radius: var(--radius); border: 1px solid #334155; } .stat-card h3 { font-size: 12px; color: #94a3b8; margin-bottom: 8px; } .stat-val { font-size: 24px; font-weight: 700; color: var(--accent); margin-bottom: 4px; } .stat-sub { font-size: 11px; color: #94a3b8; } .alert-card { border-color: #38bdf8; } .admin-section { background: #1e293b; padding: 20px; border-radius: var(--radius); border: 1px solid #334155; } .admin-section h2 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 16px; } .table-responsive { width: 100%; overflow-x: auto; } .admin-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 13px; } .admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid #334155; } .admin-table th { color: #94a3b8; font-weight: 600; } .status-pill { padding: 4px 8px; border-radius: 12px; font-size: 11px; font-weight: 700; } .status-pill.confirm { background: rgba(16, 185, 129, 0.2); color: #34d399; } .status-pill.prep { background: rgba(245, 158, 11, 0.2); color: #fbbf24; } .status-pill.delivery { background: rgba(59, 130, 246, 0.2); color: #60a5fa; } .btn-table { background: #334155; color: white; border: none; padding: 6px 12px; border-radius: 6px; font-size: 11px; cursor: pointer; }

/* Karbon Sites Branding */

  #karbon-promo-banner {
      position: fixed;
      bottom: 10px;
      right: 10px;
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 8px 16px;
      border-radius: 8px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      font-size: 14px;
      z-index: 10000;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease-in-out;
  }
  #karbon-promo-banner:hover {
      transform: scale(1.05);
  }
