/*
 * United Gold India – Main Stylesheet
 * WordPress Theme: unitedgold
 * Author: Custom Theme Build
 * Version: 1.0
 *
 * TABLE OF CONTENTS
 * 1.  Reset & Base
 * 2.  CSS Variables
 * 3.  Typography
 * 4.  Utility Classes
 * 5.  Buttons
 * 6.  Badges & Tags
 * 7.  Top Bar
 * 8.  Header & Navigation
 * 9.  Hero Section
 * 10. Section Headings
 * 11. Category Cards (Homepage)
 * 12. Brand Section
 * 13. Why Choose Us
 * 14. CTA Banner
 * 15. Footer
 * 16. Breadcrumb
 * 17. Category Page Hero
 * 18. Category Filter Pills
 * 19. Sidebar Filters
 * 20. Product Grid & Cards
 * 21. Pagination
 * 22. Product Detail Page
 * 23. Spec Table
 * 24. Thumbnail Gallery
 * 25. Related Products
 * 26. About Page
 * 27. Contact Page
 * 28. Responsive – Tablet (max 1024px)
 * 29. Responsive – Mobile (max 768px)
 */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   2. CSS VARIABLES
   ============================================================ */
:root {
  /* Brand Colors */
  --color-pink:       #E0457B;
  --color-orange:     #F5A623;
  --color-navy:       #1A1A2E;
  --color-navy-mid:   #2D1B3D;
  --color-navy-dark:  #111118;
  --color-charcoal:   #3A3A3A;
  --color-white:      #FFFFFF;
  --color-green:      #25D366;

  /* Text */
  --color-text:       #3A3A3A;
  --color-text-mid:   #666666;
  --color-text-light: #888888;
  --color-text-muted: #AAAAAA;

  /* Backgrounds */
  --color-bg-light:   #F9F9F9;
  --color-bg-pink:    #FDF0F4;
  --color-bg-orange:  #FFF8EC;

  /* Borders */
  --color-border:     #F0F0F0;
  --color-border-mid: #EEEEEE;

  /* Gradients */
  --grad-brand:       linear-gradient(135deg, #F5A623 0%, #E0457B 100%);
  --grad-hero:        linear-gradient(135deg, #1A1A2E 0%, #2D1B3D 60%, #3D1A2E 100%);

  /* Typography */
  --font-primary:     'Inter', sans-serif;
  --text-xs:          11px;
  --text-sm:          12px;
  --text-base:        14px;
  --text-md:          15px;
  --text-lg:          18px;
  --text-xl:          22px;
  --text-2xl:         28px;
  --text-3xl:         32px;
  --text-4xl:         40px;
  --text-5xl:         44px;

  /* Spacing */
  --space-xs:         8px;
  --space-sm:         12px;
  --space-md:         16px;
  --space-lg:         24px;
  --space-xl:         32px;
  --space-2xl:        48px;
  --space-3xl:        72px;

  /* Layout */
  --container-max:    1100px;
  --page-padding:     48px;
  --radius-sm:        8px;
  --radius-md:        12px;
  --radius-lg:        16px;
  --radius-xl:        20px;
  --radius-full:      9999px;

  /* Shadows */
  --shadow-sm:        0 2px 12px rgba(0,0,0,0.06);
  --shadow-card:      0 4px 16px rgba(0,0,0,0.06);
  --shadow-hover:     0 12px 32px rgba(224,69,123,0.12);

  /* Transitions */
  --transition:       0.2s ease;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-charcoal);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p {
  line-height: 1.8;
  color: var(--color-text-mid);
}

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-bg {
  background: var(--grad-brand);
}

.text-center { text-align: center; }
.text-white  { color: var(--color-white); }

.section-pad {
  padding: var(--space-3xl) var(--page-padding);
}

.section-pad-sm {
  padding: var(--space-2xl) var(--page-padding);
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
}

.dot-accent {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dot-pink  { background: var(--color-pink); }
.dot-orange { background: var(--color-orange); }
.dot-grad  { background: var(--grad-brand); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--color-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-outline-pink {
  background: var(--color-bg-pink);
  color: var(--color-pink);
  border: 1px solid rgba(224,69,123,0.25);
}

.btn-sm {
  padding: 7px 16px;
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 13px 28px;
  font-size: var(--text-md);
}

/* ============================================================
   6. BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.badge-ug {
  background: var(--color-bg-pink);
  color: var(--color-pink);
  border: 1px solid rgba(224,69,123,0.2);
}

.badge-radco {
  background: var(--color-bg-orange);
  color: #c47d00;
  border: 1px solid rgba(245,166,35,0.3);
}

.badge-stock {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid rgba(46,125,50,0.2);
}

.badge-watt {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid rgba(21,101,192,0.2);
}

.section-tag {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: 10px;
}

.hero-pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-pink);
  background: rgba(224,69,123,0.15);
  border: 1px solid rgba(224,69,123,0.25);
  margin-bottom: 18px;
}

/* ============================================================
   7. TOP BAR
   ============================================================ */
.top-bar {
  background: var(--color-charcoal);
  padding: 7px var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar span {
  font-size: var(--text-sm);
  color: #bbbbbb;
}

/* ============================================================
   8. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 10px var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.site-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #555555;
  transition: color var(--transition);
}

.site-nav a:hover {
  color: var(--color-pink);
  opacity: 1;
}

.site-nav a.active {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  background: var(--grad-hero);
  padding: 80px var(--page-padding);
  position: relative;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__orb--top {
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(245,166,35,0.08);
}

.hero__orb--bottom {
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: rgba(224,69,123,0.08);
}

.hero__content {
  position: relative;
  max-width: 560px;
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}

.hero__stat {
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hero__stat:not(:first-child) {
  padding-left: 32px;
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-number {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* ============================================================
   10. SECTION HEADINGS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: 10px;
}

.section-header p {
  font-size: var(--text-md);
  color: var(--color-text-light);
  max-width: 440px;
  margin: 0 auto;
}

/* ============================================================
   11. CATEGORY CARDS (HOMEPAGE)
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}

.cat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  color: inherit;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  opacity: 1;
}

.cat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(224,69,123,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.cat-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}

.cat-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   12. BRAND SECTION
   ============================================================ */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.brand-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.brand-card--light {
  background: var(--color-white);
  border: 1px solid var(--color-border-mid);
}

.brand-card--dark {
  background: var(--color-navy);
  border: 1px solid #2a2a3e;
}

.brand-card__name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.brand-card__segment {
  font-size: var(--text-sm);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.brand-card__divider {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.brand-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.brand-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.brand-card__link {
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================
   13. WHY CHOOSE US
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.trust-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.trust-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(224,69,123,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.trust-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   14. CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.cta-banner__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.cta-banner__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy);
  padding: 56px var(--page-padding) 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: var(--container-max);
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  
  
}

.footer-about {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: border-color var(--transition), color var(--transition);
}

.footer-social-link:hover {
  border-color: var(--color-pink);
  color: var(--color-pink);
  opacity: 1;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-pink);
  opacity: 1;
}

.footer-links a.active {
  color: var(--color-pink);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   16. BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--color-bg-light);
  padding: 12px var(--page-padding);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumb__list a {
  color: var(--color-text-muted);
}

.breadcrumb__list a:hover {
  color: var(--color-pink);
  opacity: 1;
}

.breadcrumb__sep {
  color: var(--color-text-muted);
}

.breadcrumb__current {
  color: var(--color-pink);
}

/* ============================================================
   17. CATEGORY PAGE HERO
   ============================================================ */
.cat-hero {
  background: var(--grad-hero);
  padding: 52px var(--page-padding);
  position: relative;
  overflow: hidden;
}

.cat-hero__orb-tr {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(245,166,35,0.07);
  pointer-events: none;
}

.cat-hero__orb-bl {
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(224,69,123,0.07);
  pointer-events: none;
}

.cat-hero__content {
  position: relative;
}

.cat-hero__title {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
}

.cat-hero__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.8;
}

/* ============================================================
   18. CATEGORY FILTER PILLS
   ============================================================ */
.cat-nav {
  padding: 18px var(--page-padding);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.cat-nav__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-right: 6px;
}

.cat-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--color-border-mid);
  color: var(--color-text-mid);
  background: var(--color-white);
  transition: all var(--transition);
  text-decoration: none;
}

.cat-pill:hover {
  border-color: var(--color-pink);
  color: var(--color-pink);
  opacity: 1;
}

.cat-pill.active {
  background: var(--grad-brand);
  color: var(--color-white);
  border-color: transparent;
}

/* ============================================================
   19. SIDEBAR FILTERS
   ============================================================ */
.catalog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 600px;
}

.sidebar {
  border-right: 1px solid var(--color-border);
  padding: 28px 24px;
  background: #fafafa;
}

.sidebar__group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border-mid);
}

