/*
Theme Name: OffShore Gadget Child
Theme URI: https://new.offshoregadget.com
Description: Custom child theme for OffShore Gadget — pixel-matched to Figma design.
Author: Md Kamran Hossain
Template: hello-elementor
Version: 3.0.0
Text Domain: offshore-gadget-child
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Brand */
  --og-primary:      #F05A28;
  --og-primary-dark: #D94E20;
  --og-red:          #E53935;

  /* Header */
  --og-header-bg:    #0D0D14;
  --og-nav-bg:       #FFFFFF;

  /* Text */
  --og-dark:         #111111;
  --og-text:         #333333;
  --og-text-light:   #666666;
  --og-text-muted:   #999999;
  --og-white:        #FFFFFF;

  /* Surfaces */
  --og-bg:           #F5F7FA;
  --og-card-bg:      #FFFFFF;
  --og-border:       #E8E8E8;
  --og-border-light: #F0F0F0;

  /* Footer */
  --og-footer-bg:    #0D0D14;
  --og-footer-text:  rgba(255,255,255,0.65);
  --og-footer-head:  #FFFFFF;

  /* Badges */
  --og-badge-new:    #4CAF50;
  --og-badge-hot:    #FF5722;
  --og-badge-sale:   #E53935;

  /* Fonts */
  --og-font-bangla:  'Hind Siliguri', sans-serif;
  --og-font:         'Inter', sans-serif;

  /* Layout */
  --og-container:    1400px;
  --og-radius:       8px;
  --og-radius-sm:    4px;
  --og-radius-lg:    12px;

  /* Shadows */
  --og-shadow:       0 2px 8px rgba(0,0,0,0.08);
  --og-shadow-md:    0 4px 16px rgba(0,0,0,0.12);
  --og-shadow-lg:    0 8px 24px rgba(0,0,0,0.16);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--og-font);
  font-size: 14px;
  color: var(--og-text);
  background: var(--og-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

.og-container {
  max-width: var(--og-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER  ← dark black row (Figma-matched)
   ============================================================ */
.og-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* ── Main row (dark) */
.og-header-main-wrap {
  background: var(--og-header-bg);
}
.og-header-main {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  min-height: 68px;
}

/* Logo */
.og-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.og-logo .custom-logo-link,
.og-logo a { display: flex; align-items: center; }
.og-logo img,
.og-logo .custom-logo {
  height: 38px;
  width: auto;
  max-width: 160px;
  /* invert if logo is dark so it shows on dark bg */
}
.og-logo-text-link { text-decoration: none; }
.og-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--og-white);
  letter-spacing: -0.5px;
}

/* Search */
.og-search {
  flex: 1;
  position: relative;
  max-width: 560px;
}
.og-search input[type="search"] {
  width: 100%;
  padding: 11px 52px 11px 20px;
  background: var(--og-white);
  border: none;
  border-radius: 30px;
  font-size: 14px;
  color: var(--og-text);
  outline: none;
  box-shadow: none;
}
.og-search input[type="search"]::placeholder { color: var(--og-text-muted); }
.og-search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--og-primary);
  color: white;
  border: none;
  border-radius: 24px;
  width: 40px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.og-search-btn:hover { background: var(--og-primary-dark); }

/* Header icon buttons right side */
.og-header-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Pill buttons */
.og-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  color: var(--og-white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.og-header-pill:hover {
  background: rgba(255,255,255,0.18);
  color: var(--og-white);
}
.og-header-pill--preorder {
  color: var(--og-white);
}
.og-header-pill--preorder svg { color: var(--og-primary); }

/* Icon buttons */
.og-header-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--og-white);
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.og-header-icon:hover { background: rgba(255,255,255,0.1); color: var(--og-white); }
.og-header-icon svg { width: 22px; height: 22px; }
.og-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--og-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* ── Navigation row (white) */
.og-nav {
  background: var(--og-nav-bg);
  border-bottom: 1px solid var(--og-border);
}
.og-nav .og-container {
  display: flex;
  align-items: center;
}
.og-nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.og-nav-menu > li > a {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--og-text);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.og-nav-menu > li > a:hover,
.og-nav-menu > li.current-menu-item > a {
  color: var(--og-primary);
}

