/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; color: #333; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ── TOP BAR ── */
.topbar { background: #1a1a1a; color: #ccc; font-size: 12px; padding: 8px 0; }
.topbar .inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar .address { display: flex; align-items: center; gap: 6px; }
.topbar .contact-items { display: flex; gap: 24px; }
.topbar .contact-item { display: flex; align-items: center; gap: 8px; }
.topbar .contact-item .label { font-size: 10px; color: #888; }
.topbar .contact-item .value { font-size: 13px; color: #ddd; font-weight: 600; }

/* ── HEADER ── */
header { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 75px; }
.logo img { height: 55px; width: auto; }
.logo-text { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 24px; color: #e8a000; letter-spacing: 2px; }
.logo-text span { color: #1a1a1a; }

nav ul { display: flex; list-style: none; gap: 4px; align-items: center; }
nav ul li { position: relative; }
nav ul li a { display: block; padding: 10px 14px; font-size: 13px; font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; font-family: 'Raleway', sans-serif; }
nav ul li a:hover, nav ul li.active > a { color: #e8a000; }
nav ul li.has-dropdown:hover > .dropdown { display: block; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 200px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border-top: 3px solid #e8a000; z-index: 999; }
.dropdown li a { padding: 10px 18px; font-size: 13px; color: #444; text-transform: none; border-bottom: 1px solid #f0f0f0; display: block; font-weight: 600; }
.dropdown li a:hover { color: #e8a000; background: #fafafa; }

/* ── PAGE HERO BANNER ── */
.page-banner { background: linear-gradient(135deg, #1a2a3a 0%, #0d1520 100%); padding: 55px 20px; text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.02) 35px, rgba(255,255,255,0.02) 70px); }
.page-banner h1 { font-family: 'Raleway', sans-serif; font-size: 36px; font-weight: 900; color: #fff; letter-spacing: 2px; position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.breadcrumb a { color: #e8a000; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* ── SECTION COMMON ── */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: 'Raleway', sans-serif; font-size: 32px; font-weight: 800; color: #1a1a1a; }
.section-header h2 strong { color: #e8a000; }
.section-header .divider { width: 60px; height: 4px; background: #e8a000; margin: 14px auto 0; border-radius: 2px; }

/* ── BUTTON ── */
.btn-primary { display: inline-block; padding: 13px 34px; background: #e8a000; color: #fff; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border-radius: 2px; transition: background 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: #c88800; }
.btn-outline { display: inline-block; padding: 11px 28px; background: transparent; color: #e8a000; border: 2px solid #e8a000; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 2px; transition: all 0.2s; cursor: pointer; }
.btn-outline:hover { background: #e8a000; color: #fff; }

/* ── FOOTER ── */
footer { background: #1a1a1a; color: #aaa; }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 60px 20px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid #e8a000; display: inline-block; }
.footer-col p { font-size: 13px; line-height: 1.8; margin-bottom: 10px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #aaa; transition: color 0.2s; }
.footer-col ul li a:hover { color: #e8a000; }
.footer-col ul li a::before { content: "› "; color: #e8a000; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 50px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.footer-contact-item .ic { color: #e8a000; font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-payment { max-width: 1200px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: center; border-top: 1px solid #2a2a2a; }
.footer-payment img { max-height: 38px; }
.footer-bottom { background: #111; text-align: center; padding: 16px 20px; font-size: 12px; color: #666; border-top: 1px solid #2a2a2a; }
.footer-bottom a { color: #e8a000; }

/* ── WHATSAPP ── */
.wa-btn { position: fixed; bottom: 30px; right: 30px; z-index: 9999; background: #25d366; color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 16px rgba(37,211,102,0.5); transition: transform 0.2s; text-decoration: none; }
.wa-btn:hover { transform: scale(1.1); }
.wa-label { position: fixed; bottom: 42px; right: 100px; z-index: 9998; background: #1a1a1a; color: #fff; font-size: 12px; padding: 6px 12px; border-radius: 20px; white-space: nowrap; font-family: 'Raleway', sans-serif; }

/* ── PRODUCT GRID ── */
.products-section { padding: 60px 20px; background: #fff; }
.products-inner { max-width: 1100px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { border: 1px solid #eee; border-radius: 3px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; background: #fff; }
.product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); transform: translateY(-4px); }
.product-card .card-img { height: 220px; overflow: hidden; background: #f5f5f5; display: flex; align-items: center; justify-content: center; }
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .card-img img { transform: scale(1.05); }
.product-card .card-body { padding: 18px; }
.product-card .cat-tag { font-size: 11px; color: #e8a000; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; display: block; }
.product-card h3 { font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.product-card .price { font-size: 18px; font-weight: 800; color: #e8a000; font-family: 'Raleway', sans-serif; margin-bottom: 14px; }
.add-to-cart { display: inline-block; padding: 8px 18px; background: #e8a000; color: #fff; font-size: 12px; font-weight: 700; font-family: 'Raleway', sans-serif; text-transform: uppercase; border-radius: 2px; transition: background 0.2s; cursor: pointer; border: none; }
.add-to-cart:hover { background: #c88800; }
.stars { color: #ccc; font-size: 12px; margin-bottom: 4px; }
.no-product { text-align: center; padding: 60px 20px; color: #888; font-size: 16px; }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; font-family: 'Raleway', sans-serif; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid #ddd; border-radius: 2px; font-size: 14px; font-family: 'Open Sans', sans-serif; color: #333; outline: none; transition: border-color 0.2s; background: #fafafa; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #e8a000; background: #fff; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; }
.gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: 3px; cursor: pointer; background: #e8f0f8; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 650px) {
  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  nav { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