.sidebar__group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sidebar__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555555;
  margin-bottom: 10px;
  cursor: pointer;
}

.sidebar__label:last-child {
  margin-bottom: 0;
}

.sidebar__label input[type="checkbox"] {
  accent-color: var(--color-pink);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* ============================================================
   20. PRODUCT GRID & CARDS
   ============================================================ */
.products-area {
  padding: 28px 36px;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.products-count {
  font-size: 13px;
  color: var(--color-text-muted);
}

.products-count strong {
  color: var(--color-charcoal);
}

.products-sort {
  font-size: var(--text-sm);
  color: #555555;
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  background: var(--color-white);
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* WordPress: the loop will output .product-card elements */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-card__thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* WordPress: replace .product-card__thumb bg with actual product image */
.product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-card__thumb img {
  transform: scale(1.04);
}

.product-card__thumb-placeholder {
  opacity: 0.35;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
}

.product-card__body {
  padding: 16px;
}

.product-card__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card__link {
  font-size: var(--text-sm);
  color: var(--color-pink);
  font-weight: 500;
}

/* ============================================================
   21. PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.pagination__btn:hover {
  border-color: var(--color-pink);
  color: var(--color-pink);
  opacity: 1;
}

.pagination__btn.active {
  background: var(--grad-brand);
  color: var(--color-white);
  border-color: transparent;
  font-weight: 600;
}

/* ============================================================
   22. PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  padding: 52px var(--page-padding);
  background: var(--color-white);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.product-detail__sku {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-detail__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.3;
  margin-bottom: 10px;
}

.product-detail__badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.product-detail__desc {
  font-size: 14px;
  color: var(--color-text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}

.product-highlights {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.product-highlights__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-highlights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: #555555;
}

.product-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.product-detail__actions .btn {
  justify-content: center;
}

.product-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ============================================================
   23. SPEC TABLE
   ============================================================ */
.specs-section {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.specs-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--color-border-mid);
}

.tab-btn {
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.tab-btn.active {
  color: var(--color-pink);
  border-bottom-color: var(--color-pink);
  background: var(--color-white);
  font-weight: 600;
}

.tab-btn:hover:not(.active) {
  color: var(--color-charcoal);
}

.tab-panel {
  display: none;
  padding: 32px 28px;
  background: var(--color-white);
}

.tab-panel.active {
  display: block;
}

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.spec-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
}

.spec-label {
  color: var(--color-text-muted);
  width: 160px;
  flex-shrink: 0;
}

.spec-value {
  font-weight: 500;
  color: var(--color-charcoal);
}

/* ============================================================
   24. THUMBNAIL GALLERY
   ============================================================ */
.product-gallery {
  position: sticky;
  top: 80px;
}

.gallery-main {
  border-radius: var(--radius-xl);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  border: 1px solid #f0e0f0;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f0ff, #fce4ee);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-main__badge-left {
  position: absolute;
  top: 16px;
  left: 16px;
}

.gallery-main__badge-right {
  position: absolute;
  top: 16px;
  right: 16px;
}

.gallery-main__placeholder {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: var(--text-xs);
  color: #c0a0c8;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.active {
  border-color: var(--color-pink);
}

.gallery-thumb:hover {
  border-color: var(--color-orange);
}

/* ============================================================
   25. RELATED PRODUCTS
   ============================================================ */
.related-products {
  padding: 60px var(--page-padding);
  background: var(--color-white);
}

.related-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.related-products__header h2 {
  font-size: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.rel-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.rel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(224,69,123,0.1);
}

.rel-card__thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rel-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rel-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
}

.rel-card__body {
  padding: 12px;
}

.rel-card__meta {
  font-size: 10px;
  color: var(--color-text-muted);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rel-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.rel-card__link {
  font-size: var(--text-xs);
  color: var(--color-pink);
  font-weight: 500;
}

/* ============================================================
   26. ABOUT PAGE
   ============================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}

.about-stat-card--dark {
  background: var(--grad-hero);
  grid-column: 1 / -1;
  text-align: left;
  padding: 28px 22px;
}

.about-stat-card--white {
  background: var(--color-white);
  border: 1px solid var(--color-border-mid);
}

.about-stat-card--pink {
  background: var(--color-bg-pink);
  border: 1px solid rgba(224,69,123,0.15);
  grid-column: 1 / -1;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.vm-card {
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.vm-card--light {
  background: var(--color-white);
  border: 1px solid var(--color-border-mid);
}

.vm-card--dark {
  background: var(--color-navy);
  border: 1px solid #2a2a3e;
}

.vm-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vm-card__icon--light {
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(224,69,123,0.12));
}

.vm-card__icon--dark {
  background: rgba(245,166,35,0.12);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.strength-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.strength-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(224,69,123,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-sell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.why-sell-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-sell-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-sell-item__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
  font-weight: 600;
  font-size: 13px;
}

/* ============================================================
   27. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info__block {
  margin-bottom: 28px;
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: 10px;
}

.contact-info__text {
  font-size: 14px;
  color: var(--color-text-mid);
  line-height: 1.8;
}

.contact-info__text a {
  color: var(--color-text-mid);
}

.contact-info__text a:hover {
  color: var(--color-pink);
  opacity: 1;
}

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.contact-form__title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.contact-form__subtitle {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-charcoal);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 3px rgba(224,69,123,0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  font-size: 14px;
  margin-top: 6px;
}

/* ============================================================
   28. RESPONSIVE – TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --page-padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail__grid {
    gap: 40px;
  }
}

/* ============================================================
   29. RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --page-padding: 20px;
    --text-5xl: 32px;
    --text-4xl: 28px;
    --text-3xl: 24px;
  }

  /* Top bar */
  .top-bar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 8px var(--page-padding);
  }

  /* Header */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px var(--page-padding);
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  /* Hero */
  .hero {
    padding: 52px var(--page-padding);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero__stat {
    border-right: none;
    padding: 0;
  }

  /* Grids */
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA Banner */
  .cta-banner {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }

  .cta-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Category page */
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  /* Product detail */
  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .spec-table {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about-story-grid,
  .vm-grid,
  .why-sell-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HERO SPLIT LAYOUT + ANIMATED CATEGORY GRID
   ============================================================ */

/* Override hero to be a split two-column layout */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 72px var(--page-padding);
  min-height: 520px;
}

/* Orbs stay absolutely positioned */
.hero--split .hero__orb {
  position: absolute;
}

/* ── RIGHT PANEL: category grid ── */
.hero__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* Base card */
.hero__cat-card {
  position: relative;
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;

  /* Entrance animation */
  opacity: 0;
  transform: translateY(16px);
  animation: catCardIn 0.5s ease forwards;
}

.hero__cat-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(224,69,123,0.4);
  background: rgba(224,69,123,0.1);
  box-shadow: 0 8px 32px rgba(224,69,123,0.2), 0 0 0 1px rgba(224,69,123,0.15);
  opacity: 1;
}

/* Staggered entrance delays */
.hero__cat-card--1 { animation-delay: 0.1s; }
.hero__cat-card--2 { animation-delay: 0.2s; }
.hero__cat-card--3 { animation-delay: 0.3s; }
.hero__cat-card--4 { animation-delay: 0.4s; }
.hero__cat-card--5 { animation-delay: 0.5s; }
.hero__cat-card--6 { animation-delay: 0.6s; }

@keyframes catCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow pulse on the icon bg */
.hero__cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(245,166,35,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero__cat-card:hover::before {
  opacity: 1;
}

/* Icon circle */
.hero__cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(224,69,123,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5A623;
  margin-bottom: 4px;
  transition: background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.hero__cat-card:hover .hero__cat-icon {
  background: linear-gradient(135deg, rgba(245,166,35,0.3), rgba(224,69,123,0.3));
  color: #fff;
}

/* Text */
.hero__cat-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.hero__cat-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}

/* Arrow — hidden by default, slides in on hover */
.hero__cat-arrow {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 13px;
  color: var(--color-pink);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero__cat-card:hover .hero__cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Subtle floating animation on idle cards */
.hero__cat-card--1,
.hero__cat-card--4 { animation-name: catCardIn, floatA; animation-duration: 0.5s, 4s; animation-delay: 0.1s, 1s; animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; animation-timing-function: ease, ease-in-out; }

.hero__cat-card--2,
.hero__cat-card--5 { animation-name: catCardIn, floatB; animation-duration: 0.5s, 4s; animation-delay: 0.2s, 1.5s; animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; animation-timing-function: ease, ease-in-out; }

.hero__cat-card--3,
.hero__cat-card--6 { animation-name: catCardIn, floatA; animation-duration: 0.5s, 4s; animation-delay: 0.3s, 2s; animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; animation-timing-function: ease, ease-in-out; }

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(-5px); }
  50%       { transform: translateY(0); }
}

/* Pause float on hover — let the hover transform take over */
.hero__cat-card:hover {
  animation-play-state: paused;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero--split {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 56px var(--page-padding);
  }
  .hero__cats {
    gap: 10px;
  }
  .hero__cat-card {
    padding: 16px 14px;
  }
  .hero__cat-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px var(--page-padding);
    gap: 36px;
  }
  .hero__cats {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
  }
  .hero__cat-card {
    padding: 14px 12px;
  }
  .hero__cat-name {
    font-size: 12px;
  }
  .hero__cat-sub {
    display: none;
  }
}

