/* =============================================================================
   OC Gear Theme — Ported from Shopify Decor Theme
   Design System & Core Stylesheet
   ============================================================================= */

/* Google Fonts — Space Mono (body/heading/subheading) & Open Sans (accent) */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* =============================================================================
   1. CSS Custom Properties (Design Tokens from Shopify Decor settings_data.json)
   ============================================================================= */
:root {
  /* ---- Color Palette: Scheme 1 (Default / Primary) ---- */
  --oc-bg: #ffffff;
  --oc-fg: #121212;
  --oc-fg-heading: #121212;
  --oc-primary: rgba(0,0,0,0.81);
  --oc-primary-hover: #ffd400;
  --oc-border: rgba(0,0,0,0.06);
  --oc-shadow: #000000;

  /* Primary Button */
  --oc-btn-primary-bg: #ffd400;
  --oc-btn-primary-text: #121212;
  --oc-btn-primary-border: #254448;
  --oc-btn-primary-hover-bg: #121212;
  --oc-btn-primary-hover-text: #ffffff;
  --oc-btn-primary-hover-border: #121212;

  /* Secondary Button */
  --oc-btn-secondary-bg: #ffffff;
  --oc-btn-secondary-text: #254448;
  --oc-btn-secondary-border: #254448;
  --oc-btn-secondary-hover-bg: #254448;
  --oc-btn-secondary-hover-text: #ffffff;
  --oc-btn-secondary-hover-border: #254448;

  /* Input */
  --oc-input-bg: rgba(255,255,255,0.78);
  --oc-input-text: #333333;
  --oc-input-border: #dfdfdf;

  /* ---- Color Palette: Scheme 2 (Gray background) ---- */
  --oc-scheme2-bg: #f5f5f5;
  --oc-scheme2-fg: rgba(0,0,0,0.81);

  /* ---- Color Palette: Scheme 3 (Yellow accent) ---- */
  --oc-scheme3-bg: #ffd400;
  --oc-scheme3-fg: #121212;

  /* ---- Color Palette: Scheme 4 (Blue tint) ---- */
  --oc-scheme4-bg: #e1edf5;
  --oc-scheme4-fg: rgba(0,0,0,0.81);

  /* ---- Typography ---- */
  --font-body: 'Space Mono', monospace;
  --font-heading: 'Space Mono', monospace;
  --font-subheading: 'Space Mono', monospace;
  --font-accent: 'Open Sans', sans-serif;

  /* Font Sizes (from settings) */
  --fs-body: 14px;
  --fs-h1: 56px;
  --fs-h2: 48px;
  --fs-h3: 32px;
  --fs-h4: 24px;
  --fs-h5: 14px;
  --fs-h6: 12px;

  /* Line Heights */
  --lh-body: 1.6;
  --lh-h1: 1;
  --lh-h2: 1;
  --lh-h3: 1.1;
  --lh-h4: 1;

  /* ---- Layout ---- */
  --page-width: 1400px;
  --page-width-narrow: 900px;
  --sidebar-width: 250px;

  /* ---- Border Radius ---- */
  --radius-btn-primary: 8px;
  --radius-btn-secondary: 14px;
  --radius-card: 4px;
  --radius-badge: 100px;
  --radius-input: 4px;
  --radius-popover: 14px;

  /* ---- Spacing ---- */
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 32px;
  --gap-2xl: 48px;
  --gap-3xl: 64px;

  /* ---- Hover Effects ---- */
  --hover-lift: 4px;
  --hover-scale: 1.03;
  --hover-subtle-zoom: 1.015;
  --hover-transition: 0.25s ease-out;
  --surface-transition: 0.3s ease-out;

  /* ---- Z-Index Layers ---- */
  --z-base: 0;
  --z-flat: 1;
  --z-raised: 2;
  --z-sticky: 1000;
  --z-overlay: 2000;
  --z-drawer: 3000;
  --z-temp: 4000;
}

/* =============================================================================
   2. Reset & Base Styles
   ============================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--oc-fg);
  background-color: var(--oc-bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--oc-fg);
  text-decoration: none;
  transition: color var(--hover-transition);
}

a:hover {
  color: var(--oc-primary-hover);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--oc-fg-heading);
  margin: 0 0 0.25em;
  font-weight: 400;
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-h4); }
h5 { font-size: var(--fs-h5); font-family: var(--font-subheading); line-height: 1.2; }
h6 { font-size: var(--fs-h6); font-family: var(--font-subheading); line-height: 1.2; }

/* Responsive Headings */
@media (max-width: 768px) {
  h1 { font-size: clamp(28px, 6vw, var(--fs-h1)); }
  h2 { font-size: clamp(24px, 5vw, var(--fs-h2)); }
  h3 { font-size: clamp(20px, 4vw, var(--fs-h3)); }
}

/* =============================================================================
   3. Layout Utilities
   ============================================================================= */
.oc-container {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 576px) {
  .oc-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.oc-container--narrow {
  max-width: var(--page-width-narrow);
}

.oc-container--full {
  max-width: 100%;
  padding: 0;
}

#content,
#column-left,
#column-right {
  padding-bottom: 0 !important;
}

.oc-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
}

.oc-grid {
  display: grid;
  gap: var(--gap-md);
}

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

@media (max-width: 991px) {
  .oc-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .oc-grid--4, .oc-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .oc-grid--4, .oc-grid--3, .oc-grid--2 { grid-template-columns: 1fr; }
}

.oc-section {
  padding: var(--gap-2xl) 0;
}

/* =============================================================================
   4. Announcement Bar
   ============================================================================= */
.oc-announcement-bar {
  background: var(--oc-scheme3-bg);
  color: var(--oc-scheme3-fg);
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.81);
  position: relative;
  z-index: var(--z-sticky);
}

.oc-announcement-bar__track {
  display: flex;
  white-space: nowrap;
  animation: oc-marquee 25s linear infinite;
  gap: 3rem;
  padding: 10px 0;
}

.oc-announcement-bar__item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0 1.5rem;
  font-size: 13px;
  font-family: var(--font-subheading);
  letter-spacing: 0.03em;
  white-space: nowrap;
  position: relative;
}

.oc-announcement-bar__item::after {
  content: '✦';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  line-height: 1;
}

.oc-announcement-bar a {
  color: var(--oc-scheme3-fg);
}

@keyframes oc-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================================================
   5. Header & Navigation
   ============================================================================= */
.oc-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--oc-bg);
  border-bottom: 1px solid var(--oc-border);
  transition: box-shadow var(--surface-transition);
}

.oc-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Header Top Row */
.oc-header__top {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.oc-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-lg);
}

.oc-header__logo-text {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 500;
  color: var(--oc-fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
}

.oc-header__logo-text:hover {
  color: var(--oc-fg);
}

.oc-header__top-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Search Form (Pill design matching screenshot) */
.oc-header__search-wrap .oc-search__form {
  display: flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 25px;
  padding: 4px 16px;
  width: 260px;
  background: #ffffff;
  transition: border-color var(--hover-transition);
}

.oc-header__search-wrap .oc-search__form:focus-within {
  border-color: #121212;
}

.oc-header__search-wrap .oc-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 6px 0;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  color: var(--oc-input-text);
}

.oc-header__search-wrap .oc-search__btn {
  background: transparent;
  border: none;
  padding: 0 0 0 6px;
  cursor: pointer;
  color: #121212;
  font-size: 15px;
  display: flex;
  align-items: center;
}

/* Action Icons (Location, Ticket, Wishlist, Account, Cart) */
.oc-header__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.oc-header__icon-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #121212;
  font-size: 19px;
  text-decoration: none;
  transition: color var(--hover-transition);
}

.oc-header__icon-item svg {
  width: 24px;
  height: 24px;
  display: block;
}

.oc-header__icon-item svg.user-icon {
  width: 20px;
  height: 20px;
}

.oc-header__icon-item:hover {
  color: var(--oc-primary-hover);
}

/* Count Badges (Dark & Yellow) */
.oc-icon-badge {
  position: absolute;
  top: 0px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  line-height: 1;
}

.oc-icon-badge--dark {
  background: #121212;
  color: #ffffff;
}

.oc-icon-badge--yellow {
  background: #ffd400;
  color: #121212;
}

/* Account Dropdown */
.oc-header__account-wrap {
  position: relative;
}

.oc-account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: #ffffff;
  border: 1px solid var(--oc-border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--surface-transition);
  z-index: var(--z-overlay);
  list-style: none;
  margin: 0;
}

.oc-account-dropdown.is-active,
.oc-header__account-wrap:hover .oc-account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.oc-account-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #121212;
  text-decoration: none;
  transition: background var(--hover-transition);
}

.oc-account-dropdown a:hover {
  background: var(--oc-scheme2-bg);
}

/* Header Bottom Row */
.oc-header__bottom {
  padding: 10px 0;
  position: relative;
}

.oc-header__bottom-inner {
  display: flex;
  align-items: center;  
  gap: var(--gap-lg);
}

/* ALL COLLECTIONS Button */
.oc-all-collections {
  position: relative;
}

.oc-all-collections__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #121212;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all var(--hover-transition);
}

.oc-all-collections__btn:hover {
  border-color: #121212;
  background: #fafafa;
}

.oc-all-collections__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid var(--oc-border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--surface-transition);
  z-index: var(--z-overlay);
}

.oc-all-collections__dropdown.is-active,
.oc-all-collections:hover .oc-all-collections__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.oc-all-collections__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oc-all-collections__list a {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #121212;
  transition: background var(--hover-transition);
}

.oc-all-collections__list a:hover {
  background: var(--oc-scheme2-bg);
}

/* Navigation Links & Mega Menu */
.oc-nav {
  display: flex;
  align-items: center;
}

.oc-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oc-nav__item {
  position: static;
}

.oc-nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a2228;
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-nav__item:hover .oc-nav__link,
.oc-nav__item.is-active .oc-nav__link {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  color: #0b151f;
}

.oc-nav__badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Mega Menu Dropdown Container */
.oc-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 32px 0 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 990;
  pointer-events: none;
}

/* Invisible hover bridge to prevent mouseleave gap between nav link and megamenu */
.oc-megamenu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
  display: block;
}

.oc-nav__item:hover .oc-megamenu,
.oc-megamenu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mega Menu: Grid Layout (e.g. Shop Layouts) */
.oc-megamenu__grid {
  display: grid;
  grid-template-columns: repeat(var(--mm-cols, 5), 1fr);
  gap: 24px;
  align-items: stretch;
}

.oc-mm-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.oc-mm-card__thumb {
  border-radius: 14px;
  overflow: hidden;
  background: #081420;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.oc-mm-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-mm-card:hover .oc-mm-card__thumb {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.oc-mm-card:hover .oc-mm-card__thumb img {
  transform: scale(1.02);
}

.oc-mm-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a2228;
  text-align: center;
  margin-top: 14px;
  transition: color 0.2s ease;
}

.oc-mm-card__sub {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  margin-top: 2px;
}

.oc-mm-card:hover .oc-mm-card__title {
  color: #0284c7;
}

/* Mega Menu: Popular Brands Grid */
.oc-megamenu__brands-grid {
  display: grid;
  grid-template-columns: repeat(var(--mm-cols, 7), 1fr);
  gap: 24px 18px;
  align-items: center;
}

