/* =============================================
   IKAN GABUS INHIL - Main Stylesheet
   Palet: Deep Teal + Amber + Cream
   Font: Playfair Display + Plus Jakarta Sans
============================================= */

:root {
  --teal-900: #0d3b3e;
  --teal-800: #134b50;
  --teal-700: #1a6168;
  --teal-600: #217a82;
  --teal-500: #2a9d8f;
  --teal-400: #48b4a7;
  --teal-100: #e0f4f2;
  --teal-50:  #f0faf9;
  --amber-500: #e9a31c;
  --amber-400: #f4b942;
  --amber-100: #fef8e7;
  --cream:    #faf8f3;
  --dark:     #1a1a2e;
  --gray-800: #2d3748;
  --gray-600: #4a5568;
  --gray-400: #a0aec0;
  --gray-100: #f7fafc;
  --white:    #ffffff;
  --red-500:  #e53e3e;
  --green-500:#38a169;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: .25s ease;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Plus Jakarta Sans',sans-serif;color:var(--gray-800);background:var(--cream);line-height:1.65}
img{max-width:100%;height:auto}
a{color:inherit;text-decoration:none;transition:color var(--transition)}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,select,textarea{font-family:inherit}

/* ── UTILITY ── */
.container{max-width:1280px;margin:0 auto;padding:0 1.5rem}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(1.75rem,3vw,2.5rem);color:var(--teal-900);font-weight:800}
.section-sub{color:var(--gray-600);margin-top:.5rem;font-size:1rem}
.section-header{text-align:center;margin-bottom:3rem}
.badge{display:inline-block;padding:.2rem .7rem;border-radius:30px;font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em}
.badge-teal{background:var(--teal-100);color:var(--teal-700)}
.badge-amber{background:var(--amber-100);color:#b07d0a}
.badge-red{background:#fff0f0;color:var(--red-500)}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1.6rem;border-radius:var(--radius-sm);font-weight:600;font-size:.92rem;transition:all var(--transition);cursor:pointer}
.btn-primary{background:var(--teal-500);color:#fff}
.btn-primary:hover{background:var(--teal-700);transform:translateY(-1px);box-shadow:0 4px 14px rgba(42,157,143,.35)}
.btn-outline{border:2px solid var(--teal-500);color:var(--teal-600)}
.btn-outline:hover{background:var(--teal-500);color:#fff}
.btn-amber{background:var(--amber-500);color:#fff}
.btn-amber:hover{background:#c8881a;transform:translateY(-1px)}
.btn-danger{background:var(--red-500);color:#fff}
.btn-sm{padding:.45rem 1rem;font-size:.82rem}
.btn-lg{padding:.9rem 2rem;font-size:1rem}
.text-center{text-align:center}
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.flex{display:flex}.flex-center{align-items:center;justify-content:center}
.gap-1{gap:.5rem}.gap-2{gap:1rem}.gap-3{gap:1.5rem}

/* ── ALERTS ── */
.alert{position:fixed;top:80px;left:50%;transform:translateX(-50%);z-index:9999;padding:.9rem 1.8rem;border-radius:var(--radius-sm);font-weight:600;display:flex;align-items:center;gap:.6rem;box-shadow:var(--shadow-md);animation:slideDown .35s ease;min-width:300px;text-align:center;justify-content:center}
.alert-success{background:var(--green-500);color:#fff}
.alert-error{background:var(--red-500);color:#fff}
@keyframes slideDown{from{top:60px;opacity:0}to{top:80px;opacity:1}}

/* ── TOPBAR ── */
.topbar{background:var(--teal-900);color:rgba(255,255,255,.8);font-size:.8rem;padding:.5rem 0}
.topbar .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem}
.topbar-right{display:flex;gap:1.2rem}
.topbar a{color:rgba(255,255,255,.8);transition:color var(--transition)}
.topbar a:hover,.topbar a i{color:var(--amber-400)}
.topbar i{margin-right:.3rem}

/* ── NAVBAR ── */
.navbar{background:var(--white);box-shadow:var(--shadow-sm);position:sticky;top:0;z-index:1000;transition:all var(--transition)}
.navbar.scrolled{box-shadow:var(--shadow-md)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding-top:.9rem;padding-bottom:.9rem;gap:1rem}
.logo{display:flex;align-items:center;gap:.75rem}
.logo-icon{width:46px;height:46px;background:linear-gradient(135deg,var(--teal-500),var(--teal-700));border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.2rem;flex-shrink:0}
.logo-brand{display:block;font-family:'Playfair Display',serif;font-weight:800;font-size:1.15rem;color:var(--teal-900);line-height:1.1}
.logo-sub{display:block;font-size:.68rem;color:var(--gray-400);letter-spacing:.04em;text-transform:uppercase}
.nav-menu{display:flex;align-items:center;gap:2rem}
.nav-menu a{font-weight:500;font-size:.92rem;color:var(--gray-700,#4a5568);padding:.4rem 0;position:relative}
.nav-menu a::after{content:'';position:absolute;bottom:-2px;left:0;width:0;height:2px;background:var(--teal-500);transition:width var(--transition)}
.nav-menu a:hover::after,.nav-menu a.active::after{width:100%}
.nav-menu a:hover,.nav-menu a.active{color:var(--teal-600)}
.has-dropdown{position:relative}
.has-dropdown > a{display:flex;align-items:center;gap:.3rem}
.has-dropdown > a .fa-chevron-down{font-size:.65rem;transition:transform var(--transition)}
.has-dropdown:hover > a .fa-chevron-down{transform:rotate(180deg)}
.dropdown{position:absolute;top:calc(100% + 12px);left:0;background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);min-width:220px;padding:.5rem 0;opacity:0;pointer-events:none;transform:translateY(-8px);transition:all var(--transition);z-index:100;border-top:3px solid var(--teal-500)}
.has-dropdown:hover .dropdown{opacity:1;pointer-events:all;transform:translateY(0)}
.dropdown li a{display:block;padding:.65rem 1.2rem;font-size:.88rem;color:var(--gray-700,#4a5568)}
.dropdown li a:hover{color:var(--teal-600);background:var(--teal-50);padding-left:1.6rem}
.nav-actions{display:flex;align-items:center;gap:.8rem}
.nav-icon{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--gray-600);font-size:1rem;transition:all var(--transition);background:var(--gray-100)}
.nav-icon:hover{background:var(--teal-100);color:var(--teal-600)}
.cart-icon{position:relative}
.cart-badge{position:absolute;top:-4px;right:-4px;background:var(--amber-500);color:#fff;font-size:.65rem;font-weight:700;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center}
.btn-admin{background:var(--teal-900);color:#fff;padding:.4rem 1rem;border-radius:var(--radius-sm);font-size:.8rem;font-weight:600}
.hamburger{display:none;flex-direction:column;gap:5px;padding:.3rem}
.hamburger span{display:block;width:22px;height:2px;background:var(--gray-700,#4a5568);border-radius:2px;transition:all var(--transition)}

/* ── HERO SLIDER ── */
.hero{position:relative;overflow:hidden;height:580px;background:var(--teal-900)}
.hero-slides{display:flex;transition:transform .6s cubic-bezier(.4,0,.2,1);height:100%}
.hero-slide{min-width:100%;height:100%;position:relative;display:flex;align-items:center}
.hero-bg{position:absolute;inset:0;background:linear-gradient(135deg,var(--teal-900) 0%,var(--teal-700) 50%,#0d4a3e 100%);overflow:hidden}
.hero-bg::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5C16.2 5 5 16.2 5 30s11.2 25 25 25 25-11.2 25-25S43.8 5 30 5zm0 44C18.4 49 9 39.6 9 28s9.4-21 21-21 21 9.4 21 21-9.4 21-21 21z' fill='%23ffffff08'/%3E%3C/svg%3E") repeat;opacity:.4}
.hero-content{position:relative;z-index:2;color:#fff;max-width:600px;padding:0 3rem}
.hero-eyebrow{font-size:.8rem;text-transform:uppercase;letter-spacing:.12em;color:var(--amber-400);font-weight:600;margin-bottom:.8rem}
.hero-title{font-family:'Playfair Display',serif;font-size:clamp(2rem,4vw,3.2rem);font-weight:800;line-height:1.15;margin-bottom:1rem}
.hero-title em{color:var(--amber-400);font-style:normal}
.hero-desc{color:rgba(255,255,255,.8);font-size:1rem;margin-bottom:2rem;line-height:1.7}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero-fish{position:absolute;right:5%;top:50%;transform:translateY(-50%);font-size:14rem;opacity:.08;animation:float 4s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(-50%) rotate(-5deg)}50%{transform:translateY(calc(-50% - 15px)) rotate(5deg)}}
.hero-dots{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);display:flex;gap:.5rem;z-index:10}
.hero-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.4);border:none;cursor:pointer;transition:all var(--transition)}
.hero-dot.active{background:#fff;width:24px;border-radius:4px}
.hero-prev,.hero-next{position:absolute;top:50%;transform:translateY(-50%);z-index:10;width:44px;height:44px;background:rgba(255,255,255,.15);border-radius:50%;border:none;color:#fff;font-size:1rem;cursor:pointer;transition:all var(--transition);display:flex;align-items:center;justify-content:center}
.hero-prev{left:1rem}.hero-next{right:1rem}
.hero-prev:hover,.hero-next:hover{background:var(--amber-500)}

/* ── STATS STRIP ── */
.stats-strip{background:var(--teal-500);color:#fff;padding:1rem 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);text-align:center;gap:1rem}
.stat-item strong{display:block;font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:800}
.stat-item span{font-size:.8rem;opacity:.85;text-transform:uppercase;letter-spacing:.05em}

/* ── FEATURES ── */
.features{padding:4rem 0;background:var(--white)}
.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.feature-card{text-align:center;padding:2rem 1.5rem;border-radius:var(--radius-md);border:1px solid rgba(0,0,0,.06);transition:all var(--transition)}
.feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--teal-200,#b2e4e0)}
.feature-icon{width:60px;height:60px;border-radius:var(--radius-sm);background:var(--teal-100);color:var(--teal-600);display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin:0 auto 1rem}
.feature-card h3{font-size:1rem;font-weight:700;color:var(--teal-900);margin-bottom:.4rem}
.feature-card p{font-size:.85rem;color:var(--gray-600)}

/* ── SECTION ── */
.section{padding:4rem 0}
.section-alt{background:var(--teal-50)}

/* ── PRODUCT CARD ── */
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.5rem}
.product-card{background:#fff;border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm);transition:all var(--transition);border:1px solid rgba(0,0,0,.05);position:relative}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.product-img-wrap{position:relative;overflow:hidden;aspect-ratio:1;background:var(--gray-100)}
.product-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.product-card:hover .product-img-wrap img{transform:scale(1.07)}
.product-img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:5rem;color:var(--teal-300,#7dd0c9);background:linear-gradient(135deg,var(--teal-50),var(--teal-100))}
.product-badges{position:absolute;top:.7rem;left:.7rem;display:flex;flex-direction:column;gap:.3rem}
.product-actions-hover{position:absolute;bottom:-50px;left:0;right:0;display:flex;gap:.5rem;padding:.7rem;background:rgba(255,255,255,.95);transition:bottom var(--transition)}
.product-card:hover .product-actions-hover{bottom:0}
.product-actions-hover .btn{flex:1;justify-content:center;font-size:.82rem;padding:.5rem}
.btn-wish{width:36px;height:36px;padding:0;border-radius:50%;background:#fff;border:1px solid rgba(0,0,0,.1)}
.btn-wish:hover,.btn-wish.active{background:var(--red-500);color:#fff;border-color:var(--red-500)}
.product-info{padding:1.1rem}
.product-category{font-size:.72rem;color:var(--teal-500);text-transform:uppercase;letter-spacing:.06em;font-weight:600;margin-bottom:.3rem}
.product-name{font-weight:700;font-size:.95rem;color:var(--dark);line-height:1.4;margin-bottom:.5rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-rating{display:flex;align-items:center;gap:.4rem;margin-bottom:.6rem}
.stars{color:var(--amber-400);font-size:.8rem}
.rating-count{font-size:.75rem;color:var(--gray-400)}
.product-price{display:flex;align-items:center;gap:.6rem;flex-wrap:wrap}
.price-now{font-family:'Playfair Display',serif;font-size:1.15rem;font-weight:800;color:var(--teal-700)}
.price-old{font-size:.82rem;color:var(--gray-400);text-decoration:line-through}

/* ── PRODUCT DETAIL ── */
.product-detail{padding:3rem 0}
.detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.detail-gallery{position:sticky;top:100px}
.gallery-main{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:1;background:var(--gray-100);margin-bottom:1rem}
.gallery-main img{width:100%;height:100%;object-fit:cover}
.gallery-thumbs{display:flex;gap:.6rem}
.gallery-thumb{width:70px;height:70px;border-radius:var(--radius-sm);overflow:hidden;cursor:pointer;border:2px solid transparent;transition:border var(--transition)}
.gallery-thumb.active,.gallery-thumb:hover{border-color:var(--teal-500)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.detail-info .category-link{font-size:.8rem;color:var(--teal-500);text-transform:uppercase;letter-spacing:.06em;font-weight:600}
.detail-info h1{font-family:'Playfair Display',serif;font-size:clamp(1.5rem,3vw,2.2rem);font-weight:800;color:var(--teal-900);margin:.5rem 0}
.detail-rating{display:flex;align-items:center;gap:.8rem;margin-bottom:1.2rem}
.detail-price{margin-bottom:1.5rem}
.detail-price .price-now{font-size:2rem}
.detail-desc{color:var(--gray-600);font-size:.95rem;line-height:1.75;margin-bottom:1.5rem;border-top:1px solid rgba(0,0,0,.06);padding-top:1.5rem}
.qty-wrap{display:flex;align-items:center;gap:0;margin-bottom:1.5rem;border:1px solid rgba(0,0,0,.1);border-radius:var(--radius-sm);overflow:hidden;width:fit-content}
.qty-btn{width:42px;height:42px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;font-weight:700;background:var(--gray-100);transition:background var(--transition)}
.qty-btn:hover{background:var(--teal-100);color:var(--teal-600)}
.qty-input{width:60px;height:42px;text-align:center;border:none;border-left:1px solid rgba(0,0,0,.08);border-right:1px solid rgba(0,0,0,.08);font-size:1rem;font-weight:600;outline:none}
.detail-actions{display:flex;gap:1rem;margin-bottom:1.5rem;flex-wrap:wrap}
.detail-meta{background:var(--teal-50);border-radius:var(--radius-md);padding:1.2rem;font-size:.9rem}
.detail-meta table{width:100%;border-collapse:collapse}
.detail-meta td{padding:.4rem 0;vertical-align:top}
.detail-meta td:first-child{color:var(--gray-500,#6b7280);width:130px;font-weight:500}
.detail-meta td:last-child{font-weight:600;color:var(--teal-800)}

/* ── REVIEWS ── */
.reviews-section{padding:2rem 0}
.review-card{background:#fff;border-radius:var(--radius-md);padding:1.5rem;border:1px solid rgba(0,0,0,.06);margin-bottom:1rem}
.review-header{display:flex;align-items:center;gap:1rem;margin-bottom:.8rem}
.review-avatar{width:42px;height:42px;border-radius:50%;background:var(--teal-500);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1rem;flex-shrink:0}
.review-meta strong{display:block;font-size:.92rem}
.review-meta span{font-size:.78rem;color:var(--gray-400)}
.review-text{font-size:.9rem;color:var(--gray-600);line-height:1.65}

/* ── CART ── */
.cart-page{padding:3rem 0}
.cart-grid{display:grid;grid-template-columns:1fr 360px;gap:2rem;align-items:start}
.cart-table{background:#fff;border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm)}
.cart-table table{width:100%;border-collapse:collapse}
.cart-table th{background:var(--teal-50);padding:1rem 1.2rem;text-align:left;font-size:.82rem;text-transform:uppercase;letter-spacing:.06em;color:var(--teal-700)}
.cart-table td{padding:1rem 1.2rem;border-bottom:1px solid rgba(0,0,0,.05)}
.cart-table tr:last-child td{border-bottom:none}
.cart-item-img{width:70px;height:70px;border-radius:var(--radius-sm);object-fit:cover}
.cart-item-name{font-weight:600;font-size:.92rem}
.cart-item-meta{font-size:.78rem;color:var(--gray-400)}
.cart-summary{background:#fff;border-radius:var(--radius-md);padding:1.5rem;box-shadow:var(--shadow-sm);position:sticky;top:100px}
.cart-summary h3{font-size:1.1rem;font-weight:700;margin-bottom:1.2rem;padding-bottom:.8rem;border-bottom:1px solid rgba(0,0,0,.08)}
.summary-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:.7rem;font-size:.92rem}
.summary-total{font-size:1.1rem;font-weight:700;color:var(--teal-700);border-top:2px solid rgba(0,0,0,.08);padding-top:.8rem;margin-top:.8rem}
.coupon-form{display:flex;gap:.5rem;margin-bottom:1.2rem}
.coupon-form input{flex:1;padding:.6rem .8rem;border:1px solid rgba(0,0,0,.1);border-radius:var(--radius-sm);outline:none;font-size:.88rem}
.coupon-form input:focus{border-color:var(--teal-400)}

/* ── CHECKOUT ── */
.checkout-grid{display:grid;grid-template-columns:1fr 380px;gap:2rem;align-items:start}
.form-section{background:#fff;border-radius:var(--radius-md);padding:1.8rem;box-shadow:var(--shadow-sm);margin-bottom:1.5rem}
.form-section h3{font-weight:700;font-size:1.05rem;margin-bottom:1.2rem;display:flex;align-items:center;gap:.5rem;color:var(--teal-800)}
.form-section h3 i{color:var(--teal-500)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:1rem}
.form-group label{display:block;font-size:.85rem;font-weight:600;color:var(--gray-700,#4a5568);margin-bottom:.4rem}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.7rem .95rem;border:1.5px solid rgba(0,0,0,.1);border-radius:var(--radius-sm);font-size:.9rem;outline:none;transition:border var(--transition);background:#fff}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--teal-400)}
.form-group.full{grid-column:1/-1}
.payment-options{display:flex;flex-direction:column;gap:.7rem}
.payment-option{display:flex;align-items:center;gap:1rem;padding:1rem;border:2px solid rgba(0,0,0,.08);border-radius:var(--radius-sm);cursor:pointer;transition:all var(--transition)}
.payment-option:hover,.payment-option.selected{border-color:var(--teal-500);background:var(--teal-50)}
.payment-option input{accent-color:var(--teal-500)}
.payment-option .pay-info strong{display:block;font-size:.9rem}
.payment-option .pay-info span{font-size:.78rem;color:var(--gray-500,#6b7280)}

/* ── ORDERS ── */
.order-card{background:#fff;border-radius:var(--radius-md);padding:1.5rem;box-shadow:var(--shadow-sm);margin-bottom:1rem;border-left:4px solid var(--teal-500)}
.order-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;flex-wrap:wrap;gap:.5rem}
.order-code{font-weight:700;font-size:1rem;color:var(--teal-800)}
.order-date{font-size:.8rem;color:var(--gray-400)}
.order-items{display:flex;flex-direction:column;gap:.5rem;border-top:1px solid rgba(0,0,0,.06);padding-top:1rem;margin-top:1rem}
.order-item{display:flex;justify-content:space-between;font-size:.88rem}
.status-badge{padding:.35rem .9rem;border-radius:30px;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.status-menunggu_pembayaran{background:#fff3cd;color:#856404}
.status-pembayaran_dikonfirmasi{background:#d1ecf1;color:#0c5460}
.status-diproses{background:#d4edda;color:#155724}
.status-dikirim{background:#cce5ff;color:#004085}
.status-selesai{background:var(--teal-100);color:var(--teal-700)}
.status-dibatalkan{background:#f8d7da;color:#721c24}

/* ── FILTER SIDEBAR ── */
.shop-layout{display:grid;grid-template-columns:260px 1fr;gap:2rem;align-items:start}
.filter-sidebar{background:#fff;border-radius:var(--radius-md);padding:1.5rem;box-shadow:var(--shadow-sm);position:sticky;top:100px}
.filter-sidebar h3{font-weight:700;font-size:1rem;margin-bottom:1.2rem;color:var(--teal-900)}
.filter-group{margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid rgba(0,0,0,.06)}
.filter-group:last-child{border:none;margin-bottom:0;padding-bottom:0}
.filter-group h4{font-size:.85rem;font-weight:700;color:var(--gray-600);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.8rem}
.filter-group label{display:flex;align-items:center;gap:.6rem;font-size:.88rem;padding:.3rem 0;cursor:pointer}
.filter-group label input{accent-color:var(--teal-500)}
.price-range{display:flex;gap:.5rem;align-items:center}
.price-range input{width:90px;padding:.4rem .6rem;border:1px solid rgba(0,0,0,.1);border-radius:6px;font-size:.82rem;outline:none;text-align:center}
.shop-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;flex-wrap:wrap;gap:.8rem}
.sort-select{padding:.5rem .9rem;border:1px solid rgba(0,0,0,.1);border-radius:var(--radius-sm);font-size:.88rem;outline:none;background:#fff;cursor:pointer}
.pagination{display:flex;gap:.4rem;justify-content:center;margin-top:2rem;flex-wrap:wrap}
.pagination a,.pagination span{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:var(--radius-sm);font-size:.88rem;font-weight:600;border:1px solid rgba(0,0,0,.1);transition:all var(--transition)}
.pagination a:hover,.pagination .active{background:var(--teal-500);color:#fff;border-color:var(--teal-500)}

/* ── ABOUT ── */
.about-hero{background:linear-gradient(135deg,var(--teal-900),var(--teal-700));color:#fff;padding:5rem 0;text-align:center}
.about-hero h1{font-family:'Playfair Display',serif;font-size:clamp(2rem,4vw,3rem);font-weight:800;margin-bottom:1rem}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-img{border-radius:var(--radius-lg);overflow:hidden;font-size:12rem;text-align:center;padding:2rem;background:linear-gradient(135deg,var(--teal-100),var(--teal-50))}
.about-content h2{font-family:'Playfair Display',serif;font-size:clamp(1.5rem,2.5vw,2rem);color:var(--teal-900);margin-bottom:1rem}
.about-content p{color:var(--gray-600);line-height:1.8;margin-bottom:1rem}
.about-features{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.5rem}
.about-feature{display:flex;gap:.8rem;align-items:flex-start}
.about-feature i{color:var(--teal-500);margin-top:.2rem;flex-shrink:0;font-size:1.1rem}
.about-feature strong{display:block;font-size:.92rem;margin-bottom:.2rem}
.about-feature p{font-size:.85rem;color:var(--gray-500,#6b7280);margin:0}

/* ── CONTACT ── */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.contact-info h3{font-family:'Playfair Display',serif;font-size:1.5rem;color:var(--teal-900);margin-bottom:1rem}
.contact-info p{color:var(--gray-600);line-height:1.75;margin-bottom:1.5rem}
.contact-items{display:flex;flex-direction:column;gap:1rem}
.contact-item{display:flex;align-items:flex-start;gap:1rem}
.contact-item-icon{width:44px;height:44px;background:var(--teal-100);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;color:var(--teal-600);flex-shrink:0}
.contact-item strong{display:block;font-size:.9rem;margin-bottom:.2rem}
.contact-item span{font-size:.85rem;color:var(--gray-600)}
.contact-form{background:#fff;border-radius:var(--radius-md);padding:2rem;box-shadow:var(--shadow-md)}
.contact-form h3{font-weight:700;margin-bottom:1.5rem;color:var(--teal-900)}

/* ── AUTH ── */
.auth-wrap{min-height:calc(100vh - 120px);display:flex;align-items:center;justify-content:center;padding:3rem 1rem;background:linear-gradient(135deg,var(--teal-50) 0%,var(--cream) 100%)}
.auth-card{background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);padding:2.5rem;width:100%;max-width:440px}
.auth-card .auth-logo{text-align:center;margin-bottom:2rem}
.auth-card .auth-logo i{font-size:3rem;color:var(--teal-500)}
.auth-card h2{text-align:center;font-family:'Playfair Display',serif;font-size:1.75rem;color:var(--teal-900);margin-bottom.5rem}
.auth-card .auth-sub{text-align:center;color:var(--gray-500,#6b7280);font-size:.88rem;margin-bottom:1.8rem}
.divider{text-align:center;position:relative;margin:1.2rem 0;color:var(--gray-400);font-size:.82rem}
.divider::before,.divider::after{content:'';position:absolute;top:50%;width:40%;height:1px;background:rgba(0,0,0,.08)}
.divider::before{left:0}.divider::after{right:0}
.auth-link{text-align:center;font-size:.88rem;color:var(--gray-600);margin-top:1.2rem}
.auth-link a{color:var(--teal-600);font-weight:600}

/* ── ADMIN ── */
.admin-layout{display:grid;grid-template-columns:260px 1fr;min-height:100vh}
.admin-sidebar{background:var(--teal-900);color:#fff;padding:1.5rem 0;position:sticky;top:0;height:100vh;overflow-y:auto}
.admin-brand{padding:0 1.5rem 1.5rem;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:1rem}
.admin-brand h2{font-family:'Playfair Display',serif;font-size:1.1rem;margin-top:.5rem}
.admin-brand span{font-size:.75rem;opacity:.6}
.admin-nav a{display:flex;align-items:center;gap:.8rem;padding:.8rem 1.5rem;color:rgba(255,255,255,.7);font-size:.9rem;transition:all var(--transition)}
.admin-nav a:hover,.admin-nav a.active{background:rgba(255,255,255,.1);color:#fff;padding-left:2rem}
.admin-nav a i{width:18px;text-align:center}
.admin-nav .nav-section{padding:.8rem 1.5rem .3rem;font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.35)}
.admin-content{background:var(--gray-100);padding:2rem}
.admin-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;flex-wrap:wrap;gap:1rem}
.admin-header h1{font-size:1.5rem;font-weight:700;color:var(--teal-900)}
.stat-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-bottom:2rem}
.stat-card{background:#fff;border-radius:var(--radius-md);padding:1.5rem;box-shadow:var(--shadow-sm);display:flex;align-items:center;gap:1rem}
.stat-card-icon{width:52px;height:52px;border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0}
.stat-card-icon.teal{background:var(--teal-100);color:var(--teal-600)}
.stat-card-icon.amber{background:var(--amber-100);color:#b07d0a}
.stat-card-icon.red{background:#fff0f0;color:var(--red-500)}
.stat-card-icon.green{background:#f0fff4;color:var(--green-500)}
.stat-card strong{display:block;font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:800;color:var(--teal-900)}
.stat-card span{font-size:.8rem;color:var(--gray-500,#6b7280)}
.data-table{background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);overflow:hidden}
.data-table-head{display:flex;justify-content:space-between;align-items:center;padding:1.2rem 1.5rem;border-bottom:1px solid rgba(0,0,0,.06)}
.data-table-head h3{font-weight:700;color:var(--teal-900)}
.data-table table{width:100%;border-collapse:collapse}
.data-table th{padding:1rem 1.2rem;text-align:left;font-size:.8rem;text-transform:uppercase;letter-spacing:.06em;color:var(--gray-500,#6b7280);background:var(--gray-50,#f9fafb);border-bottom:1px solid rgba(0,0,0,.06)}
.data-table td{padding:.9rem 1.2rem;border-bottom:1px solid rgba(0,0,0,.04);font-size:.9rem;vertical-align:middle}
.data-table tr:last-child td{border-bottom:none}
.data-table tr:hover td{background:var(--teal-50)}
.table-img{width:48px;height:48px;border-radius:var(--radius-sm);object-fit:cover}
.action-btns{display:flex;gap:.4rem}

/* ── FOOTER ── */
.footer{background:var(--teal-900);color:rgba(255,255,255,.8)}
.footer-top{padding:3.5rem 0}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:2.5rem}
.footer-logo{display:flex;align-items:center;gap:.7rem;margin-bottom:1rem}
.footer-logo i{font-size:1.5rem;color:var(--teal-400)}
.footer-logo span{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:800;color:#fff}
.footer-brand p{font-size:.85rem;line-height:1.75;margin-bottom:1.2rem}
.footer-social{display:flex;gap:.7rem}
.footer-social a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;font-size:.9rem;color:rgba(255,255,255,.7);transition:all var(--transition)}
.footer-social a:hover{background:var(--teal-500);color:#fff;transform:translateY(-2px)}
.footer-col h4{color:#fff;font-weight:700;font-size:.95rem;margin-bottom:1rem}
.footer-col ul li{margin-bottom:.5rem}
.footer-col ul a{font-size:.85rem;color:rgba(255,255,255,.65);transition:color var(--transition)}
.footer-col ul a:hover{color:var(--amber-400)}
.footer-contact li{display:flex;align-items:flex-start;gap:.6rem;font-size:.85rem;margin-bottom:.6rem}
.footer-contact i{color:var(--teal-400);margin-top:.15rem;flex-shrink:0}
.payment-methods{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:.5rem}
.pay-badge{background:rgba(255,255,255,.1);color:rgba(255,255,255,.8);padding:.3rem .7rem;border-radius:6px;font-size:.75rem;font-weight:600;display:flex;align-items:center;gap:.3rem}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.2rem 0;text-align:center;display:flex;flex-direction:column;gap:.3rem}
.footer-bottom p{font-size:.8rem;color:rgba(255,255,255,.5)}

/* ── FLOATING BUTTONS ── */
.wa-float{position:fixed;bottom:2rem;right:2rem;z-index:500;width:52px;height:52px;border-radius:50%;background:#25d366;color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.5rem;box-shadow:0 4px 20px rgba(37,211,102,.45);transition:all var(--transition)}
.wa-float:hover{transform:scale(1.1);box-shadow:0 6px 24px rgba(37,211,102,.6)}
.back-to-top{position:fixed;bottom:5.5rem;right:2rem;z-index:500;width:40px;height:40px;border-radius:50%;background:var(--teal-600);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.85rem;opacity:0;pointer-events:none;transition:all var(--transition);box-shadow:var(--shadow-md)}
.back-to-top.show{opacity:1;pointer-events:all}

/* ── BREADCRUMB ── */
.breadcrumb{padding:.8rem 0;font-size:.82rem;color:var(--gray-400)}
.breadcrumb a{color:var(--teal-500)}
.breadcrumb a:hover{color:var(--teal-700)}
.breadcrumb span{margin:0 .4rem}

/* ── EMPTY STATE ── */
.empty-state{text-align:center;padding:4rem 2rem}
.empty-state i{font-size:4rem;color:var(--gray-300,#d1d5db);display:block;margin-bottom:1rem}
.empty-state h3{font-size:1.1rem;color:var(--gray-600);margin-bottom:.5rem}
.empty-state p{font-size:.88rem;color:var(--gray-400);margin-bottom:1.5rem}

/* ── NEWSLETTER ── */
.newsletter{background:linear-gradient(135deg,var(--teal-700),var(--teal-900));color:#fff;padding:3rem 0;text-align:center}
.newsletter h2{font-family:'Playfair Display',serif;font-size:1.75rem;margin-bottom:.5rem}
.newsletter p{opacity:.8;margin-bottom:1.5rem}
.newsletter-form{display:flex;gap:.5rem;max-width:480px;margin:0 auto}
.newsletter-form input{flex:1;padding:.8rem 1rem;border:none;border-radius:var(--radius-sm);font-size:.9rem;outline:none}
.newsletter-form button{padding:.8rem 1.5rem;background:var(--amber-500);color:#fff;border:none;border-radius:var(--radius-sm);font-weight:600;cursor:pointer;transition:background var(--transition)}
.newsletter-form button:hover{background:#c8881a}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .stat-cards{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .shop-layout{grid-template-columns:1fr}
  .filter-sidebar{position:static}
  .admin-layout{grid-template-columns:1fr}
  .admin-sidebar{display:none}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav-menu{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:var(--white);flex-direction:column;justify-content:center;align-items:center;gap:2rem;z-index:900;font-size:1.1rem}
  .nav-menu.open{display:flex}
  .hamburger{display:flex}
  .hero{height:480px}
  .hero-fish{display:none}
  .hero-content{padding:0 1.5rem}
  .detail-grid,.about-grid,.contact-grid,.cart-grid,.checkout-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .topbar .container{flex-direction:column;gap:.3rem;text-align:center}
  .newsletter-form{flex-direction:column}
}
@media(max-width:480px){
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .stat-cards{grid-template-columns:1fr}
  .features-grid{grid-template-columns:1fr}
  .hero-actions{flex-direction:column;gap:.7rem}
  .btn-lg{width:100%;justify-content:center}
}