/* ============================================================
   FIXES — v1.1.1
   ============================================================ */

/* ── FIX: Logo positioning ── */
/* WordPress wraps custom logo in .custom-logo-link and .wp-block-site-logo */
.site-logo,
.site-logo a,
.site-logo .custom-logo-link,
.site-logo figure,
.wp-block-site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img,
.site-logo .custom-logo-link img,
.custom-logo-link img {
  height: 64px !important;
  width: auto !important;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* Ensure header stays left-logo, right-nav */
.site-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

/* ── FIX: Hide page title on front page ── */
body.home .page-title,
body.home .entry-title,
body.home h1.page-title,
body.home .cat-hero__title:not(.cat-hero .cat-hero__title) {
  display: none;
}

/* ── FIX: Hide breadcrumb on front page ── */
body.home .breadcrumb {
  display: none;
}

/* ── FIX: Remove default page padding on front page ── */
body.home .section-pad:first-of-type {
  padding-top: 0;
}

/* ── FIX: WPForms / Contact Form 7 button styling ── */
.wpcf7-submit,
.wpforms-submit {
  background: linear-gradient(135deg, #F5A623, #E0457B) !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: 24px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
  transition: opacity 0.2s !important;
}
.wpcf7-submit:hover,
.wpforms-submit:hover { opacity: 0.9 !important; }

/* ── FIX: WPForms input styling ── */
.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100% !important;
  padding: 11px 16px !important;
  border: 1px solid #eee !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  color: #3A3A3A !important;
  font-family: 'Inter', sans-serif !important;
  outline: none !important;
  transition: border-color 0.2s !important;
}
.wpforms-field input:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #E0457B !important;
  box-shadow: 0 0 0 3px rgba(224,69,123,0.1) !important;
}