.oc-mm-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 16px 10px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.oc-mm-brand__logo-wrap {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}

.oc-mm-brand__logo {
  max-height: 42px;
  max-width: 110px;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.oc-mm-brand:hover {
  background: #f8fafc;
}

.oc-mm-brand:hover .oc-mm-brand__logo {
  transform: scale(1.1);
}

.oc-mm-brand__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e293b;
  text-align: center;
  transition: color 0.2s ease;
}

.oc-mm-brand:hover .oc-mm-brand__title {
  color: #0284c7;
}

/* Classic Dropdown */
.oc-nav__item--dropdown {
  position: relative !important;
}

.oc-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 990;
  pointer-events: none;
}

.oc-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
  display: block;
}

.oc-nav__item--dropdown:hover .oc-dropdown-menu,
.oc-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.oc-dropdown-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oc-dropdown-menu__list li {
  list-style: none;
}

.oc-dropdown-menu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-body);
  color: #1e293b;
  text-decoration: none;
  transition: all 0.18s ease;
}

.oc-dropdown-menu__list a:hover {
  background: #f8fafc;
  color: #0284c7;
  padding-left: 24px;
}

/* Mobile Nav Drawer Accordion Styles */
.oc-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.oc-mobile-nav__item {
  border-bottom: 1px solid #f1f5f9;
}

.oc-mobile-nav__item:last-child {
  border-bottom: none;
}

.oc-mobile-nav__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: left;
}

.oc-mobile-nav__link:hover,
.oc-mobile-nav__item.is-open > .oc-mobile-nav__toggle {
  color: #0284c7;
}

.oc-mobile-nav__arrow {
  font-size: 11px;
  color: #64748b;
  transition: transform 0.25s ease, color 0.2s ease;
  margin-left: auto;
}

.oc-mobile-nav__item.is-open > .oc-mobile-nav__toggle .oc-mobile-nav__arrow {
  transform: rotate(180deg);
  color: #0284c7;
}

.oc-mobile-nav__sublist {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin 0.3s ease;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-left: 2px solid transparent;
}

.oc-mobile-nav__sublist-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0 6px 12px;
}

.oc-mobile-nav__item.is-open > .oc-mobile-nav__sublist {
  grid-template-rows: 1fr;
  opacity: 1;
  margin: 0 0 10px 6px;
  border-left-color: #e2e8f0;
}

.oc-mobile-nav__sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  font-family: var(--font-body);
  border-radius: 6px;
  transition: all 0.18s ease;
}

.oc-mobile-nav__sublink:hover {
  color: #0284c7;
  background: #f8fafc;
  padding-left: 12px;
}

.oc-mobile-nav__subimg {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.oc-mobile-nav__subimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile Menu Toggle */
.oc-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: var(--gap-sm);
  color: var(--oc-fg);
}

@media (max-width: 991px) {
  .oc-header__top {
    padding: 12px 0;
  }
  .oc-header__top-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
    gap: 12px;
  }
  .oc-header__logo-text {
    font-size: 26px;
    flex-shrink: 0;
  }
  .oc-header__top-actions {
    gap: 0;
  }
  .oc-header__icons {
    gap: 12px;
  }
  .oc-header__icon-item {
    width: 34px;
    height: 34px;
  }
  .oc-header__icon-item svg {
    width: 22px;
    height: 22px;
  }
  .oc-header__icon-item svg.user-icon {
    width: 18.5px;
    height: 18.5px;
  }
  .oc-header__bottom {
    display: none !important;
  }
  .oc-nav {
    display: none !important;
  }
  .oc-header__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    font-size: 20px;
    color: #121212;
  }
}

@media (max-width: 480px) {
  .oc-header__top {
    padding: 10px 0;
  }
  .oc-header__top-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 8px;
  }
  .oc-header__logo-text {
    font-size: 24px;
  }
  .oc-header__icons {
    gap: 10px;
  }
  .oc-header__icon-item {
    width: 32px;
    height: 32px;
  }
  .oc-header__icon-item svg {
    width: 21px;
    height: 21px;
  }
  .oc-header__icon-item svg.user-icon {
    width: 17.5px;
    height: 17.5px;
  }
  .oc-header__menu-toggle {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }
}

/* Mobile Category Accordion in Drawer */
.oc-mob-cat-wrap {
  margin: 16px 0 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.oc-mob-cat-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #f8fafc;
  border: none;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f172a;
  cursor: pointer;
  transition: background 0.2s ease;
}

.oc-mob-cat-toggle__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.oc-mob-cat-toggle__arrow {
  font-size: 11px;
  color: #64748b;
  transition: transform 0.25s ease;
}

.oc-mob-cat-toggle.is-open .oc-mob-cat-toggle__arrow {
  transform: rotate(180deg);
}

.oc-mob-cat-list {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid transparent;
}

.oc-mob-cat-list-inner {
  min-height: 0;
  padding: 6px 12px 10px;
}

.oc-mob-cat-list.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  border-top-color: #f1f5f9;
}

.oc-mob-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px;
  text-decoration: none;
  color: #334155;
  font-size: 12.5px;
  font-family: var(--font-body);
  border-bottom: 1px solid #f8fafc;
  transition: color 0.2s ease;
}

.oc-mob-cat-item:last-child {
  border-bottom: none;
}

.oc-mob-cat-item__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #64748b;
  font-size: 14px;
}

.oc-mob-cat-item__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.oc-mob-cat-item__name {
  flex: 1;
  font-weight: 600;
}

.oc-mob-cat-item__badge {
  font-size: 10px;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
}

.oc-mob-cat-item:hover {
  color: #0284c7;
}

/* Mobile Drawer */
.oc-mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 420px;
  height: 100vh;
  background: #ffffff;
  z-index: var(--z-drawer);
  transition: left var(--surface-transition);
  box-shadow: 4px 0 25px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.oc-mobile-drawer.is-open {
  left: 0;
}

.oc-mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
  flex-shrink: 0;
}

.oc-mobile-drawer__close {
  position: static;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  color: #1e293b;
  padding: 0;
  transition: all 0.2s ease;
}

.oc-mobile-drawer__close:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

.oc-mobile-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 24px;
}

.oc-mobile-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: calc(var(--z-drawer) - 1);
  opacity: 0;
  visibility: hidden;
  transition: all var(--surface-transition);
}

.oc-mobile-drawer__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.oc-mobile-drawer__nav {
  list-style: none;
  padding: 0;
  margin: var(--gap-xl) 0 0;
}

.oc-mobile-drawer__nav a {
  display: block;
  padding: var(--gap-sm) 0;
  font-size: 16px;
  border-bottom: 1px solid var(--oc-border);
}

/* Mobile drawer: make nav list vertical */
.oc-mobile-drawer__nav-wrap .oc-nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.oc-mobile-drawer__nav-wrap .oc-nav__link {
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--oc-border);
}

.oc-mobile-drawer__nav-wrap .oc-nav__dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0 0 0 var(--gap-md);
  min-width: auto;
}

.oc-mobile-drawer__nav-wrap .oc-nav__dropdown a {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--oc-border);
}

.oc-mobile-drawer__nav-wrap .oc-nav__dropdown a:hover {
  background: transparent;
  color: var(--oc-primary-hover);
}

/* =============================================================================
   6. Search Bar
   ============================================================================= */
.oc-search {
  flex: 1;
  max-width: 400px;
}

.oc-search__form {
  display: flex;
  align-items: center;
  border: 1px solid var(--oc-input-border);
  border-radius: var(--radius-input);
  overflow: hidden;
  background: var(--oc-input-bg);
  transition: border-color var(--hover-transition);
}

.oc-search__form:focus-within {
  border-color: var(--oc-fg);
}

.oc-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  color: var(--oc-input-text);
}

.oc-search__btn {
  background: transparent;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--oc-fg);
  font-size: 16px;
  display: flex;
  align-items: center;
}

/* =============================================================================
   7. Buttons
   ============================================================================= */
.oc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: all var(--hover-transition);
  white-space: nowrap;
  text-decoration: none;
}

.oc-btn--primary {
  background: var(--oc-btn-primary-bg);
  color: var(--oc-btn-primary-text);
  border-radius: var(--radius-btn-primary);
}

.oc-btn--primary:hover {
  background: var(--oc-btn-primary-hover-bg);
  color: var(--oc-btn-primary-hover-text);
}

.oc-btn--secondary {
  background: var(--oc-btn-secondary-bg);
  color: var(--oc-btn-secondary-text);
  border: 1px solid var(--oc-btn-secondary-border);
  border-radius: var(--radius-btn-secondary);
}

.oc-btn--secondary:hover {
  background: var(--oc-btn-secondary-hover-bg);
  color: var(--oc-btn-secondary-hover-text);
  border-color: var(--oc-btn-secondary-hover-border);
}

.oc-btn--icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: var(--oc-bg);
  border: 1px solid var(--oc-border);
  font-size: 16px;
}

.oc-btn--icon:hover {
  background: var(--oc-scheme2-bg);
  border-color: var(--oc-fg);
}

.oc-btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}

.oc-btn--sm {
  padding: 8px 16px;
  font-size: 12px;
}

.oc-btn--full {
  width: 100%;
}

/* =============================================================================
   8. Product Card (thumb.twig)
   ============================================================================= */
.oc-product-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--oc-bg);
  transition: transform var(--hover-transition), box-shadow var(--hover-transition);
  z-index: var(--z-flat);
}

.oc-product-card:hover {
  transform: translateY(calc(var(--hover-lift) * -1));
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Image Container */
.oc-product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--oc-scheme2-bg);
}

.oc-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.oc-product-card:hover .oc-product-card__image img {
  transform: scale(var(--hover-subtle-zoom));
}

/* Badges */
.oc-product-card__badges {
  position: absolute;
  top: var(--gap-sm);
  left: var(--gap-sm);
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
  z-index: var(--z-raised);
}

.oc-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-accent);
  border-radius: var(--radius-badge);
  text-transform: none;
}

.oc-badge--sale {
  background: var(--oc-btn-primary-bg);
  color: var(--oc-btn-primary-text);
}

.oc-badge--sold-out {
  background: var(--oc-scheme3-bg);
  color: var(--oc-scheme3-fg);
}

.oc-badge--new {
  background: var(--oc-fg);
  color: var(--oc-bg);
}

/* Wishlist Button on Card */
.oc-product-card__wishlist {
  position: absolute;
  top: var(--gap-sm);
  left: var(--gap-sm);
  z-index: var(--z-raised);
  opacity: 0;
  transition: opacity var(--hover-transition);
}

.oc-product-card:hover .oc-product-card__wishlist {
  opacity: 1;
}

.oc-product-card__wishlist button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--oc-fg);
  transition: all var(--hover-transition);
}

.oc-product-card__wishlist button:hover {
  background: var(--oc-btn-primary-bg);
  transform: scale(1.1);
}

