@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- STITCH DESIGN SYSTEM (PRO) --- */
:root {
  /* Colors - Obsidian & Radiant Gold */
  --bg-dark: #020408;
  --bg-surface: #0a0c14;
  --accent: #FFD700; /* Traditional Gold */
  --accent-glow: rgba(255, 215, 0, 0.4);
  --text-main: #FFFFFF;
  --text-secondary: #9499ab;
  --text-muted: #4e566b;
  
  /* Glassmorphism */
  --glass: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-high: rgba(255, 255, 255, 0.05);
  
  /* Radii & Shadows */
  --radius-xl: 40px;
  --radius-lg: 24px;
  --radius-md: 12px;
  --shadow-main: 0 10px 40px rgba(0,0,0,0.8);
  --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Base & Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: visible;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Atmospheric effects --- */
.blob {
  position: fixed;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  z-index: -1;
  filter: blur(120px);
  pointer-events: none;
  animation: blob-float 20s infinite alternate ease-in-out;
}

@keyframes blob-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(50px, 50px) scale(1.1); }
}

.icon-box {
  width: 80px;
  height: 80px;
  background: var(--glass-high);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition);
  color: var(--accent);
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.icon-box:hover {
  border-color: var(--accent);
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 15px 40px var(--accent-glow);
}

/* --- Components: Stitch Card --- */
.stitch-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stitch-card:hover {
  background: var(--glass-high);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-8px);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: var(--glass-high);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition);
  color: var(--accent);
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.icon-box:hover {
  border-color: var(--accent);
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 15px 40px var(--accent-glow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: var(--transition);
}

.logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: #fff; /* Keeping white background but making it look intentional with a border and glow */
  box-shadow: 0 0 20px var(--accent-glow), inset 0 0 10px rgba(0,0,0,0.1);
  display: block;
  transition: var(--transition);
}

.logo:hover img {
  transform: rotate(15deg) scale(1.1);
  border-color: var(--accent);
}

/* --- Components: Premium Button --- */
.btn-stitch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2.6rem;
  background: var(--accent);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  border: 2px solid var(--accent);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
  text-align: center;
}

.btn-stitch:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.2);
  transform: translateY(-1px);
}

.btn-stitch:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

.btn-stitch.btn-small {
  padding: 0.8rem 1.8rem;
  font-size: 0.75rem;
}

.btn-stitch.btn-full {
  width: 100%;
}

.btn-stitch.btn-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.btn-stitch.btn-dark:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* --- Typography (Luxury) --- */
h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to right, #fff 0%, #d4af37 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1rem;
  position: relative;
}

.brand-font::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.label-stitch {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* --- Layout --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

nav {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1300px;
  z-index: 2000;
  transition: var(--transition);
}

nav.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
  background: rgba(10, 12, 20, 0.95);
}

.nav-glass {
  background: rgba(10, 12, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

nav.scrolled .nav-glass {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

/* --- Ultra-Premium Cart Button --- */
.cart-btn-premium {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.7rem 1.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: visible; /* Changed to show count badge properly */
  backdrop-filter: blur(15px);
}

.cart-btn-premium .basket-text {
  display: inline-block;
}

.cart-btn-premium::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: 0.8s;
}

.cart-btn-premium:hover {
  border-color: var(--accent);
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.cart-btn-premium:hover::before {
  left: 100%;
}

.cart-btn-premium.has-items::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 100px;
  box-shadow: 0 0 0 2px var(--accent);
  animation: cart-pulse-ring 2s infinite;
}

@keyframes cart-pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  background: #fff;
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--accent);
}

/* Mobile dropdown nav */
.mobile-dropdown {
  display: none;
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: rgba(10, 12, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 2001;
  flex-direction: column;
  gap: 0;
  animation: dropdownSlide 0.3s ease;
}

.mobile-dropdown.open {
  display: flex;
}

.mobile-dropdown a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.mobile-dropdown a:last-child {
  border-bottom: none;
}

.mobile-dropdown a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

@keyframes dropdownSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 15vw 1rem;
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  background: linear-gradient(to bottom, #fff 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  opacity: 0;
  transform: translateY(30px);
  animation: hero-reveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* --- Bento Grid (Products) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
  margin-top: 4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.bento-item {
  grid-column: span 2;
}

.bento-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.product-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 350px;
  background: #000;
  margin-bottom: 1.5rem;
  position: relative;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.stitch-card:hover img {
  transform: scale(1.08) translateY(-10px);
}

.product-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(2, 4, 8, 0.4), transparent);
  pointer-events: none;
}