/* ── FIX: Top bar stays full width ── */
.top-bar {
  width: 100%;
  position: relative;
  z-index: 101;
}

/* ── FIX: Prevent old theme CSS bleed ── */
.ghumti-slider,
.ghumti-banner,
[class*="ghumti-"] {
  display: none !important;
}

/* ── TOP BAR SOCIAL ICONS ── */
.top-bar__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #bbb;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.top-bar__social-link:hover {
  opacity: 1;
}

/* Facebook hover */
.top-bar__social-link:nth-child(1):hover {
  color: #fff;
  background: #1877F2;
  border-color: #1877F2;
}

/* Instagram hover */
.top-bar__social-link:nth-child(2):hover {
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
}

/* WhatsApp hover */
.top-bar__social-link:nth-child(3):hover {
  color: #fff;
  background: #25D366;
  border-color: #25D366;
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: row;
    justify-content: space-between;
  }
  .top-bar__socials {
    gap: 16px;
  }
  .top-bar__social-link {
    width: 28px;
    height: 28px;
  }
}

/* ============================================================
   SOCIAL ICONS — Top Bar, Footer, Contact Page
   ============================================================ */

/* ── TOP BAR: increase gap between icons ── */
.top-bar__socials {
  gap: 20px !important;
}

.top-bar__social-link {
  width: 30px;
  height: 30px;
}