/* Card Content */
.oc-product-card__content {
  padding: var(--gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.oc-product-card__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--oc-fg-heading);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.oc-product-card__title a {
  color: inherit;
}

.oc-product-card__title a:hover {
  color: var(--oc-primary-hover);
}

/* Price */
.oc-price {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

.oc-price__current {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-accent);
  color: var(--oc-fg-heading);
}

.oc-price__original {
  font-size: 13px;
  text-decoration: line-through;
  color: rgba(0,0,0,0.4);
  font-family: var(--font-accent);
}

.oc-price__tax {
  font-size: 11px;
  color: rgba(0,0,0,0.5);
}

/* Rating */
.oc-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.oc-rating .fa-star {
  color: var(--oc-btn-primary-bg);
  font-size: 12px;
}

.oc-rating .fa-star.empty {
  color: var(--oc-border);
}

/* Card Actions */
.oc-product-card__actions {
  display: flex;
  gap: var(--gap-sm);
  margin-top: var(--gap-sm);
}

.oc-product-card__add-to-cart {
  flex: 1;
  background: var(--oc-btn-primary-bg);
  color: var(--oc-btn-primary-text);
  border: none;
  border-radius: var(--radius-btn-primary);
  padding: 10px 16px;
  font-size: 12px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--hover-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
}

.oc-product-card__add-to-cart:hover {
  background: var(--oc-btn-primary-hover-bg);
  color: var(--oc-btn-primary-hover-text);
}

.oc-product-card__compare {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-btn-primary);
  background: var(--oc-bg);
  border: 1px solid var(--oc-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--oc-fg);
  transition: all var(--hover-transition);
}

.oc-product-card__compare:hover {
  background: var(--oc-scheme2-bg);
  border-color: var(--oc-fg);
}

/* =============================================================================
   9. Hero / Banner Section
   ============================================================================= */
.oc-hero {
  position: relative;
  overflow: hidden;
  background: var(--oc-scheme2-bg);
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.oc-hero__bg {
  position: absolute;
  inset: 0;
}

.oc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
}

.oc-hero__content {
  position: relative;
  z-index: var(--z-flat);
  max-width: var(--page-width);
  margin: 0 auto;
  padding: var(--gap-3xl) var(--gap-md);
  color: #ffffff;
}

.oc-hero__title {
  color: #ffffff;
  margin-bottom: var(--gap-md);
}

.oc-hero__subtitle {
  font-family: var(--font-accent);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--gap-lg);
  max-width: 520px;
  opacity: 0.9;
}

/* =============================================================================
   10. Section Headings
   ============================================================================= */
.oc-section-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}

.oc-section-header__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--gap-sm);
}

.oc-section-header__subtitle {
  font-family: var(--font-accent);
  color: rgba(0,0,0,0.6);
  font-size: 14px;
}

/* =============================================================================
   11. Footer
   ============================================================================= */
.oc-footer {
  position: relative;
  z-index: 2;
  clear: both;
  background: var(--oc-fg);
  color: rgba(255,255,255,0.8);
  padding: var(--gap-3xl) 0 var(--gap-lg);
  margin-top: 0;
}

.oc-footer a {
  color: rgba(255,255,255,0.7);
  transition: color var(--hover-transition);
}

.oc-footer a:hover {
  color: var(--oc-btn-primary-bg);
}

.oc-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-xl);
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

.oc-footer__col-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--gap-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.oc-footer__toggle {
  display: none;
}

@media (max-width: 576px) {
  .oc-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .oc-footer__col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
  }

  .oc-footer__col:last-child {
    border-bottom: none;
  }

  .oc-footer__col-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 0;
    padding: 6px 0;
    user-select: none;
    -webkit-user-select: none;
  }

  .oc-footer__toggle {
    display: inline-block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  }

  .oc-footer__col.is-open .oc-footer__toggle {
    transform: rotate(180deg);
    color: #ffd400;
  }

  .oc-footer__col ul {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, margin 0.25s ease;
  }

  .oc-footer__col.is-open ul {
    max-height: 320px;
    opacity: 1;
    margin-top: 10px;
  }
}

.oc-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oc-footer__col li {
  margin-bottom: var(--gap-sm);
}

.oc-footer__col li a {
  font-size: 13px;
}

/* Newsletter */
.oc-footer__newsletter {
  max-width: var(--page-width);
  margin: 0 auto var(--gap-2xl);
  padding: 0 var(--gap-md) var(--gap-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-xl);
  flex-wrap: wrap;
}

.oc-footer__newsletter h3 {
  color: #ffffff;
  margin: 0;
  font-size: var(--fs-h4);
}

.oc-footer__newsletter p {
  color: rgba(255,255,255,0.6);
  margin: var(--gap-sm) 0 0;
  font-size: 13px;
}

.oc-footer__newsletter-form {
  display: flex;
  gap: var(--gap-sm);
  flex: 1;
  max-width: 400px;
}

.oc-footer__newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-input);
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color var(--hover-transition);
}

.oc-footer__newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.oc-footer__newsletter-form input:focus {
  border-color: var(--oc-btn-primary-bg);
}

.oc-footer__newsletter-form button {
  background: var(--oc-btn-primary-bg);
  color: var(--oc-btn-primary-text);
  border: none;
  border-radius: var(--radius-btn-primary);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--hover-transition);
  white-space: nowrap;
}

.oc-footer__newsletter-form button:hover {
  background: var(--oc-btn-primary-hover-bg);
  color: var(--oc-btn-primary-hover-text);
}

/* Footer Bottom */
.oc-footer__bottom {
  max-width: var(--page-width);
  margin: var(--gap-xl) auto 0;
  padding: var(--gap-md) var(--gap-md) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap-md);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.oc-footer__social {
  display: flex;
  gap: var(--gap-md);
}

.oc-footer__social a {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
}

.oc-footer__social a:hover {
  color: var(--oc-btn-primary-bg);
}

/* =============================================================================
   12. Breadcrumbs
   ============================================================================= */
.oc-breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: var(--gap-md) 0;
  margin: 0;
  gap: var(--gap-sm);
  font-size: 12px;
  font-family: var(--font-subheading);
}

.oc-breadcrumb li::after {
  content: '/';
  margin-left: var(--gap-sm);
  color: rgba(0,0,0,0.3);
}

.oc-breadcrumb li:last-child::after {
  content: '';
}

.oc-breadcrumb a {
  color: rgba(0,0,0,0.5);
}

.oc-breadcrumb a:hover {
  color: var(--oc-fg);
}

/* =============================================================================
   13. Category / Listing Page (Mintify Gear Premium Style)
   ============================================================================= */
.oc-cat-page {
  width: 100%;
}

.oc-cat-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  color: #ffffff;
  padding: 36px 0 42px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.oc-cat-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.14) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.oc-cat-hero__breadcrumbs,
.oc-cat-hero__breadcrumb {
  margin-bottom: 16px;
}

.oc-cat-hero .oc-breadcrumb {
  padding: 0;
  margin: 0;
}

.oc-cat-hero .oc-breadcrumb li,
.oc-cat-hero .oc-breadcrumb a {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 600;
  transition: color 0.2s ease;
}

.oc-cat-hero .oc-breadcrumb a:hover {
  color: #ffd400 !important;
}

.oc-cat-hero .oc-breadcrumb li::after,
.oc-cat-hero .oc-breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.4) !important;
}

.oc-cat-hero__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.oc-cat-hero__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.15;
}

.oc-cat-hero__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

.oc-cat-hero__img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.oc-cat-hero__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Sidebar Styling */
.oc-cat-sidebar {
  padding-right: 12px;
}

.oc-cat-sidebar .list-group {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  background: #ffffff;
  margin-bottom: 24px;
}

.oc-cat-sidebar .list-group-item {
  border: none;
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  background: #ffffff;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.oc-cat-sidebar .list-group-item:last-child {
  border-bottom: none;
}

.oc-cat-sidebar .list-group-item:hover {
  background: #f8fafc;
  color: #0f172a;
}

.oc-cat-sidebar .list-group-item.active {
  background: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a;
}

.oc-cat-sidebar .carousel,
.oc-cat-sidebar .carousel-inner,
.oc-cat-sidebar .carousel-item {
  border-radius: 16px;
  overflow: hidden;
}

.oc-cat-sidebar img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Filter Module Card Styling in Sidebar */
.oc-cat-sidebar .card {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  background: #ffffff;
  margin-bottom: 24px;
}

.oc-cat-sidebar .card-header {
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.oc-cat-sidebar .card-header i {
  color: #ffd400;
}

.oc-cat-sidebar .list-group-item.fw-bold,
.oc-cat-sidebar a.list-group-item:not([href]) {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f172a;
  background: #f8fafc;
  padding: 10px 18px;
  border-bottom: 1px solid #e2e8f0;
}

.oc-cat-sidebar .form-check {
  padding-left: 28px;
  margin-bottom: 8px;
}

.oc-cat-sidebar .form-check-input {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 1.5px solid #cbd5e1;
  cursor: pointer;
}

.oc-cat-sidebar .form-check-input:checked {
  background-color: #0f172a;
  border-color: #0f172a;
}

.oc-cat-sidebar .form-check-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: #334155;
  cursor: pointer;
}

.oc-cat-sidebar .card-footer {
  padding: 14px 18px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.oc-cat-sidebar #button-filter {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.oc-cat-sidebar #button-filter:hover {
  background: #ffd400;
  color: #0f172a;
}

/* Subcategories Navigation */
.oc-subcat-section {
  margin-bottom: 28px;
}

.oc-subcat-heading {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin-bottom: 12px;
}

.oc-subcat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oc-subcat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.oc-subcat-pill:hover {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

/* Toolbar */
.oc-cat-toolbar {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.oc-cat-toolbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.oc-view-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f8fafc;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.oc-view-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: #64748b;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.oc-view-btn:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.04);
}

.oc-view-btn.is-active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.oc-cat-toolbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.oc-select-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.oc-select-box label {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin: 0;
  white-space: nowrap;
}

.oc-select-box select {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 30px 8px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%3C0f172a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.oc-select-box select:hover,
.oc-select-box select:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

/* Product Cards & Grid View Modes */
.oc-cat-grid-item {
  width: 100%;
  min-width: 0;
}

.oc-cat-grid--4 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
}

.oc-cat-grid--3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
}

.oc-cat-grid--list {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
}

/* Product Card Styling inside Category Grid */
.oc-cat-page .oc-product-card {
  position: relative;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.oc-cat-page .oc-product-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.oc-cat-page .oc-product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.oc-cat-page .oc-product-card__image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.oc-cat-page .oc-product-card__image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.oc-cat-page .oc-product-card:hover .oc-product-card__image img {
  transform: scale(1.06);
}

.oc-cat-page .oc-product-card__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  background: #ffffff;
}

