/* =============================================
   DRAGON PRIME ENTERPRISE - HOMEPAGE STYLES
   Color Palette: Yellow #FFD100, Black #0D0D0D, White #FFFFFF
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

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

:root {
  --yellow: #FFD100;
  --yellow-dark: #E6BC00;
  --yellow-glow: rgba(255, 209, 0, 0.3);
  --black: #0D0D0D;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #222222;
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.85);
  --white-muted: rgba(255, 255, 255, 0.55);
  --gray: #888888;
  --light-gray: #f5f5f5;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-sub: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-yellow: 0 0 30px rgba(255, 209, 0, 0.25);
  --shadow-card: 0 10px 40px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 3px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--black);
  color: var(--white-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.top-bar-item:hover {
  color: var(--yellow);
}

.top-bar-item i {
  color: var(--yellow);
  font-size: 13px;
}

.top-bar-socials {
  display: flex;
  gap: 10px;
}

.top-bar-socials a {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  font-size: 12px;
  transition: var(--transition);
}

.top-bar-socials a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: auto;
  filter: none;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-menu li a {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-menu li a:hover {
  color: var(--yellow-dark);
  background: rgba(255, 209, 0, 0.08);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: scaleX(1);
}

.nav-menu li a.active {
  color: var(--yellow-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 209, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-yellow:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 209, 0, 0.35);
}

.nav-search-btn {
  width: 42px;
  height: 42px;
  background: var(--light-gray);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--black);
  font-size: 15px;
}

.nav-search-btn:hover {
  background: var(--yellow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  background: var(--black);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,209,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,209,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-accent {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,209,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-accent-2 {
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,209,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-slides {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-slide {
  display: none;
  min-height: 600px;
  align-items: center;
}

.hero-slide.active {
  display: flex;
}

.hero-slide .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 209, 0, 0.15);
  border: 1px solid rgba(255, 209, 0, 0.4);
  color: var(--yellow);
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hero-title span {
  color: var(--yellow);
}

.hero-subtitle {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 500;
  color: var(--white-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(255,209,0,0.3));
  animation: float 4s ease-in-out infinite;
}

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

.hero-image-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 209, 0, 0.15);
  animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 0.3; }
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  width: 28px;
  background: var(--yellow);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.hero-arr-btn {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.hero-arr-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--yellow);
  padding: 0;
  overflow: hidden;
}

.stats-inner {
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 26px 20px;
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(0,0,0,0.06);
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  flex-shrink: 0;
}

.stat-info .num {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--black);
  line-height: 1;
}

.stat-info .label {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 12px;
}

.section-dark .section-tag {
  color: var(--yellow);
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 1px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 14px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-title span {
  color: var(--yellow);
}

.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-sub {
  color: var(--white-muted);
}

/* =============================================
   ABOUT / WHY US SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: grayscale(15%);
  transition: var(--transition);
}

.about-img-main:hover {
  filter: grayscale(0%);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255,209,0,0.4);
}

.about-img-badge .num {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1;
  display: block;
}

.about-img-badge .txt {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-content {
  padding: 10px 0;
}

.about-list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.about-list li .check {
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
  color: var(--black);
  font-weight: 700;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(255, 209, 0, 0.4);
}

.product-card-img {
  background: var(--light-gray);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-card-body {
  padding: 18px;
}

.product-card-name {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card-price {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}

.product-card-btn {
  width: 100%;
  padding: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--black);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-card-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: none;
}

.products-cta {
  text-align: center;
  margin-top: 50px;
}

/* =============================================
   BRANDS / PARTNERS STRIP
   ============================================= */
.brands-strip {
  background: var(--black);
  padding: 50px 0;
  overflow: hidden;
}

.brands-header {
  text-align: center;
  margin-bottom: 36px;
}

.brands-label {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
}

.brands-track {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-item {
  font-family: var(--font-heading);
  font-size: 26px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: default;
}

.brand-item:hover {
  color: var(--yellow);
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(255, 209, 0, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 209, 0, 0.12);
  border: 1px solid rgba(255, 209, 0, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--yellow);
  margin-bottom: 22px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--yellow);
  color: var(--black);
}

.feature-title {
  font-family: var(--font-sub);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.7;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.contact-info p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  flex-shrink: 0;
}