/* --- Footer --- */
footer {
  padding: 8rem 0 4rem;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(to bottom, transparent, var(--bg-surface));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
}

/* --- Cart Page Components --- */
.cart-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--glass-border);
}

.cart-item-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.cart-item-price {
  color: var(--accent);
  font-weight: 700;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.05);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
}

.qty-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

.qty-value {
  font-weight: 800;
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: rgba(255, 80, 80, 0.7);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.remove-btn:hover {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* Grand Total Card */
.cart-total-card {
  margin-top: 2rem;
  background: var(--glass);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.cart-total-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  margin-bottom: 1.5rem;
}

.cart-total-label {
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.cart-total-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

.cart-total-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Checkout Form Card */
.checkout-form-card {
  margin-top: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.checkout-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.checkout-title i {
  margin-right: 0.5rem;
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-input {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}

.checkout-input::placeholder {
  color: var(--text-muted);
}

.checkout-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.checkout-input-disabled {
  background: rgba(255,255,255,0.02);
  color: var(--text-secondary);
}

.checkout-row {
  display: flex;
  gap: 1rem;
}

.checkout-row .checkout-input {
  width: 50%;
}

/* --- Background Experience (Atmospheric) --- */
.promise-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(30px);
  padding: 4rem;
  text-align: center;
}

.section-3d {
  will-change: transform;
}

.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), 
              transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.mobile-premium-bg {
  display: none;
}

#mobile-canvas-bg {
  display: none;
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-premium-bg {
    display: none !important;
  }

  #mobile-canvas-bg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
  }

  .blob {
    display: none;
  }

  nav {
    top: 10px;
  }
  
  .nav-glass {
    padding: 0.5rem 0.8rem;
    gap: 0.5rem;
    justify-content: space-between;
  }
  
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo img {
    height: 36px !important;
    width: 36px !important;
  }

  .brand-font {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  /* Compact Mobile Basket */
  .cart-btn-premium {
    padding: 0;
    width: 40px;
    height: 40px;
    gap: 0;
    min-width: unset;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .cart-btn-premium .basket-text {
    display: none;
  }

  .cart-icon-wrapper i {
    font-size: 1.2rem; /* Make the basket icon bigger */
  }

  .cart-count {
    top: -6px;
    right: -8px;
    padding: 0px 4px;
    font-size: 0.55rem;
    height: 14px;
    min-width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  
  .hero {
    padding-top: 25vw;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn-stitch {
    width: 100%;
    max-width: 300px;
  }

  h2, h2[style] {
    font-size: 2rem !important;
    margin-bottom: 2rem !important;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .bento-item, .bento-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .product-img-wrapper, .product-img-wrapper[style] {
    height: 250px !important;
  }
  
  .section {
    padding: 3rem 0;
  }

  .promise-card {
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
  }

  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .stitch-card {
    padding: 1.5rem;
  }

  /* Fix for inline grids */
  div[style*="grid-template-columns:"], 
  .section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  /* Cart page mobile fixes */
  .cart-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
  }

  .cart-item-info {
    gap: 1rem;
    width: 100%;
  }

  .cart-item-img {
    width: 55px;
    height: 55px;
  }

  .cart-item-text h4 {
    font-size: 1rem;
  }

  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
  }

  .cart-total-card {
    padding: 1.5rem;
  }

  .cart-total-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .cart-total-price {
    font-size: 1.8rem;
  }

  .checkout-form-card {
    padding: 1.5rem;
  }

  .checkout-row {
    flex-direction: column;
    gap: 1rem;
  }

  .checkout-row .checkout-input {
    width: 100%;
  }
}

/* --- Image Slider --- */
.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: #000;
}

.image-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.image-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

.image-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.product-img-wrapper:hover .slider-btn {
  opacity: 1;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

/* --- Floating Instagram Button --- */
.floating-ig {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: var(--glass-high);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 15px var(--accent-glow);
  z-index: 2000;
  transition: var(--transition);
  text-decoration: none;
  animation: ig-glow-pulse 2s infinite alternate;
}

.floating-ig:hover {
  transform: translateY(-5px) scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px var(--accent);
  color: #fff;
  background: var(--accent);
  border-color: #fff;
}

@keyframes ig-glow-pulse {
  0% { box-shadow: 0 0 10px var(--accent-glow); }
  100% { box-shadow: 0 0 25px var(--accent); }
}

@media (max-width: 768px) {
  .floating-ig {
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}

/* --- Utility Classes --- */
.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }
}