.oc-cat-page .oc-product-card__title {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oc-cat-page .oc-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.oc-cat-page .oc-product-card__title a:hover {
  color: #0284c7;
}

.oc-cat-page .oc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.oc-cat-page .oc-price__current {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ef4444;
}

.oc-cat-page .oc-price__original {
  font-size: 12.5px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.oc-cat-page .oc-product-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.oc-cat-page .oc-product-card__add-to-cart {
  flex: 1;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 9px 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.oc-cat-page .oc-product-card__add-to-cart:hover {
  background: #ffd400;
  color: #0f172a;
}

.oc-cat-page .oc-product-card__compare {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s ease;
}

.oc-cat-page .oc-product-card__compare:hover {
  border-color: #0f172a;
  color: #0f172a;
  background: #f8fafc;
}

/* Description in Grid vs List */
.oc-product-card__desc {
  display: none;
}

/* List View Overrides */
.oc-cat-grid--list .oc-cat-grid-item {
  width: 100% !important;
}

.oc-cat-grid--list .oc-product-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  border-radius: 16px !important;
  border: 1.5px solid #e2e8f0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03) !important;
  min-height: 190px !important;
}

.oc-cat-grid--list .oc-product-card__image {
  width: 220px !important;
  min-width: 220px !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  border-right: 1px solid #f1f5f9 !important;
  padding: 0 !important;
}

.oc-cat-grid--list .oc-product-card__content {
  padding: 20px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  justify-content: space-between !important;
}

.oc-cat-grid--list .oc-product-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oc-cat-grid--list .oc-product-card__title {
  font-size: 16.5px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 2px !important;
}

.oc-cat-grid--list .oc-product-card__desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  font-family: var(--font-body) !important;
  font-size: 13.5px !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 6px 0 0 !important;
}

.oc-cat-grid--list .oc-product-card__footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1px dashed #e2e8f0 !important;
}

.oc-cat-grid--list .oc-price {
  margin-top: 0 !important;
}

.oc-cat-grid--list .oc-price__current {
  font-size: 20px !important;
  font-weight: 900 !important;
  color: #ef4444 !important;
}

.oc-cat-grid--list .oc-product-card__actions {
  margin-top: 0 !important;
  flex: 0 0 auto !important;
}

.oc-cat-grid--list .oc-product-card__add-to-cart {
  width: auto !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-size: 12.5px !important;
}

/* Pagination */
.oc-cat-pagination-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1.5px solid #e2e8f0;
}

.oc-cat-results {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 991px) {
  .oc-cat-grid--4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .oc-cat-grid--4,
  .oc-cat-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .oc-cat-hero__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .oc-cat-hero__img-wrap {
    width: 80px;
    height: 80px;
  }
  .oc-cat-grid--list .oc-product-card {
    flex-direction: column;
  }
  .oc-cat-grid--list .oc-product-card__image {
    width: 100%;
    min-width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .oc-cat-grid--4,
  .oc-cat-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .oc-cat-hero__title {
    font-size: 24px;
  }
}
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.oc-select-group label {
  font-size: 12px;
  font-family: var(--font-subheading);
  color: rgba(0,0,0,0.6);
  white-space: nowrap;
}

.oc-select-group select {
  border: 1px solid var(--oc-input-border);
  border-radius: var(--radius-input);
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  background: var(--oc-bg);
  color: var(--oc-fg);
  outline: none;
  cursor: pointer;
  transition: border-color var(--hover-transition);
}

.oc-select-group select:focus {
  border-color: var(--oc-fg);
}

/* Pagination */
.oc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  margin-top: var(--gap-xl);
}

.oc-pagination a,
.oc-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-input);
  border: 1px solid var(--oc-border);
  font-size: 13px;
  font-family: var(--font-body);
  transition: all var(--hover-transition);
}

.oc-pagination a:hover {
  background: var(--oc-scheme2-bg);
  border-color: var(--oc-fg);
}

.oc-pagination .active {
  background: var(--oc-fg);
  color: var(--oc-bg);
  border-color: var(--oc-fg);
}

/* =============================================================================
   14. Product Detail Page
   ============================================================================= */
.oc-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: start;
}

@media (max-width: 768px) {
  .oc-product {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.oc-product__gallery {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.oc-product__main-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--oc-scheme2-bg);
}

.oc-product__main-image img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.oc-product__main-image:hover img {
  transform: scale(1.05);
}

.oc-product__thumbs {
  display: flex;
  gap: var(--gap-sm);
  overflow-x: auto;
}

.oc-product__thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--hover-transition);
}

.oc-product__thumb:hover,
.oc-product__thumb.active {
  border-color: var(--oc-fg);
}

.oc-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.oc-product__info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.oc-product__title {
  font-size: var(--fs-h3);
  margin-bottom: 0;
}

.oc-product__meta {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oc-product__price-block {
  display: flex;
  align-items: baseline;
  gap: var(--gap-md);
}

.oc-product__price {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-accent);
  color: var(--oc-fg-heading);
}

.oc-product__price-old {
  font-size: 18px;
  text-decoration: line-through;
  color: rgba(0,0,0,0.4);
  font-family: var(--font-accent);
}

/* Options / Variant Pills */
.oc-product__options {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.oc-product__option-group {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.oc-product__option-label {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-subheading);
}

.oc-product__option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}

.oc-product__pill {
  padding: 8px 20px;
  border: 1px solid rgba(0,0,0,0.13);
  border-radius: var(--radius-btn-secondary);
  background: var(--oc-bg);
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--hover-transition);
  color: var(--oc-fg);
}

.oc-product__pill:hover {
  background: var(--oc-scheme2-bg);
  border-color: #e6e6e6;
}

.oc-product__pill.active {
  background: var(--oc-fg);
  color: var(--oc-bg);
  border-color: var(--oc-fg);
}

/* Quantity Selector */
.oc-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--oc-input-border);
  border-radius: var(--radius-input);
  overflow: hidden;
}

.oc-qty__btn {
  width: 40px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oc-fg);
  transition: background var(--hover-transition);
}

.oc-qty__btn:hover {
  background: var(--oc-scheme2-bg);
}

.oc-qty__input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--oc-input-border);
  border-right: 1px solid var(--oc-input-border);
  font-size: 14px;
  font-family: var(--font-body);
  padding: 10px 0;
  outline: none;
  -moz-appearance: textfield;
}

.oc-qty__input::-webkit-inner-spin-button,
.oc-qty__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Add to Cart Area */
.oc-product__cart-actions {
  display: flex;
  gap: var(--gap-md);
  align-items: center;
}

.oc-product__cart-actions .oc-btn--primary {
  flex: 1;
  padding: 14px 24px;
}

/* Tabs */
.oc-tabs {
  border-bottom: 1px solid var(--oc-border);
  display: flex;
  gap: 0;
  margin-bottom: var(--gap-lg);
  overflow-x: auto;
}

.oc-tabs__tab {
  padding: var(--gap-md) var(--gap-lg);
  font-size: 13px;
  font-family: var(--font-subheading);
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--hover-transition);
  white-space: nowrap;
  color: rgba(0,0,0,0.5);
}

.oc-tabs__tab:hover {
  color: var(--oc-fg);
}

.oc-tabs__tab.active {
  color: var(--oc-fg);
  border-bottom-color: var(--oc-fg);
}

.oc-tabs__content {
  display: none;
}

.oc-tabs__content.active {
  display: block;
}

/* =============================================================================
   15. Forms & Inputs (Global)
   ============================================================================= */
.oc-form-group {
  margin-bottom: var(--gap-md);
}

.oc-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-subheading);
  margin-bottom: var(--gap-sm);
}

.oc-form-group input,
.oc-form-group textarea,
.oc-form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--oc-input-border);
  border-radius: var(--radius-input);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--oc-input-text);
  background: var(--oc-input-bg);
  outline: none;
  transition: border-color var(--hover-transition);
}

.oc-form-group input:focus,
.oc-form-group textarea:focus,
.oc-form-group select:focus {
  border-color: var(--oc-fg);
}

/* =============================================================================
   16. Utility Classes
   ============================================================================= */
.oc-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.oc-text-center { text-align: center; }
.oc-text-left { text-align: left; }
.oc-text-right { text-align: right; }

@media (max-width: 768px) {
  .oc-hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .oc-hide-desktop { display: none !important; }
}

/* =============================================================================
   17. Mega Menu — Comeback Electronic Style
   ============================================================================= */

/* --- Dropdown Panel Container --- */
.mm {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  width: 820px;
  max-width: 90vw;
  background: #fff;
  border: 1px solid var(--oc-border);
  border-top: 2px solid var(--oc-btn-primary-bg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  z-index: 1000;
  flex-direction: row;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s linear;
  pointer-events: none;
}
.oc-has-megamenu.is-open .mm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* --- Left Sidebar --- */
.mm__sidebar {
  width: 260px;
  min-width: 260px;
  border-right: 1px solid var(--oc-border);
  padding: 8px 0;
  overflow-y: auto;
  max-height: 480px;
}

.mm__cat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--oc-fg);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.15s ease;
  cursor: pointer;
  position: relative;
}
.mm__cat-item:last-child { border-bottom: none; }

.mm__cat-item:hover,
.mm__cat-item.is-active {
  background: rgba(0,0,0,0.03);
}
.mm__cat-item.is-active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--oc-btn-primary-bg);
}

.mm__cat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mm__cat-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.mm__cat-fa {
  font-size: 20px;
  color: #333;
  opacity: 0.72;
  transition: opacity 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.mm__cat-item:hover .mm__cat-fa,
.mm__cat-item.is-active .mm__cat-fa {
  opacity: 1;
  color: #000;
  transform: scale(1.06);
}

.mm__cat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mm__cat-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mm__cat-count {
  font-family: var(--font-accent);
  font-size: 11px;
  color: rgba(0,0,0,0.45);
}

/* --- Right Content Panels --- */
.mm__content {
  flex: 1;
  padding: 24px 28px;
  min-height: 380px;
  position: relative;
}

.mm__panel {
  display: none;
}
.mm__panel.is-active {
  display: block;
  animation: mmFadeIn 0.2s ease;
}
@keyframes mmFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mm__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  color: var(--oc-fg-heading);
}

/* --- Products Grid (3 columns, max 2 rows) --- */
.mm__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.mm__product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--oc-fg);
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.mm__product-card:hover {
  background: rgba(0,0,0,0.03);
}

.mm__product-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
}

.mm__product-name {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mm__product-price {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #e53935;
}
.mm__product-price--old {
  color: rgba(0,0,0,0.35);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 11px;
  margin-right: 4px;
}
.mm__product-price--sale {
  color: #e53935;
}



/* --- Responsive --- */
@media (max-width: 991px) {
  .mm {
    display: none !important;
  }
}

/* =============================================================================
   Store Locations Drawer
   ============================================================================= */
.oc-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9998;
  touch-action: none;
}

.oc-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.oc-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: #f4f6f8;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overscroll-behavior: contain;
}

.oc-drawer--right {
  right: 0;
  transform: translateX(100%);
}

.oc-drawer--right.is-open {
  transform: translateX(0);
}

.oc-drawer__header {
  background: linear-gradient(135deg, #1b384c 0%, #152733 100%);
  color: #ffffff;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}

.oc-drawer__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.2;
}

.oc-drawer__subtitle {
  font-family: var(--font-accent);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.3;
}

.oc-drawer__close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.oc-drawer__close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.oc-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar for Drawer */
.oc-drawer__body::-webkit-scrollbar {
  width: 6px;
}
.oc-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}
.oc-drawer__body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.oc-drawer__body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}

/* Location Card */
.oc-location-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oc-location-card:last-child {
  margin-bottom: 0;
}