.contact-item-info .lbl {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-item-info .val {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.contact-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(0,0,0,0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
  filter: grayscale(30%);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.contact-form p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--light-gray);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,209,0,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,209,0,0.4);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #080808;
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  font-size: 14px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links li a {
  font-size: 14px;
  color: var(--white-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a::before {
  content: '›';
  color: var(--yellow);
  font-size: 18px;
  line-height: 1;
}

.footer-links li a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--white-muted);
}

.footer-contact-list li i {
  color: var(--yellow);
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom p span {
  color: var(--yellow);
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
}

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

.mobile-nav-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.mobile-nav-panel {
  position: relative;
  background: var(--white);
  width: min(320px, 85vw);
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
  animation: slide-in 0.3s ease;
}

@keyframes slide-in {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.mobile-nav-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  background: var(--light-gray);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: var(--yellow);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  padding: 13px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-nav-links li a:hover {
  background: rgba(255, 209, 0, 0.1);
  color: var(--yellow-dark);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  border: none;
  box-shadow: 0 6px 20px rgba(255,209,0,0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--yellow-dark);
  transform: translateY(-4px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
  }

  .nav-menu,
  .nav-search-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-slide .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    max-width: 280px;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-badge {
    right: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .stats-inner {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

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

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .top-bar-right {
    display: none;
  }

  .hero-title {
    font-size: 40px;
  }
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 360px;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,209,0,0.07) 0%, transparent 60%), linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  background: rgba(255,209,0,0.1);
  border: 1px solid rgba(255,209,0,0.2);
  padding: 6px 16px;
  border-radius: 100px;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 72px);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 18px;
}
.page-hero-title span { color: var(--yellow); }
.page-hero-sub {
  font-size: 16px;
  color: var(--white-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 24px;
  text-align: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumb a { color: var(--white-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }
.breadcrumb i { font-size: 10px; color: rgba(255,255,255,0.3); }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: var(--black);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,209,0,0.06) 0%, transparent 70%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-text p { font-size: 15px; color: var(--white-muted); }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* =============================================
   FAQ STYLES
   ============================================= */
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}
.faq-sidebar-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.faq-sidebar-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--black);
  margin: 0 auto 18px;
}
.faq-sidebar-card h3 { font-family: var(--font-sub); font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.faq-sidebar-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--yellow); box-shadow: 0 8px 30px rgba(255,209,0,0.08); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { background: rgba(255,209,0,0.04); }
.faq-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--black);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon-wrap { background: var(--black); color: var(--yellow); }
.faq-q-text { flex: 1; font-family: var(--font-sub); font-size: 16px; font-weight: 700; color: var(--black); line-height: 1.4; }
.faq-toggle {
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--black);
  transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--yellow); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 22px 80px; font-size: 15px; color: var(--gray); line-height: 1.8; }

/* =============================================
   LIGHT FEATURE CARDS (About page)
   ============================================= */
.feature-card-light {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  transition: var(--transition);
}
.feature-card-light:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,209,0,0.1);
}
.feature-icon-light {
  width: 64px;
  height: 64px;
  background: rgba(255,209,0,0.12);
  border: 2px solid rgba(255,209,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--yellow-dark);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.feature-card-light:hover .feature-icon-light { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.feature-card-light h3 { font-family: var(--font-sub); font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.feature-card-light p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* =============================================
   PRODUCTS PAGE EXTRAS
   ============================================= */
.product-card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.product-card-category {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.products-grid-full { grid-template-columns: repeat(4, 1fr); }

/* RESPONSIVE INNER PAGES */
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 260px 1fr; }
}
@media (max-width: 768px) {
  .page-hero { min-height: 280px; padding: 80px 0 50px; }
  .faq-layout { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .products-grid-full { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .page-hero-title { font-size: 38px; }
  .faq-answer p { padding-left: 24px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .products-grid-full { grid-template-columns: 1fr; }
}

/* =============================================
   SHOP PAGE LAYOUT
   ============================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}




.shop-widget {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 20px;
}

.shop-widget-title {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.shop-search-bar {
  display: flex;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.shop-search-bar input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--light-gray);
}
.shop-search-bar button {
  padding: 10px 16px;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  color: var(--black);
  font-size: 15px;
  transition: var(--transition);
}
.shop-search-bar button:hover { background: var(--yellow-dark); }

.cat-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.cat-list a:hover { background: rgba(255,209,0,0.1); }
.cat-list a.active { background: var(--yellow); font-weight: 700; }
.cat-count {
  background: rgba(0,0,0,0.08);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
}
.cat-list a.active .cat-count { background: rgba(0,0,0,0.15); }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gray);
}
.shop-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--yellow-dark);
  font-weight: 600;
  text-decoration: none;
}

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

.product-card-cat {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 6px;
}

.price-old {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 13px;
  margin-right: 6px;
}
.price-sale { color: var(--yellow-dark); font-weight: 700; font-size: 20px; }

.product-sale-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow-dark);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
  border: 2px solid rgba(0,0,0,0.06);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: var(--transition);
}
.out-stock-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}
.sale-overlay {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--yellow-dark);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
  border: 2.5px solid rgba(0,0,0,0.08);
  background: var(--light-gray);
  padding: 4px;
  transition: var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active {
  border-color: var(--yellow);
}

.product-brand {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 10px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--black);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.product-price-main {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--black);
  line-height: 1;
}
.product-price-main.sale { color: var(--yellow-dark); }
.product-price-old {
  font-size: 18px;
  color: var(--gray);
  text-decoration: line-through;
}
.product-price-contact {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 1px;
}
.product-save-badge {
  background: rgba(255,209,0,0.15);
  color: var(--yellow-dark);
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.product-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.product-stock-badge.in { background: rgba(46,204,113,0.12); color: #27ae60; }
.product-stock-badge.out { background: rgba(231,76,60,0.12); color: #e74c3c; }

.product-description {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  border-left: 4px solid var(--yellow);
  white-space: normal;
}
.product-description strong { font-weight: 700; color: var(--black); }
.product-description ul { margin: 10px 0 10px 22px; }
.product-description li { margin-bottom: 4px; line-height: 1.7;

}

.product-meta {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.product-meta-row .lbl {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  min-width: 80px;
}
.product-meta-row .val { color: var(--black); font-weight: 600; }
.product-meta-row .val-link { color: var(--yellow-dark); font-weight: 600; text-decoration: none; }
.product-meta-row .val-link:hover { text-decoration: underline; }

.product-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-contact-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--light-gray);
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.06);
}

/* RESPONSIVE SHOP */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 220px 1fr; }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { order: 2; }
  .shop-main { order: 1; }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.1);
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.page-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 209, 0, 0.3);
}

.page-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--yellow);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.page-btn i {
  font-size: 12px;
}

@media (max-width: 768px) {
  .top-bar { display: none; }
}
