/* 
  Vanderschueren Classics - Retro-Classic Premium Design System
  Colors: Gold (#d4af37), Charcoal (#121212), Red (#A93226), Silver/Cream (#e5e5e0)
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Alex+Brush&display=swap');

:root {
  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-script: 'Alex Brush', cursive;
  --font-body: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Borders & Spacing */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --max-width: 1200px;
  
  /* Shared Colors (from logo) */
  --color-gold: #d4af37;
  --color-gold-hover: #b89028;
  --color-gold-glow: rgba(212, 175, 55, 0.15);
  --color-red: #A93226;
  --color-red-hover: #8e281e;
  --color-red-glow: rgba(169, 50, 38, 0.2);
  
  /* Dark Mode (Default) variables */
  --bg-main: #121212;
  --bg-card: #1c1c1c;
  --bg-card-hover: #242424;
  --bg-glass: rgba(18, 18, 18, 0.85);
  --bg-modal: rgba(22, 22, 22, 0.98);
  --border-color: rgba(212, 175, 55, 0.3);
  --border-color-light: rgba(255, 255, 255, 0.08);
  --text-main: #e5e5e0;
  --text-muted: #a0a09b;
  --text-inverse: #121212;
  --shadow-main: 0 10px 40px rgba(0, 0, 0, 0.6);
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.3);
  --scrollbar-track: #151515;
  --scrollbar-thumb: #d4af37;
}

[data-theme="light"] {
  /* Light Mode (Warm vintage cream/parchment & charcoal) */
  --bg-main: #fcf9f2;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfcfc;
  --bg-glass: rgba(252, 249, 242, 0.85);
  --bg-modal: rgba(255, 255, 255, 0.98);
  --border-color: rgba(212, 175, 55, 0.45);
  --border-color-light: rgba(0, 0, 0, 0.08);
  --text-main: #1c1c1c;
  --text-muted: #6e6e68;
  --text-inverse: #ffffff;
  --shadow-main: 0 10px 40px rgba(212, 175, 55, 0.08);
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
  --scrollbar-track: #f5f2eb;
  --scrollbar-thumb: #b89028;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  transition: background-color 0.4s ease, color 0.4s ease;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-hover);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.flowing-title {
  font-family: var(--font-script);
  color: var(--color-gold);
  font-size: 3rem;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: normal;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-top: -0.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

/* Retro double underline effect */
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background: var(--color-gold);
}

.section-header h2::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 35%;
  width: 30%;
  height: 1px;
  background: var(--color-red);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* 1. Header & Navigation (Floating Exploration Bar) */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid var(--color-gold);
  background: var(--bg-glass);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-logo {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

header.scrolled .nav-logo {
  height: 48px;
}

.brand-details {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav Menu */
nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-fast);
}

nav a:hover, nav li.active a {
  color: var(--color-gold);
}

nav a:hover::after, nav li.active a::after {
  width: 100%;
}

/* Nav Right Actions */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.25rem;
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.icon-btn:hover {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-color);
}

/* Cart Badge */
.cart-btn .cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--color-red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--bg-main);
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
}

/* Hero Section */
#home {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 90px;
  overflow: hidden;
  background: radial-gradient(circle, rgba(28,28,28,0.7) 0%, rgba(18,18,18,0.95) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35) contrast(1.1);
  transform: scale(1.02);
  transition: transform 10s ease;
}

#home:hover .hero-bg {
  transform: scale(1.05);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-large {
  max-height: 180px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.hero-content p {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

/* Premium Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 1rem 2.2rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--color-gold);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--text-inverse);
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
}

.btn-secondary:hover {
  background: var(--color-gold-glow);
  transform: translateY(-2px);
}

/* Section Common padding */
section {
  padding: 8rem 0;
  position: relative;
}

/* Alternating Section Backgrounds */
section:nth-of-type(even) {
  background-color: var(--bg-card);
}

/* 3. Instagram Portfolio Section - Carousel */
.instagram-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.instagram-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.instagram-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Slide item */
.instagram-carousel-track .instagram-card {
  flex-shrink: 0;
  width: calc((100% - 4rem) / 3); /* 3 items visible */
  padding-bottom: calc((100% - 4rem) / 3); /* Keep square ratio */
}

@media (max-width: 900px) {
  .instagram-carousel-track .instagram-card {
    width: calc((100% - 2rem) / 2); /* 2 items visible */
    padding-bottom: calc((100% - 2rem) / 2);
  }
}

@media (max-width: 600px) {
  .instagram-carousel-track .instagram-card {
    width: 100%; /* 1 item visible */
    padding-bottom: 100%;
  }
}

/* Nav Buttons */
.carousel-nav-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--color-gold);
  height: 48px;
  width: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-light);
  z-index: 5;
  flex-shrink: 0;
}