.oc-location-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.oc-location-card__img-wrap {
  width: 100%;
  height: 160px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.oc-location-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oc-location-card__img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.oc-location-card__img-placeholder {
  color: #adb5bd;
  width: 48px;
  height: 48px;
}

.oc-location-card__content {
  padding: 18px 16px;
}

.oc-location-card__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #121212;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.oc-location-card__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.45;
  margin-bottom: 18px;
}

.oc-location-card__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #121212;
}

.oc-location-card__actions {
  display: flex;
  gap: 10px;
}

.oc-btn-location {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.oc-btn-location--primary {
  background: #ffd400;
  color: #121212;
  border: 1.5px solid #ffd400;
}

.oc-btn-location--primary:hover {
  background: #f0c600;
  border-color: #f0c600;
  color: #121212;
  transform: translateY(-1px);
}

.oc-btn-location--outline {
  background: #ffffff;
  color: #1b384c;
  border: 1.5px solid #1b384c;
}

.oc-btn-location--outline:hover {
  background: #1b384c;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .oc-drawer {
    width: 100%;
    max-width: 100vw;
  }
}

/* ============================================================
   Coupon / Promotions Drawer Cards
   ============================================================ */
.oc-coupon-card {
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
  font-family: var(--oc-font, system-ui, sans-serif);
}
.oc-coupon-card:last-child { margin-bottom: 0; }

/* ── Solid style (coloured background) ─────────── */
.oc-coupon-card--solid {
  color: #ffffff;
}
.oc-coupon-card--solid .oc-coupon-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: .9;
}
.oc-coupon-card--solid .oc-coupon-card__code {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.oc-coupon-card--solid .oc-coupon-card__desc {
  font-size: 12px;
  opacity: .88;
  margin: 10px 0;
  line-height: 1.5;
}
.oc-coupon-card--solid .oc-coupon-card__expires {
  font-size: 11px;
  opacity: .75;
}
.oc-coupon-card--solid .oc-coupon-card__copy {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.oc-coupon-card--solid .oc-coupon-card__copy:hover {
  background: rgba(255,255,255,.35);
}

/* ── Dashed style (white bg, coloured border) ─── */
.oc-coupon-card--dashed {
  background: #ffffff;
  border: 2px dashed var(--coupon-accent, #22c55e);
}
.oc-coupon-card__label--dark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e293b;
}
.oc-coupon-card__code--accent {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.oc-coupon-card__desc--dark {
  font-size: 12px;
  color: #475569;
  margin: 10px 0;
  line-height: 1.5;
}
.oc-coupon-card__expires--dark {
  font-size: 11px;
  color: #94a3b8;
}
.oc-coupon-card__copy--dark {
  background: transparent;
  color: #64748b;
  border: none;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: color .2s;
  white-space: nowrap;
}
.oc-coupon-card__copy--dark:hover { color: #1e293b; }

/* ── Shared layout rows ─────────────────────────── */
.oc-coupon-card__top,
.oc-coupon-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.oc-coupon-card__top { margin-bottom: 6px; }
.oc-coupon-card__bottom { margin-top: 6px; }

/* ── Empty state ────────────────────────────────── */
.oc-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  text-align: center;
  color: #94a3b8;
}
.oc-drawer__empty p { font-size: 14px; margin: 0; }

/* ============================================================
   Wishlist: Floating Heart Button & Wishlist Drawer
   ============================================================ */

/* Floating Heart on Product Card */
.oc-btn-wishlist-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.oc-btn-wishlist-heart .oc-heart-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  transition: transform 0.2s ease, fill 0.2s ease;
}

.oc-btn-wishlist-heart:hover {
  transform: scale(1.12);
  color: #ef4444;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.22);
}

.oc-btn-wishlist-heart.is-active {
  color: #ef4444 !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

.oc-btn-wishlist-heart.is-active .oc-heart-icon {
  fill: #ef4444 !important;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.oc-btn-wishlist-heart.heart-pop {
  animation: heartPop 0.35s ease forwards;
}

/* Wishlist Drawer Typography & Cards */
.oc-wishlist-drawer__section-title {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 14px;
}

.oc-wishlist-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oc-wishlist-item {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oc-wishlist-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.oc-wishlist-item__img-wrap {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
}

.oc-wishlist-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oc-wishlist-item__no-img {
  color: #cbd5e1;
  font-size: 20px;
}

.oc-wishlist-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.oc-wishlist-item__name {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  transition: color 0.15s ease;
}

.oc-wishlist-item__name:hover {
  color: #f97316;
}

.oc-wishlist-item__price {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  font-family: 'Courier New', Courier, monospace;
}

.oc-wishlist-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.oc-wishlist-item__loved {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #64748b;
  font-size: 11px;
  font-family: 'Courier New', Courier, monospace;
}

.oc-heart-mini {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.oc-wishlist-item__remove {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 11px;
  cursor: pointer;
  padding: 2px 4px;
  font-family: 'Courier New', Courier, monospace;
  transition: color 0.15s ease;
}

.oc-wishlist-item__remove:hover {
  color: #ef4444;
}

.oc-wishlist-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  text-align: center;
}

/* ============================================================
   Auth / Account Drawer Styles
   ============================================================ */
.oc-auth-tabs {
  display: flex;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
  gap: 4px;
}

.oc-auth-tab {
  flex: 1;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.oc-auth-tab.is-active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.oc-auth-pane {
  display: none;
}

.oc-auth-pane.is-active {
  display: block;
  animation: authFadeIn 0.25s ease;
}

@keyframes authFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.oc-auth-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.oc-auth-alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.oc-auth-alert.is-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.oc-auth-alert.is-success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.oc-auth-field {
  margin-bottom: 15px;
}

.oc-auth-label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.oc-auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.oc-auth-label-row .oc-auth-label {
  margin-bottom: 0;
}

.oc-auth-link-btn {
  background: none;
  border: none;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}

.oc-auth-link-btn:hover {
  color: #0f172a;
}

.oc-auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.oc-auth-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
}

.oc-auth-input {
  width: 100%;
  height: 42px;
  padding: 0 14px 0 38px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  background: #ffffff;
  color: #0f172a;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.oc-auth-input:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.oc-auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.oc-auth-row .oc-auth-input {
  padding-left: 14px;
}

.oc-auth-toggle-pwd {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  font-size: 14px;
  transition: color 0.15s ease;
}

.oc-auth-toggle-pwd:hover {
  color: #0f172a;
}

.oc-auth-checkbox-field {
  margin: 12px 0 6px 0;
}

.oc-auth-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #475569;
  cursor: pointer;
}

.oc-auth-checkbox-label input[type="checkbox"] {
  accent-color: #0f172a;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.oc-btn-auth-submit {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 18px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.oc-btn-auth-submit:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.oc-btn-auth-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.oc-auth-footer-prompt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
  margin-top: 18px;
  text-align: center;
}

.oc-auth-switch-link {
  background: none;
  border: none;
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Logged-In User Profile Styles */
.oc-auth-profile {
  display: flex;
  flex-direction: column;
}

.oc-auth-user-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.oc-auth-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.oc-auth-user-meta {
  flex: 1;
  min-width: 0;
}

.oc-auth-user-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.oc-auth-user-email {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.oc-auth-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.oc-auth-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #334155;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.oc-auth-menu-item:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.oc-auth-menu-arrow {
  margin-left: auto;
  font-size: 11px;
  color: #94a3b8;
}

.oc-btn-auth-logout {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #fff1f2;
  color: #e11d48;
  border: 1px solid #ffe4e6;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}

.oc-btn-auth-logout:hover {
  background: #ffe4e6;
}

/* ============================================================
   Shopping Cart Drawer Styles
   ============================================================ */
.oc-drawer__body--cart {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
}

.oc-cart-drawer__list {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}

.oc-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.oc-cart-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.oc-cart-item__img-wrap {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
}

.oc-cart-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oc-cart-item__no-img {
  color: #cbd5e1;
  font-size: 20px;
}

.oc-cart-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.oc-cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.oc-cart-item__name {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  transition: color 0.15s ease;
}

.oc-cart-item__name:hover {
  color: #2563eb;
}

.oc-cart-item__remove {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 13px;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.15s ease;
  flex-shrink: 0;
}

.oc-cart-item__remove:hover {
  color: #ef4444;
}

.oc-cart-item__options {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
}

.oc-cart-item__opt {
  font-size: 11px;
  color: #64748b;
}

.oc-cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.oc-cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  background: #f8fafc;
}

.oc-cart-qty__btn {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.oc-cart-qty__btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.oc-cart-qty__val {
  min-width: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.oc-cart-item__price {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

/* Empty State */
.oc-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  margin: auto;
}

.oc-cart-empty__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.oc-cart-empty__title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.oc-cart-empty__desc {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 20px 0;
}

.oc-btn-cart-continue {
  padding: 10px 22px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.oc-btn-cart-continue:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

/* Footer & Totals */
.oc-cart-drawer__footer {
  padding: 16px 20px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
}

.oc-cart-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.oc-cart-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
}

.oc-cart-totals__row:last-child {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  padding-top: 8px;
  border-top: 1px dashed #cbd5e1;
  margin-top: 4px;
}

.oc-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.oc-btn-cart-view {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.2s ease;
}

.oc-btn-cart-view:hover {
  border-color: #0f172a;
  background: #f1f5f9;
}

.oc-btn-cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  background: #0f172a;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
  transition: all 0.2s ease;
}

.oc-btn-cart-checkout:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

/* =============================================================================
   15. Hero Slideshow & Swiper Video Slider (Mintify Slideshow)
   ============================================================================= */
.oc-hero-slideshow-section {
  position: relative;
  width: 100%;
  padding: 16px 0 28px;
  overflow: hidden;
}

.oc-hero-swiper-container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .oc-hero-swiper-container {
    padding: 0 16px;
  }
}

.oc-hero-swiper {
  position: relative;
  overflow: hidden !important;
  width: 100%;
}

.oc-hero-swiper .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: content-box;
}

.oc-hero-slide {
  flex-shrink: 0 !important;
  height: auto;
  border-radius: 20px;
  box-sizing: border-box;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.oc-hero-slide__bg-wrap {
  background: var(--slide-bg);
  border-radius: 20px;
  padding: 42px 48px;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.oc-hero-slide__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

/* Left Caption (40%) */
.oc-hero-slide__caption {
  flex: 0 0 38%;
  max-width: 38%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: 2;
}

.oc-hero-slide__caption--dark {
  color: #0f172a;
}

.oc-hero-slide__caption--light {
  color: #ffffff;
}

.oc-hero-slide__badge-wrap {
  display: inline-flex;
  align-items: center;
}

.oc-hero-slide__badge-img {
  max-height: 52px;
  max-width: 280px;
  width: auto;
  object-fit: contain;
  display: block;
}

.oc-hero-slide__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.oc-hero-slide__subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.3;
}

.oc-hero-slide__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.88;
}

.oc-hero-slide__specs li {
  position: relative;
  padding-left: 0;
}

/* Call to Action Button */
.oc-hero-slide__btn-wrap {
  margin-top: 6px;
}

.oc-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.oc-hero-btn--yellow {
  background: #ffd400;
  color: #0f172a;
  border: 1px solid #eab308;
}

.oc-hero-btn--yellow:hover {
  background: #facc15;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(250, 204, 21, 0.4);
}

.oc-hero-btn--white {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.oc-hero-btn--white:hover {
  background: #f8fafc;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.oc-hero-btn--dark {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #334155;
}

.oc-hero-btn--dark:hover {
  background: #1e293b;
  color: #ffffff;
  transform: translateY(-2px);
}

.oc-hero-btn--outline {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
}

.oc-hero-btn--outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* Right Media (60%) */
.oc-hero-slide__media {
  flex: 0 0 58%;
  max-width: 58%;
  position: relative;
  z-index: 1;
}

.oc-hero-slide__media-card {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  background: #09090b;
}

.oc-hero-slide__video,
.oc-hero-slide__iframe,
.oc-hero-slide__poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oc-hero-slide__overlay-text {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}

/* Swiper Navigation Arrows */
.oc-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 15px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.oc-hero-nav--prev {
  left: 20px;
}

.oc-hero-nav--next {
  right: 28px;
}

.oc-hero-nav:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.oc-hero-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Swiper Pagination Bullets with Progress Bar */
.oc-hero-pagination {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.oc-hero-bullet {
  display: inline-flex;
  align-items: center;
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  margin: 0 !important;
  opacity: 1 !important;
}

.oc-hero-bullet__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fef08a 0%, #ffd400 45%, #f97316 100%);
  box-shadow: 0 0 6px rgba(249, 115, 22, 0.6);
  pointer-events: none;
}

.oc-hero-bullet.swiper-pagination-bullet-active {
  width: 52px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.oc-hero-bullet.swiper-pagination-bullet-active .oc-hero-bullet__fill {
  animation: ocHeroBulletProgress var(--autoplay-delay, 5000ms) linear forwards;
}

.oc-hero-swiper:hover .oc-hero-bullet.swiper-pagination-bullet-active .oc-hero-bullet__fill {
  animation-play-state: paused;
}

@keyframes ocHeroBulletProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Responsive Rules for Slideshow */
@media (max-width: 991px) {
  .oc-hero-slide__bg-wrap {
    padding: 28px 20px;
    min-height: auto;
  }
  .oc-hero-slide__inner {
    flex-direction: column;
    gap: 22px;
  }
  .oc-hero-slide__caption {
    max-width: 100%;
    flex: 1;
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  .oc-hero-slide__media {
    max-width: 100%;
    flex: 1;
    width: 100%;
  }
  .oc-hero-slide__media-card {
    height: 230px;
  }
  .oc-hero-slide__overlay-text {
    font-size: 16px;
    bottom: 14px;
  }
  .oc-hero-nav {
    display: none;
  }
}

/* =============================================================================
   16. Mintify Products Category Section & Product Cards
   ============================================================================= */
.oc-pc-section {
  position: relative;
  width: 100%;
}

.oc-pc-fullwidth {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.oc-pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}

.oc-pc-header--align-left {
  justify-content: space-between;
}

.oc-pc-header--align-center {
  justify-content: center;
  position: relative;
}

.oc-pc-header--align-center .oc-pc-header__right {
  position: absolute;
  right: 0;
}

.oc-pc-header--align-right {
  justify-content: flex-end;
  gap: 24px;
}

.oc-pc-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

h1.oc-pc-heading { font-size: 24px; }
h2.oc-pc-heading { font-size: 18px; }
h3.oc-pc-heading { font-size: 16px; }

.oc-pc-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.oc-pc-view-all i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.oc-pc-view-all:hover {
  color: #0284c7;
}

.oc-pc-view-all:hover i {
  transform: translateX(3px);
}

/* Product Card Component (.oc-gear-card) */
.oc-gear-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.oc-gear-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

.oc-gear-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  margin-bottom: 8px;
  z-index: 2;
}

.oc-gear-card__badge-sale {
  background: #f43f5e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  font-family: var(--font-accent);
  line-height: 1.2;
}

.oc-gear-card__wishlist {
  background: transparent;
  border: none;
  padding: 4px;
  color: #ef4444;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-gear-card__wishlist:hover {
  transform: scale(1.25);
  color: #dc2626;
}

.oc-gear-card__thumb-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
}

.oc-gear-card__thumb {
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-gear-card:hover .oc-gear-card__thumb {
  transform: scale(1.06);
}

.oc-gear-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.oc-gear-card__title {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oc-gear-card__title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.oc-gear-card__title a:hover {
  color: #0284c7;
}

.oc-gear-card__rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  color: #fbbf24;
  margin: 0;
}

.oc-gear-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-body);
  margin-top: auto;
  padding-top: 6px;
}

.oc-gear-card__price-special {
  font-size: 14px;
  font-weight: 800;
  color: #ef4444;
}

.oc-gear-card__price-old {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
}

.oc-gear-card__price-regular {
  font-size: 14px;
  font-weight: 800;
  color: #ef4444;
}

.oc-gear-card__cart-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.oc-gear-card:hover .oc-gear-card__cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.oc-gear-card__cart-btn:hover {
  background: #ffd400;
  color: #0f172a;
  transform: scale(1.1);
}

/* Swiper Slider Specific Styles */
.oc-pc-slider-wrap {
  position: relative;
  overflow: visible;
}

.oc-pc-swiper {
  overflow: hidden;
  padding: 8px 2px 14px;
}

.oc-pc-slide {
  height: auto;
}

.oc-pc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0f172a;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s ease;
}

.oc-pc-nav--prev {
  left: -16px;
}

.oc-pc-nav--next {
  right: -16px;
}

.oc-pc-nav:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-50%) scale(1.08);
}

