/* =====================================================
   IA Shop Theme — Main Stylesheet
   shop.israeladejumo.com
   Colour: Dark (#0a0a0a) + Gold (#c9a84c)
   Fonts:  Playfair Display / Oswald / Lato
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0a0a0a;
  --dark2: #111;
  --dark3: #1a1a1a;
  --white: #fff;
  --off-white: #f7f7f4;
  --text: #2a2a2a;
  --muted: #888;
  --border: #e2e2e2;
  --red: #c0392b;
  --nav-height: 80px;
  --topbar-height: 36px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--text);
  padding-top: calc(var(--nav-height) + var(--topbar-height));
  overflow-x: hidden;
}

/* ── TOPBAR ──────────────────────────────────────────── */
.iashop-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: var(--topbar-height); background: var(--gold);
  display: flex; align-items: center;
}
.iashop-topbar-inner {
  width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.iashop-topbar span { font-size: 12px; font-weight: 700; color: var(--dark); letter-spacing: 0.5px; }
.iashop-topbar a { font-size: 12px; color: var(--dark); text-decoration: none; font-weight: 700; }
.iashop-topbar a:hover { text-decoration: underline; }

/* ── NAVIGATION ──────────────────────────────────────── */
.iashop-nav {
  position: fixed; top: var(--topbar-height); left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); background: var(--dark);
  border-bottom: 2px solid #1a1a1a;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.iashop-nav-inner {
  max-width: 1300px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 20px; padding: 0 24px;
}
.iashop-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.iashop-logo-img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; object-position: center top; }
.iashop-logo-top { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2; }
.iashop-logo-bottom { font-family: 'Lato', sans-serif; font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.iashop-search { flex: 1; max-width: 360px; display: flex; background: #1a1a1a; border: 1px solid #333; border-radius: 3px; overflow: hidden; }
.iashop-search input { flex: 1; padding: 9px 14px; background: none; border: none; color: #fff; font-size: 13px; outline: none; font-family: 'Lato', sans-serif; }
.iashop-search input::placeholder { color: #555; }
.iashop-search button { padding: 9px 16px; background: var(--gold); border: none; color: var(--dark); cursor: pointer; font-size: 14px; transition: background 0.2s; }
.iashop-search button:hover { background: var(--gold-light); }
.iashop-nav-right { display: flex; align-items: center; gap: 4px; margin-left: auto; }
ul.iashop-nav-links { list-style: none; display: flex; gap: 0; }
ul.iashop-nav-links li a { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none; padding: 10px 14px; display: block; transition: color 0.2s; border-bottom: 2px solid transparent; }
ul.iashop-nav-links li a:hover, ul.iashop-nav-links li.current-menu-item a { color: var(--gold); border-bottom-color: var(--gold); }
.iashop-cart-btn { position: relative; padding: 10px 14px; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 18px; transition: color 0.2s; display: flex; align-items: center; }
.iashop-cart-btn:hover { color: var(--gold); }
.iashop-cart-count { position: absolute; top: 4px; right: 6px; background: var(--gold); color: var(--dark); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.iashop-nav-icon { padding: 10px 12px; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 16px; transition: color 0.2s; }
.iashop-nav-icon:hover { color: var(--gold); }
.iashop-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.iashop-hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: all 0.3s; }
.iashop-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.iashop-hamburger.open span:nth-child(2) { opacity: 0; }
.iashop-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.iashop-mobile-open ul.iashop-nav-links { display: flex !important; flex-direction: column; position: fixed; top: calc(var(--topbar-height) + var(--nav-height)); left: 0; right: 0; background: var(--dark2); padding: 8px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 999; border-top: 2px solid var(--gold); }
.iashop-mobile-open ul.iashop-nav-links li a { padding: 14px 24px; border-bottom: 1px solid #1a1a1a; font-size: 13px; }
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* ── HERO ────────────────────────────────────────────── */
.iashop-hero { height: 500px; position: relative; overflow: hidden; background: var(--dark); }
.iashop-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.9) 40%, rgba(201,168,76,0.12) 100%), url('../images/hero-bg.jpg') center/cover no-repeat; }
.iashop-hero-content { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 80px; }
.iashop-hero-tag { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 4px 14px; margin-bottom: 18px; }
.iashop-hero-text h1 { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.iashop-hero-text p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 28px; }
.iashop-hero-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 14px 32px; text-decoration: none; transition: all 0.3s; }
.iashop-hero-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── SECTION HEADERS ─────────────────────────────────── */
.iashop-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.iashop-section-header h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 12px; }
.iashop-section-header h2::before { content: ''; display: block; width: 32px; height: 3px; background: var(--gold); }
.iashop-view-all { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.iashop-view-all:hover { gap: 10px; }

/* ── CATEGORIES ──────────────────────────────────────── */
.iashop-categories { padding: 60px 80px; background: var(--off-white); }
.iashop-cats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.iashop-cat-card { background: var(--dark); padding: 32px 20px; text-align: center; text-decoration: none; transition: all 0.3s; position: relative; overflow: hidden; }
.iashop-cat-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.iashop-cat-card:hover { background: #111; }
.iashop-cat-card:hover::after { transform: scaleX(1); }
.iashop-cat-icon { font-size: 32px; color: var(--gold); margin-bottom: 12px; }
.iashop-cat-label { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.iashop-cat-sub { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── PRODUCT CARDS ───────────────────────────────────── */
.iashop-products-section { padding: 60px 80px; }
.iashop-products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.iashop-product-card { border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.3s; background: var(--white); }
.iashop-product-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.1); }
.iashop-product-img-wrap { display: block; height: 260px; overflow: hidden; position: relative; background: var(--dark3); }
.iashop-product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.iashop-product-card:hover .iashop-product-img-wrap img { transform: scale(1.05); }
.iashop-product-no-img { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 60px; color: var(--gold); opacity: 0.3; }
.iashop-product-hover { position: absolute; inset: 0; background: rgba(10,10,10,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.iashop-product-card:hover .iashop-product-hover { opacity: 1; }
.iashop-product-hover span { color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.iashop-product-badge { position: absolute; top: 12px; left: 12px; font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.iashop-badge-book { background: var(--dark); color: var(--gold); }
.iashop-badge-pre  { background: #e67e22; color: #fff; }
.iashop-product-info { padding: 18px 20px; }
.iashop-product-cat { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.iashop-product-cat a { color: inherit; text-decoration: none; }
.iashop-product-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 6px; }
.iashop-product-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.iashop-product-card:hover .iashop-product-title a { color: var(--gold); }
.iashop-product-author { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.iashop-product-author i { color: var(--gold); margin-right: 4px; }
.iashop-product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.iashop-product-price { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); }
.iashop-products-grid .add_to_cart_button, .iashop-add-btn { font-family: 'Oswald', sans-serif !important; font-size: 11px !important; font-weight: 600 !important; letter-spacing: 1.5px !important; text-transform: uppercase !important; padding: 9px 16px !important; background: var(--dark) !important; color: var(--gold) !important; border: none !important; cursor: pointer !important; border-radius: 2px !important; text-decoration: none !important; transition: all 0.2s !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; }
.iashop-products-grid .add_to_cart_button:hover, .iashop-add-btn:hover { background: var(--gold) !important; color: var(--dark) !important; }
.iashop-btn-pre { background: #e67e22 !important; color: #fff !important; }
.iashop-product-release { font-size: 11px; color: #e67e22; margin-top: 8px; }

/* ── WOO PRODUCT LOOP ────────────────────────────────── */
.iashop-woo-wrap { max-width: 1300px; margin: 0 auto; padding: 48px 80px; }
.woocommerce .products { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 24px !important; list-style: none !important; padding: 0 !important; }
.woocommerce .products li.product { border: 1px solid var(--border); transition: box-shadow 0.3s; overflow: hidden; }
.woocommerce .products li.product:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.woocommerce .products li.product img { height: 240px; object-fit: cover; width: 100%; }
.woocommerce .products li.product .woocommerce-loop-product__title { font-family: 'Playfair Display', serif !important; font-size: 17px !important; font-weight: 700 !important; padding: 14px 16px 4px !important; }
.woocommerce .products li.product .price { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark) !important; padding: 4px 16px 10px; }
.woocommerce .products li.product .button { margin: 0 16px 16px !important; font-family: 'Oswald', sans-serif !important; letter-spacing: 1.5px !important; text-transform: uppercase !important; background: var(--dark) !important; color: var(--gold) !important; border-radius: 2px !important; font-size: 11px !important; }
.woocommerce .products li.product .button:hover { background: var(--gold) !important; color: var(--dark) !important; }
.woocommerce div.product .product_title { font-family: 'Playfair Display', serif !important; font-size: 32px !important; font-weight: 900 !important; color: var(--dark) !important; }
.woocommerce div.product p.price { font-family: 'Playfair Display', serif !important; font-size: 28px !important; color: var(--dark) !important; }
.woocommerce div.product .single_add_to_cart_button { background: var(--gold) !important; color: var(--dark) !important; font-family: 'Oswald', sans-serif !important; letter-spacing: 2px !important; text-transform: uppercase !important; font-size: 13px !important; border-radius: 2px !important; padding: 14px 32px !important; border: none !important; }
.woocommerce div.product .single_add_to_cart_button:hover { background: var(--gold-light) !important; }
.woocommerce table.shop_table th { font-family: 'Oswald', sans-serif !important; letter-spacing: 1.5px !important; text-transform: uppercase !important; font-size: 11px !important; background: var(--off-white) !important; }
.woocommerce #payment #place_order { background: var(--gold) !important; color: var(--dark) !important; font-family: 'Oswald', sans-serif !important; letter-spacing: 2px !important; font-size: 14px !important; }
.woocommerce input[type=text], .woocommerce input[type=email], .woocommerce input[type=tel], .woocommerce input[type=password], .woocommerce textarea, .woocommerce select { border: 1.5px solid var(--border) !important; border-radius: 2px !important; font-family: 'Lato', sans-serif !important; font-size: 14px !important; padding: 12px 14px !important; }
.woocommerce input:focus, .woocommerce textarea:focus { border-color: var(--gold) !important; outline: none !important; box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important; }
.woocommerce-message { border-top-color: var(--gold) !important; }
.woocommerce-message a.button { background: var(--gold) !important; color: var(--dark) !important; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--dark) !important; color: var(--gold) !important; }

/* ── PROPHET STRIP ───────────────────────────────────── */
.iashop-prophet-strip { background: var(--gold); padding: 60px 80px; }
.iashop-prophet-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.iashop-prophet-img { height: 420px; overflow: hidden; box-shadow: 12px 12px 0 rgba(0,0,0,0.15); }
.iashop-prophet-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.iashop-prophet-tag { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(10,10,10,0.5); margin-bottom: 10px; }
.iashop-prophet-text h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.iashop-prophet-text p { font-size: 15px; color: rgba(10,10,10,0.7); line-height: 1.8; margin-bottom: 12px; }
.iashop-prophet-quote { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--dark); border-left: 3px solid var(--dark); padding-left: 16px; margin: 20px 0; }

/* ── FEATURES ────────────────────────────────────────── */
.iashop-features { background: var(--dark); padding: 60px 80px; }
.iashop-features-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.iashop-feature { text-align: center; }
.iashop-feature i { font-size: 32px; color: var(--gold); margin-bottom: 14px; display: block; }
.iashop-feature h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.iashop-feature p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.iashop-feature p a { color: var(--gold); text-decoration: none; }

/* ── FOOTER ──────────────────────────────────────────── */
.iashop-footer { background: var(--dark2); }
.iashop-footer-inner { max-width: 1300px; margin: 0 auto; padding: 56px 80px 40px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.iashop-footer-avatar { width: 72px; height: 72px; border-radius: 50%; border: 3px solid var(--gold); object-fit: cover; object-position: top; margin-bottom: 14px; display: block; }
.iashop-footer-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.iashop-footer-tagline { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1px; margin-bottom: 18px; font-style: italic; }
.iashop-footer-social { display: flex; gap: 14px; }
.iashop-footer-social a { color: rgba(255,255,255,0.4); font-size: 17px; text-decoration: none; transition: color 0.2s, transform 0.2s; }
.iashop-footer-social a:hover { color: var(--gold); transform: translateY(-3px); }
.iashop-footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid #222; }
.iashop-footer-col ul { list-style: none; }
.iashop-footer-col ul li { margin-bottom: 10px; }
.iashop-footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.iashop-footer-col ul li a:hover { color: var(--gold); }
.iashop-footer-bottom { border-top: 1px solid #1a1a1a; background: var(--dark); padding: 20px 80px; text-align: center; }
.iashop-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.iashop-footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media(max-width:1024px) {
  .iashop-categories,.iashop-products-section,.iashop-prophet-strip,.iashop-features,.iashop-woo-wrap { padding-left:40px;padding-right:40px; }
  .iashop-hero-content { padding:0 40px; }
  .iashop-products-grid,.woocommerce .products { grid-template-columns:1fr 1fr !important; }
  .iashop-footer-inner { grid-template-columns:1fr 1fr;gap:32px;padding-left:40px;padding-right:40px; }
  .iashop-prophet-inner { gap:40px; }
  .iashop-features-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  :root { --nav-height:68px;--topbar-height:30px; }
  .iashop-topbar span { display:none; }
  ul.iashop-nav-links { display:none; }
  .iashop-hamburger { display:flex; }
  .iashop-search { display:none; }
  .iashop-hero { height:360px; }
  .iashop-hero-content { padding:0 24px; }
  .iashop-hero-text h1 { font-size:32px; }
  .iashop-cats-grid { grid-template-columns:1fr 1fr; }
  .iashop-products-grid,.woocommerce .products { grid-template-columns:1fr !important; }
  .iashop-prophet-inner { grid-template-columns:1fr; }
  .iashop-prophet-img { height:240px; }
  .iashop-features-grid { grid-template-columns:1fr; }
  .iashop-footer-inner { grid-template-columns:1fr;padding:40px 24px;gap:24px; }
  .iashop-footer-bottom { padding:16px 24px; }
  .iashop-categories,.iashop-products-section,.iashop-prophet-strip,.iashop-features,.iashop-woo-wrap { padding-left:20px;padding-right:20px; }
}
@media(max-width:480px) {
  .iashop-cats-grid { grid-template-columns:1fr 1fr;gap:8px; }
  .iashop-hero-text h1 { font-size:26px; }
  .iashop-prophet-text h2 { font-size:26px; }
  .iashop-nav-inner { padding:0 16px; }
  .iashop-logo-top { font-size:10px; }
}