.carousel-nav-btn:hover {
  background: var(--color-gold);
  color: var(--text-inverse);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--border-color-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background: var(--color-gold);
  width: 20px;
  border-radius: 4px;
}

.instagram-card {
  position: relative;
  padding-bottom: 100%; /* Perfect Square */
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color-light);
  cursor: pointer;
}

.instagram-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.instagram-card:hover .instagram-img {
  transform: scale(1.06);
}

.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

.ig-stats {
  display: flex;
  gap: 2rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.instagram-card:hover .ig-stats {
  transform: translateY(0);
}

.ig-stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ig-stat-item i {
  color: var(--color-gold);
}

.ig-handle-tag {
  color: var(--color-gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border-top: 1px solid var(--border-color);
  padding-top: 0.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

.instagram-card:hover .ig-handle-tag {
  transform: translateY(0);
  opacity: 1;
}

/* 4. About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-main);
}

/* Double retro borders on about image */
.about-image-inner {
  border: 4px solid var(--bg-main);
  border-radius: calc(var(--border-radius-lg) - 4px);
  overflow: hidden;
  display: block;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.03);
}

/* 5. Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.info-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-light);
}

.info-icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  border: 1px solid var(--border-color);
  color: var(--color-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.info-details p, .info-details a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.info-details a:hover {
  color: var(--color-gold);
}

/* Map Styled Block */
.map-placeholder {
  height: 250px;
  width: 100%;
  background: #151515;
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-md);
  position: relative;
  overflow: hidden;
}

.map-svg-mock {
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.map-marker {
  color: var(--color-red);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.map-overlay p {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

/* Contact Form */
.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-main);
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid var(--border-color-light);
  border-radius: calc(var(--border-radius-lg) - 4px);
  pointer-events: none;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  background: var(--bg-main);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-sm);
  color: var(--text-main);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* 6. Footer Section */
footer {
  background: #0d0d0d;
  color: #999;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-color);
  position: relative;
}

/* Racing line indicator on footer top */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--color-gold) 0%, var(--color-gold) 50%,
    var(--color-red) 50%, var(--color-red) 100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 70px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #181818;
  border: 1px solid var(--border-color-light);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--color-gold);
  color: var(--text-inverse);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.85rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

/* 8. Modals System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-modal);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-main);
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}



/* Instagram Lightbox Modal Content */
.instagram-lightbox-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  height: 600px;
  max-height: 80vh;
}

.lightbox-media {
  background: #000000;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-sidebar {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  height: 100%;
  overflow: hidden;
}

.lightbox-author {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color-light);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
}

.author-info h4 {
  font-size: 0.85rem;
  color: var(--text-main);
  letter-spacing: 0.05em;
}

.author-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.lightbox-feed {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lightbox-caption p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid var(--border-color-light);
  padding-top: 1.5rem;
}

.comment-item {
  font-size: 0.85rem;
  line-height: 1.5;
}

.comment-username {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-right: 0.5rem;
}

.comment-text {
  color: var(--text-main);
}

.lightbox-actions {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border-color-light);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.action-btn-ig {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.2rem;
}

.action-btn-ig:hover {
  color: var(--color-gold);
  transform: scale(1.1);
}

.action-btn-ig.liked {
  color: var(--color-red);
  animation: pop 0.3s ease;
}