/* ── FOOTER SOCIAL ICONS ── */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-link:hover { opacity: 1; }

.footer-social-link--fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

.footer-social-link--ig:hover {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  border-color: #dc2743;
  color: #fff;
}

.footer-social-link--wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* ── CONTACT PAGE SOCIAL ICONS ── */
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-mid);
  color: var(--color-text-mid);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--color-white);
}

.contact-social-link span {
  font-size: 13px;
}

.contact-social-link:hover { opacity: 1; transform: translateX(4px); }

.contact-social-link--fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

.contact-social-link--ig:hover {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  border-color: #dc2743;
  color: #fff;
}

.contact-social-link--wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* ============================================================
   PRODUCT GRID FIXES — v1.2
   ============================================================ */

/* WooCommerce outputs <ul class="products"> — make IT the grid.
   Previously it sat inside .product-grid causing a nested grid
   that squeezed all products into one column's width. */
.products-area ul.products,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

/* WC adds .columns-N classes — neutralise its float/width rules */
.woocommerce ul.products li.product,
.woocommerce ul.products .product-card {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  clear: none !important;
}

/* Cards stretch to equal height in each row */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Push the footer link to the bottom so cards align */
.product-card__footer {
  margin-top: auto;
  padding-top: 10px;
}

/* ── IMAGE FITTING ──
   Packaging shots are not cut-outs — 'cover' was cropping them.
   'contain' shows the whole image, with padding and a soft backdrop. */