.oc-pc-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Grid Layout Specific Styles */
.oc-pc-grid {
  display: grid;
  width: 100%;
}

.oc-pc-grid--desktop-3 { grid-template-columns: repeat(3, 1fr); }
.oc-pc-grid--desktop-4 { grid-template-columns: repeat(4, 1fr); }
.oc-pc-grid--desktop-5 { grid-template-columns: repeat(5, 1fr); }
.oc-pc-grid--desktop-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 991px) {
  .oc-pc-grid--desktop-4,
  .oc-pc-grid--desktop-5,
  .oc-pc-grid--desktop-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .oc-pc-grid--mobile-1 { grid-template-columns: repeat(1, 1fr); }
  .oc-pc-grid--mobile-2 { grid-template-columns: repeat(2, 1fr); }
  .oc-pc-nav { display: none; }
  .oc-gear-card { padding: 10px; }
  .oc-gear-card__title { font-size: 11px; }
  .oc-gear-card__price-special,
  .oc-gear-card__price-regular { font-size: 12.5px; }
}

/* Bottom View All Button */
.oc-pc-bottom-wrap {
  text-align: center;
  margin-top: 24px;
}

.oc-pc-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.oc-pc-bottom-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* =============================================================================
   17. Mintify Product Hotspots (Interactive Lookbook)
   ============================================================================= */
.oc-hotspot-section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.oc-hotspot-fullwidth {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.oc-hotspot-header {
  text-align: center;
  margin-bottom: 28px;
}

.oc-hotspot-heading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin: 0 0 6px;
}

.oc-hotspot-subheading {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.oc-hotspot-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.oc-hotspot-canvas {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background: #0f172a;
}

.oc-hotspot-picture {
  display: block;
  width: 100%;
}

.oc-hotspot-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.oc-hotspot-pins-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.oc-hotspot-item {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 10;
}

.oc-hotspot-item.is-active {
  z-index: 100;
}

/* Hotspot Pulsating Button */
.oc-hotspot-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.oc-hotspot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.45);
  animation: oc-hotspot-pulse-anim 2.2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.oc-hotspot-pulse--delay {
  animation-delay: 1.1s;
}

@keyframes oc-hotspot-pulse-anim {
  0% {
    width: 24px;
    height: 24px;
    opacity: 0.9;
  }
  100% {
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

.oc-hotspot-dot {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0f172a;
  border: 2.5px solid #ffd400;
  color: #ffd400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-hotspot-btn:hover .oc-hotspot-dot,
.oc-hotspot-item.is-active .oc-hotspot-btn .oc-hotspot-dot {
  background: #ffd400;
  color: #0f172a;
  border-color: #0f172a;
  transform: scale(1.15) rotate(45deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* Popover Product Card */
.oc-hotspot-card {
  position: absolute;
  width: 220px;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s ease;
  z-index: 50;
}

.oc-hotspot-item.is-active .oc-hotspot-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Default / Top Direction */
.oc-hotspot-card--auto,
.oc-hotspot-card--top {
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}

.oc-hotspot-item.is-active .oc-hotspot-card--auto,
.oc-hotspot-item.is-active .oc-hotspot-card--top {
  transform: translateX(-50%) translateY(0);
}

.oc-hotspot-card--auto .oc-hotspot-card__arrow,
.oc-hotspot-card--top .oc-hotspot-card__arrow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

/* Bottom Direction */
.oc-hotspot-card--bottom {
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
}

.oc-hotspot-item.is-active .oc-hotspot-card--bottom {
  transform: translateX(-50%) translateY(0);
}

.oc-hotspot-card--bottom .oc-hotspot-card__arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

/* Left Direction */
.oc-hotspot-card--left {
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
}

.oc-hotspot-item.is-active .oc-hotspot-card--left {
  transform: translateY(-50%) translateX(0);
}

.oc-hotspot-card--left .oc-hotspot-card__arrow {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.05);
}

/* Right Direction */
.oc-hotspot-card--right {
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
}

.oc-hotspot-item.is-active .oc-hotspot-card--right {
  transform: translateY(-50%) translateX(0);
}

.oc-hotspot-card--right .oc-hotspot-card__arrow {
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.05);
}

/* Overflow Flip Fallbacks */
.oc-hotspot-card.flip-to-left {
  left: auto !important;
  right: -10px !important;
  transform: translateY(0) !important;
}
.oc-hotspot-card.flip-to-left .oc-hotspot-card__arrow {
  left: auto !important;
  right: 24px !important;
}

.oc-hotspot-card.flip-to-right {
  right: auto !important;
  left: -10px !important;
  transform: translateY(0) !important;
}
.oc-hotspot-card.flip-to-right .oc-hotspot-card__arrow {
  left: 24px !important;
  right: auto !important;
}

.oc-hotspot-card.flip-to-bottom {
  bottom: auto !important;
  top: calc(100% + 14px) !important;
}
.oc-hotspot-card.flip-to-bottom .oc-hotspot-card__arrow {
  bottom: auto !important;
  top: -6px !important;
}

/* Card Content Elements */
.oc-hotspot-card__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
}

.oc-hotspot-card__close:hover {
  background: #0f172a;
  color: #ffffff;
}

.oc-hotspot-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.oc-hotspot-card__thumb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 130px;
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
  margin-bottom: 8px;
}

.oc-hotspot-card__thumb {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.oc-hotspot-card__thumb-link:hover .oc-hotspot-card__thumb {
  transform: scale(1.08);
}

.oc-hotspot-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.oc-hotspot-card__title {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oc-hotspot-card__title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.oc-hotspot-card__title a:hover {
  color: #0284c7;
}

.oc-hotspot-card__rating {
  display: flex;
  gap: 2px;
  font-size: 9.5px;
  color: #fbbf24;
}

.oc-hotspot-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  color: #ef4444;
}

.oc-hotspot-card__price-old {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
}

.oc-hotspot-card__action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 12px;
  margin-top: 4px;
  background: #ffd400;
  color: #0f172a;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 212, 0, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-hotspot-card__action-btn:hover {
  background: #0f172a;
  color: #ffd400;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
  transform: translateY(-1px);
}

.oc-hotspot-card__action-btn i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.oc-hotspot-card__action-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 576px) {
  .oc-hotspot-card {
    width: 190px;
    padding: 10px;
  }
  .oc-hotspot-card__thumb-link {
    max-height: 105px;
  }
  .oc-hotspot-btn {
    width: 30px;
    height: 30px;
  }
  .oc-hotspot-dot {
    width: 24px;
    height: 24px;
    font-size: 9.5px;
  }
}