/* Nav dropdowns */
.og-nav-menu > li { position: relative; }
.og-nav-menu > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: var(--og-shadow-md);
  border-radius: 0 0 var(--og-radius-sm) var(--og-radius-sm);
  border-top: 2px solid var(--og-primary);
  z-index: 999;
}
.og-nav-menu > li:hover > ul { display: block; }
.og-nav-menu > li > ul > li > a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--og-text);
  border-bottom: 1px solid var(--og-border-light);
}
.og-nav-menu > li > ul > li:last-child > a { border-bottom: none; }
.og-nav-menu > li > ul > li > a:hover { color: var(--og-primary); padding-left: 20px; }

/* ============================================================
   HERO SLIDER  ← cream/tile bg, orange left panel
   ============================================================ */
.og-hero {
  background: #FFF8F4;
  position: relative;
  overflow: hidden;
}
.og-hero-slider {
  position: relative;
  min-height: 480px;
  display: flex;
}
.og-hero-slide {
  display: none;
  width: 100%;
  min-height: 480px;
  background: #FFF8F4;
  position: relative;
  /* subtle grid pattern like Figma */
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.og-hero-slide.active { display: flex; align-items: center; }

/* Orange/red left accent panel */
.og-hero-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: var(--og-primary);
}

.og-hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 40px 120px 40px 60px;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.og-hero-image-wrap {
  flex: 0 0 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.og-hero-image-wrap img {
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.15));
}
.og-hero-content {
  flex: 1;
  padding-left: 20px;
}
.og-hero-logo {
  margin-bottom: 16px;
  opacity: 0.8;
}
.og-hero-logo img { height: 32px; width: auto; }
.og-hero-subtitle {
  font-family: var(--og-font-bangla);
  font-size: 16px;
  color: var(--og-text-light);
  margin-bottom: 8px;
}
.og-hero-title {
  font-family: var(--og-font-bangla);
  font-size: 42px;
  font-weight: 700;
  color: var(--og-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.og-hero-highlight {
  display: inline;
  background: var(--og-primary);
  color: white;
  padding: 2px 10px;
  border-radius: 4px;
}
.og-hero-source-text {
  font-family: var(--og-font-bangla);
  font-size: 16px;
  color: var(--og-text);
  margin-bottom: 20px;
}
.og-hero-partners {
  display: flex;
  align-items: center;
  gap: 16px;
}
.og-hero-partners img { height: 24px; width: auto; filter: grayscale(30%); }
.og-hero-partners span {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  font-style: italic;
}
.og-hero-partners .aliexpress { color: #E53935; }

/* Hero nav arrows */
.og-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--og-white);
  color: var(--og-text);
  border: 1px solid var(--og-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: var(--og-shadow);
  transition: all 0.2s;
}
.og-hero-arrow:hover { background: var(--og-primary); color: white; border-color: var(--og-primary); }
.og-hero-arrow.prev { left: 90px; }
.og-hero-arrow.next { right: 16px; }
.og-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 20;
}
.og-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.og-hero-dot.active { background: var(--og-primary); width: 24px; border-radius: 4px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.og-trust-strip {
  background: var(--og-white);
  border-top: 1px solid var(--og-border);
  border-bottom: 1px solid var(--og-border);
  padding: 14px 0;
}
.og-trust-strip .og-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.og-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--og-text);
}
.trust-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.og-section { padding: 24px 0; background: var(--og-bg); }
.og-section.og-section-white { background: var(--og-white); }
.og-section.og-section-dark { background: var(--og-header-bg); color: white; }

.og-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.og-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--og-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.og-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--og-primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.og-section-dark .og-section-title { color: white; }
.og-view-all {
  font-size: 12px;
  color: var(--og-primary);
  font-weight: 500;
  border: 1px solid var(--og-primary);
  padding: 5px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}
.og-view-all:hover { background: var(--og-primary); color: white; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.og-products-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.og-products-scroll::-webkit-scrollbar { display: none; }

.og-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.og-products-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.og-products-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }

.og-product-card {
  background: var(--og-card-bg);
  border-radius: var(--og-radius);
  border: 1px solid var(--og-border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  flex-shrink: 0;
  width: 190px;
}
.og-products-grid .og-product-card { width: auto; }
.og-product-card:hover {
  box-shadow: var(--og-shadow-md);
  transform: translateY(-2px);
}

/* Product image box */
.og-product-img {
  aspect-ratio: 1 / 1;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}
.og-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.og-product-card:hover .og-product-img img { transform: scale(1.05); }

/* Product badge */
.og-product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--og-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.og-product-badge.badge-new { background: var(--og-badge-new); }
.og-product-badge.badge-hot { background: var(--og-badge-hot); }

/* Wishlist quick button */
.og-product-wish {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  border: 1px solid var(--og-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}
.og-product-card:hover .og-product-wish { opacity: 1; }
.og-product-wish svg { width: 14px; height: 14px; color: var(--og-text-muted); }

/* Product info */
.og-product-info { padding: 10px 12px 12px; }
.og-product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--og-text);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.og-product-name:hover { color: var(--og-primary); }
.og-product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.og-price-current {
  font-size: 15px;
  font-weight: 700;
  color: var(--og-primary);
}
.og-price-original {
  font-size: 12px;
  color: var(--og-text-muted);
  text-decoration: line-through;
}
.og-price-discount {
  font-size: 11px;
  color: var(--og-red);
  font-weight: 600;
}

.og-product-add-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 7px 0;
  background: var(--og-primary);
  color: white;
  border: none;
  border-radius: var(--og-radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}
.og-product-add-btn:hover { background: var(--og-primary-dark); }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.og-category-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.og-category-card {
  background: var(--og-card-bg);
  border: 1px solid var(--og-border);
  border-radius: var(--og-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.og-category-card:hover {
  border-color: var(--og-primary);
  box-shadow: 0 0 0 1px var(--og-primary);
  transform: translateY(-2px);
}
.og-category-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.og-category-card span {
  font-size: 12px;
  font-weight: 500;
  color: var(--og-text);
  line-height: 1.3;
}
.og-category-card:hover span { color: var(--og-primary); }

/* ============================================================
   BANNER STRIP ("New Arrivals. Fresh Innovation.")
   ============================================================ */
.og-banner-strip {
  background: var(--og-primary);
  color: white;
  padding: 20px 0;
  text-align: center;
}
.og-banner-strip .og-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.og-banner-strip-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: white;
}
.og-banner-strip-text p {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 4px;
}

/* ============================================================
   PROMO BANNERS  (3-column coloured)
   ============================================================ */
.og-promo-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.og-promo-card {
  border-radius: var(--og-radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.og-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.og-promo-card-body {
  position: relative;
  z-index: 1;
  color: white;
}
.og-promo-card-body h3 { font-size: 16px; font-weight: 700; }
.og-promo-card-body p { font-size: 12px; opacity: 0.85; margin-top: 4px; }
.og-promo-card-body a {
  display: inline-block;
  margin-top: 10px;
  background: white;
  color: var(--og-text);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 4px;
}

/* ============================================================
   PRODUCT REQUEST FORM
   ============================================================ */
.og-product-request { background: var(--og-white); padding: 40px 0; }
.og-product-request .og-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.og-request-info h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--og-dark);
  margin-bottom: 12px;
}
.og-request-info p {
  font-size: 14px;
  color: var(--og-text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.og-request-features { display: flex; flex-direction: column; gap: 10px; }
.og-request-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--og-text);
}
.og-request-feature::before {
  content: '✓';
  color: var(--og-primary);
  font-weight: 700;
  flex-shrink: 0;
}
.og-request-form { display: flex; flex-direction: column; gap: 14px; }
.og-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--og-text);
  margin-bottom: 5px;
}
.og-form-group input,
.og-form-group textarea,
.og-form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--og-border);
  border-radius: var(--og-radius-sm);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--og-white);
  color: var(--og-text);
}
.og-form-group input:focus,
.og-form-group textarea:focus { border-color: var(--og-primary); }
.og-form-group textarea { min-height: 90px; resize: vertical; }
.og-form-submit {
  background: var(--og-primary);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: var(--og-radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.og-form-submit:hover { background: var(--og-primary-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.og-footer {
  background: var(--og-footer-bg);
  color: var(--og-footer-text);
}
.og-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 48px 24px 32px;
}
.og-footer-col {}

/* Brand column */
.og-footer-brand .custom-logo-link img,
.og-footer-brand img { height: 36px; width: auto; }
.og-footer-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--og-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.og-footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--og-footer-text);
  margin-top: 14px;
  margin-bottom: 20px;
  max-width: 280px;
}
.og-footer-social {
  display: flex;
  gap: 10px;
}
.og-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--og-white);
  transition: background 0.2s;
}
.og-footer-social a:hover { background: var(--og-primary); }