.likes-counter {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.post-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lightbox-comment-form {
  border-top: 1px solid var(--border-color-light);
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.comment-input {
  flex-grow: 1;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 0.85rem;
  outline: none;
  font-family: var(--font-body);
}

.comment-submit-btn {
  background: none;
  border: none;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.comment-submit-btn:hover {
  color: var(--color-gold-hover);
}



/* 9. Theme Switch Styles */
.theme-switch-btn i {
  transition: var(--transition-smooth);
}

/* Dark mode theme styles adjustments */
[data-theme="light"] .theme-switch-btn i::before {
  content: "\f186"; /* FontAwesome Moon icon */
}

/* 10. Toasts/Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: var(--bg-card);
  border-left: 4px solid var(--color-gold);
  border-top: 1px solid var(--border-color-light);
  border-right: 1px solid var(--border-color-light);
  border-bottom: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-main);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-main);
  font-size: 0.85rem;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 300px;
}

.toast.active {
  transform: translateX(0);
}

.toast.toast-error {
  border-left-color: var(--color-red);
}

.toast-icon {
  font-size: 1.1rem;
  color: var(--color-gold);
}

.toast-error .toast-icon {
  color: var(--color-red);
}

.toast-content h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.toast-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 11. Keyframe Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

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

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 0.9; transform: scale(1.1); }
  80% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* 12. Media Queries */
@media (max-width: 1024px) {
  header {
    padding: 0 2rem;
  }
  
  .about-grid {
    gap: 2rem;
  }

}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    order: -1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .instagram-lightbox-layout {
    grid-template-columns: 1fr;
    height: auto;
    max-height: 90vh;
  }
  
  .lightbox-media {
    height: 350px;
  }
  
  .lightbox-sidebar {
    height: 300px;
  }
  
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
  
  .product-detail-media {
    height: 300px;
  }
  
  .product-detail-info {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    height: 70px;
  }
  
  /* Mobile Menu Toggle */
  .mobile-menu-btn {
    display: flex;
    font-size: 1.5rem;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-modal);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    transform: translateY(-120%);
    transition: var(--transition-smooth);
    z-index: 900;
  }
  
  nav.active {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
  }

  
  .shop-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .sort-wrapper {
    width: 100%;
    justify-content: space-between;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================
   13. AUTOMATIC MOBILE ADAPTATIONS & TOUCH TWEAKS
   ========================================== */

/* A. Body Scroll Lock when Modals / Cart Drawer are open */
body.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none; /* Prevents touch dragging scroll */
}

/* B. Disable Sticky Hover Effects on Mobile Touch Interfaces */
body.is-mobile .product-card:hover,
@media (hover: none) or (pointer: coarse) {
  .product-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-main) !important;
  }
  
  .btn:hover,
  .social-btn:hover,
  .action-btn-ig:hover {
    transform: none !important;
  }
  
  .product-card .add-to-cart-btn:hover {
    background: var(--color-gold) !important;
    color: var(--text-inverse) !important;
    transform: none !important;
  }
}

/* C. Prevent viewport zoom on input focus for mobile (requires min-size 16px) */
@media (max-width: 768px) {
  /* Forms inputs size fix */
  .form-control,
  .form-input,
  .form-textarea,
  .form-select,
  .comment-input {
    font-size: 16px !important;
  }
  
  /* Modal overlays optimized padding and scrolling for small screens */
  .modal-card {
    padding: 1.5rem !important;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .product-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Fix touch target sizing for buttons (minimum 44x44px for accessibility) */
  .icon-btn, 
  .close-btn,
  .carousel-nav-btn,
  .qty-btn,
  .add-to-cart-btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .carousel-dots {
    padding: 1rem 0;
  }
}

/* ==========================================
   14. EBAY SHOWROOM CAROUSEL STYLES
   ========================================== */

#ebay-shop {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.ebay-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5rem; /* space for absolute positioned arrows */
}

.ebay-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.ebay-carousel-track {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Product Card in Carousel */
.ebay-card {
  flex: 0 0 calc((100% - 5rem) / 3); /* 3 items visible, gap = 2.5rem */
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.ebay-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-main);
}

.ebay-card-image-wrapper {
  position: relative;
  padding-bottom: 100%; /* Square ratio */
  overflow: hidden;
  background: #181818;
}

.ebay-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ebay-card:hover .ebay-card-image {
  transform: scale(1.06);
}

.ebay-card-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ebay-card-category {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ebay-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  color: var(--text-main);
  height: 2.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ebay-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color-light);
}

.ebay-card-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.ebay-buy-btn {
  background: none;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.ebay-buy-btn:hover {
  background: var(--color-gold);
  color: var(--text-inverse);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Responsiveness */
@media (max-width: 900px) {
  .ebay-card {
    flex: 0 0 calc((100% - 2.5rem) / 2); /* 2 items visible */
  }
  .ebay-carousel-container {
    padding: 0 2.5rem;
  }
}

@media (max-width: 600px) {
  .ebay-card {
    flex: 0 0 100%; /* 1 item visible */
  }
  .ebay-carousel-container {
    padding: 0;
  }
  .ebay-carousel-container .carousel-nav-btn {
    display: none; /* arrows not needed, swipes will work */
  }
}

/* B. Disable Sticky Hover Effects on Mobile Touch Interfaces */
body.is-mobile .ebay-card:hover,
@media (hover: none) or (pointer: coarse) {
  .ebay-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-main) !important;
  }
  .ebay-card:hover .ebay-card-image {
    transform: none !important;
  }
  .ebay-buy-btn:hover {
    transform: none !important;
  }
}