/* =============================================================================
   18. Mintify Quick Shop / Quick View Modal
   ============================================================================= */
body.oc-modal-open {
  overflow: hidden !important;
}

.oc-qv-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  padding: 20px;
  box-sizing: border-box;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.28s ease;
}

.oc-qv-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.oc-qv-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.oc-qv-dialog {
  position: relative;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  box-sizing: border-box;
}

.oc-qv-modal.is-open .oc-qv-dialog {
  transform: scale(1) translateY(0);
}

.oc-qv-container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.oc-qv-body {
  position: relative;
  overflow-y: auto;
  max-height: calc(90vh - 20px);
  padding: 32px 36px;
  box-sizing: border-box;
}

.oc-qv-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 80px 20px;
  color: #64748b;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.oc-qv-loading i {
  color: #ffd400;
  font-size: 32px;
}

.oc-qv-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-qv-close:hover {
  background: #0f172a;
  color: #ffffff;
  transform: rotate(90deg);
}

.oc-qv-row {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 32px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* Left Gallery */
.oc-qv-gallery {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.oc-qv-main-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.oc-qv-main-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.oc-qv-badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.oc-qv-thumbs-wrap {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.oc-qv-thumb-item {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  padding: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.oc-qv-thumb-item:hover,
.oc-qv-thumb-item.is-active {
  border-color: #ffd400;
  box-shadow: 0 0 0 2px rgba(255, 212, 0, 0.3);
}

.oc-qv-thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Right Info */
.oc-qv-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  padding-right: 8px;
}

.oc-qv-brand {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0284c7;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.oc-qv-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.3;
}

.oc-qv-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.oc-qv-title a:hover {
  color: #0284c7;
}

.oc-qv-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.oc-qv-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: #fbbf24;
}

.oc-qv-reviews-count {
  font-size: 12px;
  color: #64748b;
  margin-left: 4px;
  font-weight: 600;
}

.oc-qv-stock-badge {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.oc-qv-stock-badge.is-instock {
  background: #dcfce7;
  color: #15803d;
}

.oc-qv-stock-badge.is-outstock {
  background: #fee2e2;
  color: #b91c1c;
}

.oc-qv-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.oc-qv-price-special {
  font-size: 22px;
  font-weight: 900;
  color: #ef4444;
}

.oc-qv-price-old {
  font-size: 15px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
}

.oc-qv-price-regular {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
}

.oc-qv-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px;
}

/* Variant Options Styling */
.oc-qv-options {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.oc-qv-option-label {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f172a;
  margin-bottom: 6px;
  display: block;
}

.oc-qv-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.oc-qv-pill {
  cursor: pointer;
  position: relative;
  margin: 0;
}

.oc-qv-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.oc-qv-pill-content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.oc-qv-pill:hover .oc-qv-pill-content {
  border-color: #94a3b8;
}

.oc-qv-pill input:checked + .oc-qv-pill-content {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffd400;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.oc-qv-pill input:checked + .oc-qv-pill-content .oc-qv-pill-price {
  color: #fef08a;
}

.oc-qv-pill-img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
}

.oc-qv-pill-price {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
}

.oc-qv-select {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

/* Quantity & Action Button */
.oc-qv-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.oc-qv-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  height: 48px;
  padding: 2px;
  flex-shrink: 0;
}

.oc-qv-qty-btn {
  width: 38px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.oc-qv-qty-btn:hover {
  background: #e2e8f0;
}

.oc-qv-qty-input {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  -moz-appearance: textfield;
}

.oc-qv-qty-input::-webkit-outer-spin-button,
.oc-qv-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.oc-qv-btn-cart {
  flex-grow: 1;
  height: 48px;
  border-radius: 10px;
  border: none;
  background: #ffd400;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 212, 0, 0.35);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-qv-btn-cart:hover {
  background: #0f172a;
  color: #ffd400;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

.oc-qv-btn-cart:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.oc-qv-footer-link {
  text-align: center;
  margin-top: 14px;
}

.oc-qv-footer-link a {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.oc-qv-footer-link a:hover {
  color: #0284c7;
}

.oc-qv-footer-link a i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.oc-qv-footer-link a:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .oc-qv-dialog {
    max-height: 94vh;
  }
  .oc-qv-body {
    padding: 22px 18px;
    max-height: calc(94vh - 20px);
  }
  .oc-qv-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .oc-qv-title {
    font-size: 17px;
  }
  .oc-qv-main-image-wrap {
    max-height: 260px;
  }
}

/* =============================================================================
   19. Mintify Product List Grid (Best Sellers 3x3)
   ============================================================================= */
.oc-plg-section {
  padding: 44px 0 48px;
  background: #ffffff;
  position: relative;
}

.oc-plg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.oc-plg-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.oc-plg-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.oc-plg-view-all:hover {
  color: #0284c7;
  transform: translateX(3px);
}

.oc-plg-view-all i {
  font-size: 11px;
}

.oc-plg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.oc-plg-grid--col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.oc-plg-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 18px;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 18px;
  align-items: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.oc-plg-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.oc-plg-card__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 15px;
  color: #ef4444;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease;
  z-index: 2;
}

.oc-plg-card__wishlist:hover {
  transform: scale(1.2);
}

.oc-plg-card__left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: 140px;
}

.oc-plg-card__thumb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.oc-plg-card__thumb {
  max-width: 100%;
  max-height: 135px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.oc-plg-card:hover .oc-plg-card__thumb {
  transform: scale(1.04);
}

.oc-plg-card__right {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-right: 14px;
}

.oc-plg-card__title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.35;
}

.oc-plg-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.oc-plg-card__title a:hover {
  color: #0284c7;
}

.oc-plg-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.oc-plg-card__price-special {
  font-size: 16px;
  font-weight: 900;
  color: #e11d48;
}

.oc-plg-card__price-old {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
}

.oc-plg-card__price-regular {
  font-size: 16px;
  font-weight: 900;
  color: #e11d48;
}

.oc-plg-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
  color: #475569;
}

.oc-plg-card__spec-item {
  display: flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.oc-plg-card__spec-bullet {
  color: #0f172a;
  font-weight: 900;
  font-size: 11px;
  flex-shrink: 0;
}

.oc-plg-card__spec-name {
  color: #0f172a;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

.oc-plg-card__spec-val {
  color: #475569;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .oc-plg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .oc-plg-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .oc-plg-grid--m-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .oc-plg-card {
    padding: 16px 14px;
    grid-template-columns: 100px 1fr;
    gap: 14px;
  }
  .oc-plg-card__thumb {
    max-height: 105px;
  }
  .oc-plg-card__title {
    font-size: 12.5px;
  }
  .oc-plg-card__specs {
    font-size: 11px;
  }
}

/* =============================================================================
   20. Mintify Promotional Banner with Caption
   ============================================================================= */
.oc-bc-section {
  position: relative;
  width: 100%;
}

.oc-bc-card {
  display: grid;
  grid-template-columns: 65% 35%;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.oc-bc-card:hover {
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

.oc-bc-card--pos-right {
  grid-template-columns: 35% 65%;
}

.oc-bc-card--pos-right .oc-bc-media {
  order: 2;
}

.oc-bc-card--pos-right .oc-bc-caption {
  order: 1;
}

.oc-bc-media {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  padding: 0;
  margin: 0;
}

.oc-bc-picture {
  display: block;
  width: 100%;
}

.oc-bc-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-bc-card:hover .oc-bc-img {
  transform: scale(1.02);
}

.oc-bc-caption {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  background: transparent;
}

.oc-bc-caption-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 380px;
}

.oc-bc-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.2;
}

.oc-bc-subtitle {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  margin: 0 0 8px;
  line-height: 1.45;
}

.oc-bc-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  margin: 0 0 24px;
  line-height: 1.5;
}

.oc-bc-action {
  margin-top: 4px;
}

.oc-bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.oc-bc-btn--yellow {
  background: #ffd400;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(255, 212, 0, 0.35);
}

.oc-bc-btn--yellow:hover {
  background: #0f172a;
  color: #ffd400;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

.oc-bc-btn--black {
  background: #0f172a;
  color: #ffffff;
}

.oc-bc-btn--black:hover {
  background: #ffd400;
  color: #0f172a;
  transform: translateY(-2px);
}

.oc-bc-btn--outline {
  background: transparent;
  color: #0f172a;
  border: 1.5px solid #0f172a;
}

.oc-bc-btn--outline:hover {
  background: #0f172a;
  color: #ffd400;
  transform: translateY(-2px);
}

.oc-bc-btn--white {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.oc-bc-btn--white:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .oc-bc-card,
  .oc-bc-card--pos-right {
    grid-template-columns: 1fr;
  }
  .oc-bc-card--pos-right .oc-bc-media {
    order: 1;
  }
  .oc-bc-card--pos-right .oc-bc-caption {
    order: 2;
  }
  .oc-bc-caption {
    padding: 32px 24px;
    text-align: center;
  }
  .oc-bc-caption-inner {
    align-items: center;
    max-width: 100%;
    text-align: center;
  }
  .oc-bc-title {
    font-size: 23px;
  }
  .oc-bc-img {
    max-height: 360px;
  }
}

@media (max-width: 576px) {
  .oc-bc-card {
    border-radius: 18px;
  }
  .oc-bc-title {
    font-size: 20px;
  }
  .oc-bc-img {
    max-height: 260px;
  }
}

/* =============================================================================
   21. Mintify Category List (Buy Combo Saving)
   ============================================================================= */
.oc-cl-section {
  padding: 44px 0 48px;
  background: #ffffff;
  position: relative;
}

.oc-cl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.oc-cl-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.oc-cl-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.oc-cl-view-all:hover {
  color: #0284c7;
  transform: translateX(3px);
}

.oc-cl-view-all i {
  font-size: 11px;
}

.oc-cl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.oc-cl-grid--col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.oc-cl-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.oc-cl-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.oc-cl-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.oc-cl-card__top {
  padding: 20px 20px 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  min-height: 124px;
  box-sizing: border-box;
}

.oc-cl-card__title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.oc-cl-card__title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
  max-width: 85%;
}

.oc-cl-card__arrow {
  color: #0f172a;
  font-size: 14px;
  transition: transform 0.22s ease, color 0.22s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.oc-cl-card:hover .oc-cl-card__arrow {
  transform: translateX(4px);
  color: #e11d48;
}

.oc-cl-card__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  font-family: var(--font-body);
}

.oc-cl-card__from {
  font-size: 11.5px;
  font-weight: 500;
  color: #64748b;
  font-style: italic;
}

.oc-cl-card__price {
  font-size: 19px;
  font-weight: 900;
  color: #e11d48;
  letter-spacing: -0.01em;
}

.oc-cl-card__bottom {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.oc-cl-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-cl-card:hover .oc-cl-card__img {
  transform: scale(1.06);
}

@media (max-width: 1024px) {
  .oc-cl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .oc-cl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .oc-cl-grid--m-1 {
    grid-template-columns: 1fr;
  }
  .oc-cl-card__top {
    padding: 14px 14px 12px;
    min-height: 110px;
  }
  .oc-cl-card__title {
    font-size: 12px;
  }
  .oc-cl-card__price {
    font-size: 16px;
  }
  .oc-cl-card__bottom {
    padding: 0;
    height: 160px;
  }
  .oc-cl-card__img {
    width: 100%;
    height: 100%;
  }
}

/* =============================================================================
   22. Mintify Brand Slider
   ============================================================================= */
.oc-bs-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  clear: both;
  overflow: hidden;
  box-sizing: border-box;
}

.oc-bs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.oc-bs-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.oc-bs-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.oc-bs-swiper {
  width: 100%;
  padding: 4px 0 16px;
  overflow: hidden;
}

.oc-bs-slide {
  height: auto;
  display: flex;
}

.oc-bs-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 8px 10px;
  width: 100%;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.oc-bs-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.oc-bs-card__link,
.oc-bs-card__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.oc-bs-logo {
  max-width: 96%;
  max-height: 68px;
  object-fit: contain;
  opacity: 0.95;
  transition: all 0.25s ease;
}

.oc-bs-card:hover .oc-bs-logo {
  opacity: 1;
  transform: scale(1.06);
}

/* =============================================================================
   23. Product Detail Page (PDP) Styling
   ============================================================================= */
.oc-pdp-page {
  width: 100%;
  padding-bottom: 16px;
}

.oc-pdp-related-section {
  margin-top: 36px;
  margin-bottom: 0;
}

.oc-pdp-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 48px;
}

@media (max-width: 991px) {
  .oc-pdp-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Gallery Box */
.oc-pdp-gallery-wrap {
  width: 100%;
}

.oc-pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oc-pdp-main-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.oc-pdp-main-img-box a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-pdp-main-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.oc-pdp-lightbox-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.oc-pdp-lightbox-btn:hover {
  background: #0f172a;
  color: #ffffff;
  transform: scale(1.1);
}

/* Thumbnails */
.oc-pdp-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.oc-pdp-thumb-btn {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-pdp-thumb-btn img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.oc-pdp-thumb-btn:hover,
.oc-pdp-thumb-btn.is-active {
  border-color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  transform: translateY(-2px);
}

/* Info Panel */
.oc-pdp-info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.oc-pdp-product-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

.oc-pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}

.oc-pdp-review-count {
  color: #64748b;
  font-weight: 600;
}

.oc-pdp-write-review-link {
  color: #0284c7;
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.oc-pdp-write-review-link:hover {
  text-decoration: underline;
}

/* Price Box */
.oc-pdp-price-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oc-pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.oc-pdp-price-current {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: #ef4444;
}

.oc-pdp-price-original {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.oc-pdp-discount-badge {
  background: #ffd400;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.oc-pdp-tax-info,
.oc-pdp-reward-info {
  font-size: 13px;
  color: #64748b;
}

/* Options */
.oc-pdp-options-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.oc-pdp-option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oc-pdp-option-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f172a;
}

.oc-select-input {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  outline: none;
}

.oc-pdp-pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oc-pdp-pill {
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.oc-pdp-pill input {
  display: none;
}

.oc-pdp-pill img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.oc-pdp-pill:hover,
.oc-pdp-pill.is-active {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

/* Actions Row */
.oc-pdp-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.oc-qty-stepper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  overflow: hidden;
  height: 48px;
}

.oc-qty-stepper__btn {
  width: 38px;
  height: 100%;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.oc-qty-stepper__btn:hover {
  background: #f1f5f9;
}

.oc-qty-stepper__input {
  width: 44px;
  border: none;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  outline: none;
  -moz-appearance: textfield;
}

.oc-qty-stepper__input::-webkit-outer-spin-button,
.oc-qty-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.oc-pdp-add-cart-btn {
  flex: 1;
  height: 48px;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-pdp-add-cart-btn:hover {
  background: #ffd400;
  color: #0f172a;
  box-shadow: 0 8px 22px rgba(255, 212, 0, 0.35);
  transform: translateY(-2px);
}

.oc-pdp-icon-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #64748b;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.oc-pdp-icon-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: #fef2f2;
}

/* Trust Badges Grid */
.oc-pdp-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}

.oc-pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 12px;
  padding: 10px 14px;
}

.oc-pdp-trust-item i {
  font-size: 20px;
  color: #0f172a;
}

.oc-pdp-trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}

.oc-pdp-trust-item span {
  display: block;
  font-size: 11px;
  color: #64748b;
}

/* Tabs Section */
.oc-pdp-tabs-section {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  margin-bottom: 48px;
}

.oc-pdp-tab-headers {
  display: flex;
  background: #f8fafc;
  border-bottom: 1.5px solid #e2e8f0;
  overflow-x: auto;
}

.oc-pdp-tab-btn {
  padding: 16px 28px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.oc-pdp-tab-btn:hover {
  color: #0f172a;
}

.oc-pdp-tab-btn.is-active {
  color: #0f172a;
  background: #ffffff;
  border-bottom-color: #0f172a;
}

.oc-pdp-tab-content-wrap {
  padding: 28px;
}

.oc-pdp-tab-pane {
  display: none;
}

.oc-pdp-tab-pane.is-active {
  display: block;
}

.oc-pdp-description-body {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #334155;
  line-height: 1.7;
}

.oc-pdp-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed #e2e8f0;
}

.oc-pdp-tag-pill {
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.oc-pdp-tag-pill:hover {
  background: #0f172a;
  color: #ffffff;
}

/* Specifications Table */
.oc-pdp-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.oc-pdp-spec-table th {
  background: #f8fafc;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 12px 18px;
  border-bottom: 1.5px solid #e2e8f0;
  text-align: left;
}

.oc-pdp-spec-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #f1f5f9;
}

.oc-pdp-spec-label {
  width: 35%;
  font-weight: 700;
  color: #475569;
}

.oc-pdp-spec-value {
  color: #0f172a;
}

/* Review Tab Styling */
.oc-review-form-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

.oc-review-form-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oc-input-text {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #0f172a;
  outline: none;
  box-sizing: border-box;
}

.oc-textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #0f172a;
  outline: none;
  box-sizing: border-box;
  resize: vertical;
}

.oc-input-text:focus,
.oc-textarea:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.oc-form-note {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  display: block;
}

.oc-rating-select {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.oc-rating-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.oc-rating-star-pill {
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.oc-rating-star-pill input {
  display: none;
}

.oc-rating-star-pill i {
  color: #ffd400;
}

.oc-rating-star-pill:hover,
.oc-rating-star-pill.is-active {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
}

.oc-btn-submit-review {
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.oc-btn-submit-review:hover {
  background: #ffd400;
  color: #0f172a;
}

/* Review List Cards */
.oc-review-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 22px;
}

.oc-review-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.oc-review-item__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.oc-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-review-author-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.oc-review-date {
  font-size: 12px;
  color: #94a3b8;
}

.oc-review-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

.oc-empty-review {
  text-align: center;
  padding: 32px 20px;
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 16px;
  color: #64748b;
  font-size: 14px;
}

/* Contact Us Page Styling */
.oc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 991px) {
  .oc-contact-grid {
    grid-template-columns: 1fr;
  }
}

.oc-contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oc-contact-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.oc-contact-card:hover {
  border-color: #0f172a;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.oc-contact-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.oc-contact-card__body h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}

.oc-contact-card__body address,
.oc-contact-card__body p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  font-style: normal;
}

.oc-contact-card__body a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.oc-contact-card__body a:hover {
  color: #0284c7;
}

.oc-contact-subtext {
  font-size: 12px;
  color: #94a3b8;
  display: block;
  margin-top: 4px;
}

.oc-btn-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f172a !important;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 6px 14px;
  border-radius: 8px;
  margin-top: 10px;
  transition: all 0.2s ease;
}

.oc-btn-map:hover {
  background: #0f172a;
  color: #ffffff !important;
}

.oc-contact-form-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.oc-contact-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.oc-contact-form-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

/* Map Section between Main Content & Footer */
.oc-contact-map-wrap {
  margin-top: 48px;
  margin-bottom: 0;
}

.oc-contact-map-box {
  width: 100%;
  height: 420px;
  background: #f1f5f9;
  border-top: 1.5px solid #e2e8f0;
  border-bottom: 1.5px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}

.oc-contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Information & Sitemap Page Styling */
.oc-information-page,
.oc-sitemap-page,
.oc-contact-page,
.oc-pdp-page,
.oc-cat-page {
  padding-bottom: 48px;
}

.oc-info-article-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.oc-info-article-content {
  font-family: var(--font-body);
  font-size: 15px;
  color: #334155;
  line-height: 1.8;
}

.oc-info-article-content h1,
.oc-info-article-content h2,
.oc-info-article-content h3,
.oc-info-article-content h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #0f172a;
  margin-top: 24px;
  margin-bottom: 12px;
}

.oc-info-article-content p {
  margin-bottom: 16px;
}

.oc-info-article-content ul,
.oc-info-article-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.oc-info-article-content li {
  margin-bottom: 6px;
}

/* Sitemap Styling */
.oc-sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .oc-sitemap-grid {
    grid-template-columns: 1fr;
  }
}