.product-card__thumb {
  height: 220px;
  background: linear-gradient(135deg, #faf7fd, #fdf2f6);
  padding: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__thumb img {
  transform: scale(1.05);
}

/* ── BRAND BADGE ──
   Was overlapping the artwork. Move it clear of the image edge
   and give it a solid backdrop so it stays readable on any photo. */
.product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.product-card__badge .badge {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* ── CARD META ──
   WC prints the full category list ("CHARGERS, UNITED GOLD") which
   duplicates the brand badge. Trim it to a single tidy line. */
.product-card__meta {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__name {
  min-height: 38px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-area ul.products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .products-area ul.products,
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
  .product-card__thumb { height: 240px; }
}

/* ============================================================
   CONNECT PAGE (QR landing) — mobile-first
   ============================================================ */
.connect-page {
  background: var(--grad-hero);
  min-height: 78vh;
  padding: 44px 20px 56px;
  position: relative;
  overflow: hidden;
}
.connect-page__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.connect-page__orb--a { top: -70px; right: -70px; width: 260px; height: 260px; background: rgba(245,166,35,0.10); }
.connect-page__orb--b { bottom: -80px; left: -60px; width: 240px; height: 240px; background: rgba(224,69,123,0.10); }

.connect-card {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}
.connect-card__logo {
  background: #fff;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.connect-card__logo img { width: 100%; height: auto; object-fit: contain; }

.connect-card__tagline {
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.connect-card__intro {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.connect-links { display: flex; flex-direction: column; gap: 12px; }

.connect-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  text-align: left;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.connect-link:hover,
.connect-link:active {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  opacity: 1;
}

.connect-link__icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.10);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.connect-link__text { flex: 1; min-width: 0; }
.connect-link__text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.connect-link__text small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.connect-link__arrow {
  color: rgba(255,255,255,0.35);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.connect-link:hover .connect-link__arrow { transform: translateX(3px); color: #fff; }

/* Per-channel accents */
.connect-link--primary { background: var(--grad-brand); border-color: transparent; }
.connect-link--primary .connect-link__icon { background: rgba(255,255,255,0.22); }
.connect-link--primary .connect-link__text small { color: rgba(255,255,255,0.75); }
.connect-link--primary .connect-link__arrow { color: rgba(255,255,255,0.8); }
.connect-link--primary:hover { background: var(--grad-brand); filter: brightness(1.06); }

.connect-link--wa:hover   .connect-link__icon { background: #25D366; color: #fff; }
.connect-link--wa:hover   { border-color: rgba(37,211,102,0.45); }
.connect-link--ig:hover   .connect-link__icon { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.connect-link--ig:hover   { border-color: rgba(220,39,67,0.45); }
.connect-link--fb:hover   .connect-link__icon { background: #1877F2; }
.connect-link--fb:hover   { border-color: rgba(24,119,242,0.45); }
.connect-link--call:hover .connect-link__icon,
.connect-link--mail:hover .connect-link__icon { background: var(--grad-brand); }

.connect-card__extra {
  margin-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.connect-card__extra a { color: var(--color-orange); }

.connect-card__foot {
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.3);
}

/* The connect page is a standalone landing — trim site chrome.
   Uses the clean body class added via the body_class filter, because
   WordPress mangles auto-generated classes for templates in subfolders. */
.ug-connect .top-bar,
.ug-connect .breadcrumb { display: none; }

/* Safety net: constrain the logo even if a cached stylesheet is served,
   so the page degrades gracefully rather than showing a full-width logo. */
.connect-card__logo img { max-width: 100px; max-height: 100px; }

@media (min-width: 768px) {
  .connect-page { padding: 60px 20px 72px; }
}

/* ============================================================
   PRODUCT FILTERS — functional sidebar
   ============================================================ */
.ug-filter-form { display: block; }

.sidebar__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #555;
  margin-bottom: 9px;
  cursor: pointer;
  line-height: 1.35;
}
.sidebar__label-text { flex: 1; min-width: 0; }

/* Product count per filter option — tells shoppers what's behind
   each box before they tick it, and exposes empty options at a glance */
.sidebar__count {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--color-text-muted);
  background: #f2f2f4;
  border-radius: 10px;
  padding: 1px 7px;
  min-width: 22px;
  text-align: center;
}
.sidebar__label input:checked ~ .sidebar__count {
  background: var(--color-bg-pink);
  color: var(--color-pink);
}
.sidebar__label input:checked ~ .sidebar__label-text {
  color: var(--color-charcoal);
  font-weight: 500;
}

.sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-mid);
}
.ug-filter-apply { width: 100%; justify-content: center; }
.ug-filter-clear {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  text-decoration: underline;
}
.ug-filter-clear:hover { color: var(--color-pink); opacity: 1; }

.sidebar__empty {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Active filter chips above the product grid */
.ug-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}
.ug-active-filters__label {
  font-size: 12px;
  color: var(--color-text-muted);
}
.ug-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--color-bg-pink);
  color: var(--color-pink);
  border: 1px solid rgba(224,69,123,0.2);
  text-decoration: none;
}
.ug-chip:hover { background: var(--color-pink); color: #fff; opacity: 1; }
.ug-chip__x { font-size: 13px; line-height: 1; }

/* Mobile: collapse the sidebar behind a toggle so the grid leads */
.ug-filter-toggle { display: none; }

@media (max-width: 768px) {
  .ug-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 18px;
    margin-bottom: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-mid);
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-charcoal);
    font-family: inherit;
    cursor: pointer;
  }
  .sidebar { padding: 16px 20px; }
  .sidebar .ug-filter-form,
  .sidebar .sidebar__group { display: none; }
  .sidebar.is-open .ug-filter-form,
  .sidebar.is-open .sidebar__group { display: block; }
  .sidebar.is-open .ug-filter-form { margin-top: 14px; }
}

.ug-filter-form.is-loading { opacity: 0.5; pointer-events: none; transition: opacity 0.15s; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