.og-footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--og-footer-head);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.og-footer-links { display: flex; flex-direction: column; gap: 12px; }
.og-footer-links a {
  font-size: 13px;
  color: var(--og-footer-text);
  transition: color 0.2s;
}
.og-footer-links a:hover { color: var(--og-white); padding-left: 4px; }

/* Contact column */
.og-footer-address {
  font-size: 13px;
  line-height: 1.6;
  color: var(--og-footer-text);
  margin-bottom: 12px;
}
.og-footer-label {
  color: var(--og-primary);
  font-weight: 600;
}
.og-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.og-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.og-footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240,90,40,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--og-primary);
}
.og-footer-contact-list strong {
  display: block;
  font-size: 11px;
  color: var(--og-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.og-footer-contact-list span {
  font-size: 13px;
  color: var(--og-footer-text);
}

/* Footer bottom bar */
.og-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.og-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 24px;
  max-width: var(--og-container);
  margin: 0 auto;
}
.og-footer-bottom p {
  font-size: 12px;
  color: var(--og-footer-text);
}
.og-footer-pay {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--og-footer-text);
}
.og-pay-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.og-pay-icon {
  background: rgba(255,255,255,0.12);
  color: var(--og-white);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 3px;
}

/* ============================================================
   SHOP / ARCHIVE PAGES
   ============================================================ */
.og-shop-wrap { padding: 28px 0; }
.og-shop-wrap .og-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.og-sidebar { position: sticky; top: 90px; }
.og-sidebar .widget {
  background: var(--og-card-bg);
  border: 1px solid var(--og-border);
  border-radius: var(--og-radius);
  padding: 18px;
  margin-bottom: 16px;
}
.og-sidebar .widget-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--og-dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--og-border);
}

.og-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.og-shop-toolbar .woocommerce-ordering select {
  border: 1px solid var(--og-border);
  border-radius: var(--og-radius-sm);
  padding: 6px 10px;
  font-size: 13px;
  outline: none;
}
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .og-products-grid { grid-template-columns: repeat(4, 1fr); }
  .og-category-grid { grid-template-columns: repeat(6, 1fr); }
  .og-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .og-header-main { flex-wrap: wrap; gap: 10px; padding: 10px 0; }
  .og-search { order: 3; max-width: 100%; width: 100%; }
  .og-header-icons { gap: 4px; }
  .og-header-pill { display: none; }
  .og-hero-inner { flex-direction: column; padding: 30px 60px 30px 40px; }
  .og-hero-image-wrap { min-height: 200px; }
  .og-hero-title { font-size: 28px; }
  .og-products-grid { grid-template-columns: repeat(2, 1fr); }
  .og-category-grid { grid-template-columns: repeat(4, 1fr); }
  .og-promo-banners { grid-template-columns: 1fr; }
  .og-footer-inner { grid-template-columns: 1fr; }
  .og-product-request .og-container { grid-template-columns: 1fr; }
  .og-shop-wrap .og-container { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .og-hero-title { font-size: 22px; }
  .og-products-grid { grid-template-columns: repeat(2, 1fr); }
  .og-category-grid { grid-template-columns: repeat(3, 1fr); }
  .og-footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce-page .woocommerce { max-width: 100%; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--og-primary) !important;
  color: white !important;
  border-radius: var(--og-radius-sm) !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--og-primary-dark) !important;
}
.woocommerce .star-rating span::before { color: #FFC107; }

/* Hello Elementor overrides */
.site-header { display: none !important; }
.site-footer { display: none !important; }