.oc-sitemap-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.oc-sitemap-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.oc-sitemap-tree,
.oc-sitemap-tree ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.oc-sitemap-tree ul {
  padding-left: 20px;
  margin-top: 6px;
  border-left: 2px dashed #cbd5e1;
}

.oc-sitemap-tree li {
  margin-bottom: 8px;
}

.oc-sitemap-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: #334155;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.oc-sitemap-link.is-parent {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #0f172a;
  font-size: 15px;
}

.oc-sitemap-link:hover {
  color: #0284c7;
  transform: translateX(3px);
}

/* Brand / Manufacturer List Styling */
.oc-brand-index-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.oc-brand-index-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f172a;
}

.oc-brand-index-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.oc-brand-index-pill {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.oc-brand-index-pill:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.oc-brand-letter-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.oc-brand-letter-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-brand-letter-line {
  flex: 1;
  height: 1.5px;
  background: #e2e8f0;
}

.oc-brand-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.oc-brand-card:hover {
  border-color: #0f172a;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.oc-brand-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-brand-card__name {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.oc-brand-card__arrow {
  font-size: 11px;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.oc-brand-card:hover .oc-brand-card__arrow {
  color: #0f172a;
  transform: translateX(3px);
}

/* 404 Error Page Styling */
.oc-404-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.oc-404-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
}

.oc-404-code {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.oc-404-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
}

.oc-404-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.oc-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


