/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  /* Dark mode colors (default) */
  --bg-primary: #000000;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #111111;
  --bg-accent: #222222;
  --text-primary: #ffffff;
  --text-secondary: #eeeeee;
  --text-muted: #cccccc;
  --text-dark: #777777;
  --color-sky: #56ccf2;
  --color-orange: #FE8E00;
  --border-color: rgba(86, 204, 242, 0.2);
  --shadow-color: rgba(86, 204, 242, 0.1);
  --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --gradient-secondary: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  --gradient-tertiary: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
}

/* Light mode colors */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --bg-accent: #dee2e6;
  --text-primary: #000000;
  --text-secondary: #212529;
  --text-muted: #333333;
  --text-dark: #888888;
  --color-sky: #0d6efd;
  --color-orange: #FE8E00;
  --border-color: rgba(13, 110, 253, 0.2);
  --shadow-color: rgba(13, 110, 253, 0.1);
  --gradient-primary: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  --gradient-secondary: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
  --gradient-tertiary: linear-gradient(135deg, #dee2e6 0%, #f8f9fa 100%);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--gradient-primary);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  transition: all 0.3s ease;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  background: var(--gradient-primary);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  border-bottom: 2px solid var(--color-sky);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-sky);
  user-select: none;
  transition: color 0.3s ease;
}
.logo:hover, .logo:focus {
  color: var(--color-orange);
  outline: none;
}

.nav {
  display: flex;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.nav-link:hover,
.nav-link:focus {
  background: var(--color-sky);
  color: var(--bg-primary);
  outline: none;
}
.nav-link.active {
  background: var(--color-orange);
  color: var(--bg-primary);
}
.nav-link-disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}
.nav-link-disabled:hover,
.nav-link-disabled:focus {
  background: transparent !important;
  color: var(--text-muted) !important;
  cursor: not-allowed !important;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: 2px solid var(--color-sky);
  color: var(--color-sky);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
}

.theme-toggle:hover {
  background: var(--color-sky);
  color: var(--bg-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(86, 204, 242, 0.3);
}

.theme-toggle:active {
  transform: scale(0.95);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
  position: absolute;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}

.theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(180deg);
}

.theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0deg);
}

[data-theme="light"] .theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0deg);
}

[data-theme="light"] .theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(-180deg);
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.25rem;
  position: relative;
  padding: 0.2rem;
  transition: all 0.3s ease;
}
.icon-btn:hover,
.icon-btn:focus {
  color: var(--color-orange);
  outline: none;
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-orange);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  padding: 0 5px;
  line-height: 1;
  user-select: none;
  min-width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SEARCH BAR */

.search-container {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--gradient-secondary);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--color-sky);
  box-shadow: 0 4px 20px var(--shadow-color);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.search-container.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  position: relative;
}

.search-bar input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--color-sky);
  border-radius: 8px;
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(254, 142, 0, 0.1);
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.search-close-btn:hover {
  background: var(--color-orange);
  color: var(--bg-primary);
  transform: scale(1.1);
}

/* HERO */

.hero {
  margin-top: 70px;
  background: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f2f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  height: 380px;
  display: flex;
  align-items: center;
  padding-left: 2rem;
  text-shadow: 0 0 18px rgba(0,0,0,0.8);
  position: relative;
  transition: all 0.3s ease;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  transition: all 0.3s ease;
}

[data-theme="light"] .hero::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}

.hero-container {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-weight: 700;
  font-size: 2.85rem;
  margin-bottom: 0.7rem;
  line-height: 1.2;
  color: var(--text-primary);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

[data-theme="light"] .hero-title {
  color: #000;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

[data-theme="light"] .hero-subtitle {
  color: #333;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.6);
}

.btn {
  display: inline-block;
  font-weight: 600;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

[data-theme="light"] .btn {
  text-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange) 0%, #e67c00 100%);
  color: var(--text-primary);
  box-shadow: 0 7px 12px rgba(254, 142, 0, 0.4);
}

.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(254, 142, 0, 0.6);
  outline: none;
}

/* PRODUCTS */

.products-section {
  padding: 3rem 0 5rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.products-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.products-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.filter-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-weight: 600;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 24px;
  border: 2px solid var(--color-sky);
  background-color: transparent;
  color: var(--color-sky);
  transition: all 0.3s ease;
  user-select: none;
}
.filter-btn.active,
.filter-btn:focus {
  background-color: var(--color-sky);
  color: var(--bg-primary);
  outline: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 1.5rem;
}

/* product card */

.product-card {
  background: var(--bg-tertiary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow-color);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border-color);
  position: relative;
}



/* Price list card for waist beads */
.price-list-card {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  background: var(--bg-tertiary);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.price-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(254, 142, 0, 0.4);
}

.price-list-card img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(254, 142, 0, 0.4);
  border: 2px solid var(--color-sky);
  transition: all 0.3s ease;
}

.price-list-card img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(254, 142, 0, 0.6);
}

.product-card:hover,
.product-card:focus-within {
  box-shadow: 0 6px 26px rgba(254, 142, 0, 0.4);
  outline: none;
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 1rem 1rem 1.4rem;
  color: var(--text-secondary);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h3 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--color-orange);
}

.product-info p {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.product-price {
  font-weight: 700;
  color: var(--color-sky);
  font-size: 1.1rem;
}

.btn-add-cart {
  font-weight: 700;
  border: none;
  background: linear-gradient(135deg, var(--color-orange) 0%, #e67c00 100%);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(254, 142, 0, 0.3);
}

.btn-add-cart:hover,
.btn-add-cart:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(254, 142, 0, 0.5);
  outline: none;
}

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10002;
}

.hamburger-btn:hover {
  transform: scale(1.05);
}

.hamburger-btn:active {
  transform: scale(0.95);
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}

/* Enhanced visibility for light theme */
[data-theme="light"] .hamburger-bar {
  background: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  border: 0.5px solid rgba(0, 0, 0, 0.15);
}

/* Enhanced visibility for tablet screens within media query */
@media (max-width: 1024px) {
  .hamburger-bar {
    background: var(--text-primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    border: 0.5px solid rgba(0, 0, 0, 0.2);
    height: 3.5px;
  }
  
  [data-theme="light"] .hamburger-bar {
    background: #000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    border: 0.5px solid rgba(0, 0, 0, 0.25);
  }
}

/* Animation states for hamburger */
.hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--color-orange);
}

.hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--color-orange);
}

/* ABOUT, CONTACT */

.about-section {
  padding: 3rem 0 5rem;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--color-sky);
  position: relative;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-sky) 20%, var(--color-sky) 80%, transparent 100%);
  box-shadow: 0 0 10px rgba(86, 204, 242, 0.5);
}

.contact-section {
  padding: 3rem 0 5rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-orange);
}

/* SOCIAL MEDIA FOLLOW SECTION */

.social-follow-section {
  margin-top: 2.5rem;
  text-align: center;
  border-top: 2px solid var(--border-color);
  padding-top: 2rem;
  scroll-margin-top: 80px; /* Account for fixed header */
}

.social-follow-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 80px;
  position: relative;
  overflow: hidden;
}

.social-icon-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--shadow-color);
  border-color: var(--color-sky);
}

.social-icon-btn:focus {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-accent);
  border-radius: 50%;
  color: var(--color-sky);
  transition: all 0.3s ease;
}

.social-icon-btn:hover .social-icon {
  background: var(--color-sky);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.social-icon-btn span {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: color 0.3s ease;
}

/* Social platform specific colors */
.instagram-social:hover {
  border-color: #e4405f;
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.instagram-social:hover .social-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.tiktok-social:hover {
  border-color: #000000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tiktok-social:hover .social-icon {
  background: #000000;
  color: white;
}

.whatsapp-social:hover {
  border-color: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-social:hover .social-icon {
  background: #25d366;
  color: white;
}

.facebook-social:hover {
  border-color: #1877f2;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.facebook-social:hover .social-icon {
  background: #1877f2;
  color: white;
}

.phone-social:hover {
  border-color: var(--color-sky);
  box-shadow: 0 8px 25px rgba(86, 204, 242, 0.3);
}

.phone-social:hover .social-icon {
  background: var(--color-sky);
  color: var(--bg-primary);
}

.email-social:hover {
  border-color: var(--color-orange);
  box-shadow: 0 8px 25px rgba(254, 142, 0, 0.3);
}

.email-social:hover .social-icon {
  background: var(--color-orange);
  color: var(--bg-primary);
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-orange);
}

.about-section p,
.contact-section p,
.contact-section label {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

#contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  margin-bottom: 1rem;
  resize: vertical;
  transition: all 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--color-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(254, 142, 0, 0.1);
}

#contact-form button {
  background: linear-gradient(135deg, var(--color-orange) 0%, #e67c00 100%);
  border: none;
  padding: 0.9rem 2rem;
  font-weight: 700;
  color: var(--text-primary);
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 142, 0, 0.3);
}

#contact-form button:hover,
#contact-form button:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 142, 0, 0.5);
  outline: none;
}

/* FOOTER */

.footer {
  background: var(--gradient-primary);
  color: var(--text-dark);
  text-align: center;
  padding: 1.8rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  user-select: none;
  margin-top: auto;
  transition: all 0.3s ease;
  border-top: 2px solid var(--color-sky);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-sky) 20%, var(--color-sky) 80%, transparent 100%);
  box-shadow: 0 0 8px rgba(86, 204, 242, 0.4);
}

[data-theme="light"] .footer {
  background: var(--gradient-primary);
  color: var(--text-dark);
  border-top: 2px solid var(--color-sky);
}

/* TOAST NOTIFICATION */

.toast-notification {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: linear-gradient(135deg, var(--color-orange) 0%, #e67c00 100%);
  color: var(--bg-primary);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 15000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(254, 142, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  min-width: 200px;
  max-width: 90%;
}

.toast-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
  .toast-notification {
    top: 75px;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    min-width: 180px;
  }
}

/* CART MODAL */

.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 11000;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

[data-theme="light"] .cart-modal {
  background: rgba(255, 255, 255, 0.9);
}

.cart-modal.show {
  display: flex;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(4px);
  }
}

.cart-content {
  background: var(--gradient-secondary);
  width: 90%;
  max-width: 480px;
  max-height: 85vh;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--color-sky);
  box-shadow: 0 20px 40px var(--shadow-color);
  transition: all 0.3s ease;
  animation: cartSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cartSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile cart adjustments */
@media (max-width: 480px) {
  .cart-modal {
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
  }
  
  .cart-content {
    width: 95%;
    max-width: 95%;
    max-height: 85vh;
    border-radius: 16px;
    animation: cartSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.cart-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--color-sky) 0%, #4a9cc9 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--bg-primary);
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
}

.cart-close-btn:hover {
  transform: scale(1.1);
}

.cart-items {
  list-style: none;
  overflow-y: auto;
  flex-grow: 1;
  padding: 1.5rem;
  color: var(--text-secondary);
  background: var(--bg-primary);
}

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas: "image info quantity remove";
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  min-height: 80px;
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.cart-item img {
  grid-area: image;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  grid-area: info;
  min-width: 0;
}

.cart-item-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-orange);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.cart-item-info p {
  font-size: 0.875rem;
  color: var(--color-sky);
}

.cart-item-quantity {
  grid-area: quantity;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cart-item-quantity button {
  font-size: 1.2rem;
  background: none;
  border: 2px solid var(--color-orange);
  border-radius: 8px;
  color: var(--color-orange);
  cursor: pointer;
  user-select: none;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: all 0.3s ease;
  min-width: 32px;
  min-height: 32px;
}

.cart-item-quantity button:hover,
.cart-item-quantity button:focus {
  background-color: var(--color-orange);
  color: var(--bg-primary);
  outline: none;
  transform: scale(1.1);
}

.cart-item-quantity span {
  min-width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-sky);
}

.btn-remove-item {
  grid-area: remove;
  background: none;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-remove-item:hover,
.btn-remove-item:focus {
  background: var(--color-orange);
  color: var(--bg-primary);
  outline: none;
  transform: scale(1.1);
}

/* Mobile cart item adjustments */
@media (max-width: 480px) {
  .cart-item {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: 
      "image info remove"
      "image quantity remove";
    gap: 0.75rem;
    padding: 0.8rem;
  }
  
  .cart-item img {
    width: 50px;
    height: 50px;
  }
  
  .cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
  }
  
  .cart-item-info p {
    font-size: 0.8rem;
  }
  
  .cart-item-quantity {
    gap: 0.4rem;
    justify-self: start;
  }
  
  .cart-item-quantity button {
    min-width: 28px;
    min-height: 28px;
    font-size: 1rem;
    padding: 0.2rem 0.4rem;
  }
  
  .cart-item-quantity span {
    min-width: 24px;
    font-size: 1rem;
  }
  
  .btn-remove-item {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    justify-self: end;
    align-self: start;
  }
}

.cart-footer {
  padding: 1.5rem;
  background: var(--gradient-tertiary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-sky);
  font-weight: 700;
  font-size: 1.25rem;
  border-top: 2px solid var(--color-sky);
}

.checkout-btn {
  border: none;
  background: linear-gradient(135deg, var(--color-orange) 0%, #e67c00 100%);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 142, 0, 0.4);
}

.checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.checkout-btn:not(:disabled):hover,
.checkout-btn:not(:disabled):focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 142, 0, 0.6);
  outline: none;
}

/* CHECKOUT METHOD MODAL */

.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 12000;
  padding: 1rem;
}

[data-theme="light"] .checkout-modal {
  background: rgba(255, 255, 255, 0.95);
}

.checkout-modal.show {
  display: flex;
}

.checkout-content {
  background: var(--gradient-secondary);
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--color-sky);
  box-shadow: 0 25px 50px var(--shadow-color);
  animation: slideIn 0.3s ease-out;
  transition: all 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkout-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--color-sky) 0%, #4a9cc9 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg-primary);
}

.checkout-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.checkout-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--bg-primary);
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
}

.checkout-close-btn:hover {
  transform: scale(1.1);
}

.checkout-body {
  padding: 2rem;
  background: var(--bg-primary);
}

.checkout-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-align: center;
}

.checkout-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-option-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.checkout-option-btn:hover {
  background: var(--bg-tertiary);
  border-color: var(--color-sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.checkout-option-btn.whatsapp-btn:hover {
  border-color: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.checkout-option-btn.gmail-btn:hover {
  border-color: var(--color-orange);
  box-shadow: 0 8px 25px rgba(254, 142, 0, 0.2);
}

.checkout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bg-tertiary);
  border-radius: 12px;
  color: var(--color-sky);
  transition: all 0.3s ease;
}

.whatsapp-btn .checkout-icon {
  color: #25d366;
}

.gmail-btn .checkout-icon {
  color: var(--color-orange);
}

.checkout-option-text {
  flex: 1;
}

.checkout-option-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.checkout-option-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* PRODUCT GALLERY MODAL */

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 13000;
  padding: 1rem;
  overflow-y: auto;
}

[data-theme="light"] .gallery-modal {
  background: rgba(255, 255, 255, 0.95);
}

.gallery-modal.show {
  display: flex;
}

.gallery-content {
  background: var(--bg-primary);
  width: 95%;
  max-width: 1600px;
  max-height: 95vh;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--color-sky);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.6),
    0 16px 32px rgba(86, 204, 242, 0.4),
    0 8px 16px rgba(86, 204, 242, 0.2);
  animation: gallerySlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

[data-theme="light"] .gallery-content {
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(86, 204, 242, 0.3),
    0 8px 16px rgba(86, 204, 242, 0.15);
}

@keyframes gallerySlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--color-sky) 0%, #4a9cc9 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: 10;
}

.gallery-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.gallery-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  color: var(--bg-primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-close-btn:hover,
.gallery-close-btn:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
  outline: none;
}

.gallery-close-btn:active {
  transform: scale(0.98);
}

.gallery-body {
  padding: 2rem;
  background: var(--bg-primary);
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto auto;
  gap: 2.5rem;
  overflow-y: auto;
  flex: 1;
  min-height: 500px;
}

.gallery-main-section {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-main-img {
  max-width: 100%;
  max-height: 700px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 12px;
}

.gallery-main-img:hover {
  transform: scale(1.02);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-primary);
  border: 3px solid var(--color-sky);
  color: var(--color-sky);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.gallery-nav:hover,
.gallery-nav:focus {
  background: var(--color-sky);
  color: var(--bg-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(86, 204, 242, 0.4);
  outline: none;
}

.gallery-nav:active {
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-product-info {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  height: fit-content;
  position: sticky;
  top: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-product-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-orange);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.gallery-product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sky);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.gallery-thumbnails {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-height: 160px;
  overflow-y: auto;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnail:hover {
  transform: scale(1.05);
  border-color: var(--color-sky);
  box-shadow: 0 8px 20px rgba(86, 204, 242, 0.3);
}

.gallery-thumbnail.active {
  border-color: var(--color-orange);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(254, 142, 0, 0.4);
}

.gallery-thumbnail:focus {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

/* Large Desktop Screens */
@media (min-width: 1400px) {
  .gallery-content {
    max-width: 1600px;
  }
  
  .gallery-body {
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    padding: 2.5rem;
  }
  
  .gallery-main-section {
    min-height: 650px;
  }
  
  .gallery-main-img {
    max-height: 750px;
  }
  
  .gallery-product-info {
    padding: 2.5rem;
  }
  
  .gallery-product-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .gallery-product-price {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .gallery-thumbnails {
    padding: 2rem;
    gap: 1.25rem;
  }
  
  .gallery-thumbnail {
    width: 110px;
    height: 110px;
  }
  
  /* Enhanced hover effects for large screens */
  .gallery-main-img:hover {
    transform: scale(1.03);
  }
  
  .gallery-thumbnail:hover {
    transform: scale(1.08);
    border-color: var(--color-sky);
    box-shadow: 0 12px 32px rgba(86, 204, 242, 0.4);
  }
  
  .gallery-thumbnail.active {
    border-color: var(--color-orange);
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(254, 142, 0, 0.5);
  }
  
  .gallery-nav:hover {
    background: var(--color-sky);
    color: var(--bg-primary);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 16px 40px rgba(86, 204, 242, 0.5);
  }
}

/* Ultra-Wide Screens (1920px+) */
@media (min-width: 1920px) {
  .gallery-content {
    max-width: 1800px;
    max-height: 95vh;
  }
  
  .gallery-body {
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    padding: 3rem;
  }
  
  .gallery-main-section {
    min-height: 700px;
    border-radius: 24px;
  }
  
  .gallery-main-img {
    max-height: 800px;
  }
  
  .gallery-product-info {
    padding: 3rem;
    border-radius: 24px;
  }
  
  .gallery-product-info h3 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }
  
  .gallery-product-price {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .gallery-thumbnails {
    padding: 2.5rem;
    gap: 1.5rem;
    border-radius: 24px;
  }
  
  .gallery-thumbnail {
    width: 120px;
    height: 120px;
    border-radius: 20px;
  }
  
  .gallery-nav {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
  
  .gallery-header {
    padding: 2rem 3rem;
  }
  
  .gallery-header h2 {
    font-size: 2rem;
  }
  
  .gallery-close-btn {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }
}

/* 4K and Super Ultra-Wide Screens (2560px+) */
@media (min-width: 2560px) {
  .gallery-content {
    max-width: 2200px;
  }
  
  .gallery-body {
    grid-template-columns: 1fr 450px;
    gap: 5rem;
    padding: 4rem;
  }
  
  .gallery-main-section {
    min-height: 800px;
  }
  
  .gallery-main-img {
    max-height: 950px;
  }
  
  .gallery-product-info {
    padding: 4rem;
  }
  
  .gallery-product-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .gallery-product-price {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
  
  .gallery-thumbnails {
    padding: 3rem;
    gap: 2rem;
  }
  
  .gallery-thumbnail {
    width: 140px;
    height: 140px;
    border-radius: 24px;
  }
  
  .gallery-nav {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
  }
  
  .gallery-header {
    padding: 2.5rem 4rem;
  }
  
  .gallery-header h2 {
    font-size: 2.25rem;
  }
  
  .gallery-close-btn {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
}

/* Laptop and Medium Desktop */
@media (max-width: 1399px) {
  .gallery-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 2rem;
    padding: 2rem;
  }
  
  .gallery-main-section {
    grid-column: 1;
    grid-row: 1;
    min-height: 500px;
  }
  
  .gallery-main-img {
    max-height: 600px;
  }
  
  .gallery-product-info {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    position: static;
    text-align: center;
    padding: 2rem;
  }
  
  .gallery-product-info h3 {
    font-size: 1.75rem;
  }
  
  .gallery-product-price {
    font-size: 1.5rem;
  }
  
  .gallery-thumbnails {
    grid-row: 3;
    padding: 1.5rem;
  }
  
  .gallery-thumbnail {
    width: 90px;
    height: 90px;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .gallery-content {
    max-width: 95%;
    border-radius: 20px;
  }
  
  .gallery-body {
    padding: 1.5rem;
  }
  
  .gallery-main-section {
    min-height: 350px;
  }
  
  .gallery-main-img {
    max-height: 400px;
  }
  
  .gallery-nav {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  
  .gallery-prev {
    left: 12px;
  }
  
  .gallery-next {
    right: 12px;
  }
}

/* Tablet Portrait and Small Laptop */
@media (max-width: 768px) {
  .gallery-modal {
    padding: 0.5rem;
  }
  
  .gallery-content {
    max-height: 98vh;
    border-radius: 16px;
    border-width: 2px;
  }
  
  .gallery-header {
    padding: 1rem 1.5rem;
  }
  
  .gallery-header h2 {
    font-size: 1.5rem;
  }
  
  .gallery-close-btn {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  
  .gallery-body {
    padding: 1rem;
    gap: 1rem;
  }
  
  .gallery-main-section {
    min-height: 280px;
  }
  
  .gallery-main-img {
    max-height: 320px;
  }
  
  .gallery-nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .gallery-prev {
    left: 8px;
  }
  
  .gallery-next {
    right: 8px;
  }
  
  .gallery-product-info {
    padding: 1rem;
  }
  
  .gallery-product-info h3 {
    font-size: 1.5rem;
  }
  
  .gallery-product-price {
    font-size: 1.25rem;
  }
  
  .gallery-thumbnails {
    max-height: 100px;
    padding: 0.75rem;
  }
  
  .gallery-thumbnail {
    width: 70px;
    height: 70px;
  }
}

/* Large Mobile */
@media (max-width: 480px) {
  .gallery-modal {
    padding: 0.25rem;
  }
  
  .gallery-content {
    border-radius: 12px;
  }
  
  .gallery-header {
    padding: 0.75rem 1rem;
  }
  
  .gallery-header h2 {
    font-size: 1.25rem;
  }
  
  .gallery-close-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .gallery-body {
    padding: 0.75rem;
  }
  
  .gallery-main-section {
    min-height: 220px;
  }
  
  .gallery-main-img {
    max-height: 250px;
  }
  
  .gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .gallery-prev {
    left: 4px;
  }
  
  .gallery-next {
    right: 4px;
  }
  
  .gallery-product-info {
    padding: 0.75rem;
  }
  
  .gallery-product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .gallery-product-price {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .gallery-thumbnails {
    gap: 0.5rem;
    padding: 0.5rem;
    max-height: 80px;
  }
  
  .gallery-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .gallery-header h2 {
    font-size: 1.1rem;
  }
  
  .gallery-close-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .gallery-main-section {
    min-height: 180px;
  }
  
  .gallery-main-img {
    max-height: 200px;
  }
  
  .gallery-nav {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  
  .gallery-product-info h3 {
    font-size: 1.1rem;
  }
  
  .gallery-product-price {
    font-size: 1rem;
  }
  
  .gallery-thumbnail {
    width: 50px;
    height: 50px;
  }
}

/* Prevent body scroll when modals are open */
body.modal-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

/* FOOTER */

.footer {
  background: #111;
  color: #777;
  text-align: center;
  padding: 1.8rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  user-select: none;
  margin-top: auto;
}

/* RESPONSIVE */

/* Tablet styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .theme-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }
  
  .theme-toggle .sun-icon,
  .theme-toggle .moon-icon {
    width: 22px;
    height: 22px;
  }
  
  /* Tablet price list card */
  .price-list-card {
    padding: 1.5rem;
  }
  
  .price-list-card img {
    max-width: 500px;
  }
}

/* Mobile Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

[data-theme="light"] .nav-overlay {
  background: rgba(255, 255, 255, 0.7);
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when nav is open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Mobile and Tablet styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 0.5rem;
  }
  
  .header-icons {
    gap: 0.5rem;
  }
  
  .theme-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0.6rem;
    border-width: 2.5px;
  }
  
  .theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(86, 204, 242, 0.4);
  }
  
  .theme-toggle:active {
    transform: scale(0.95);
  }
  
  .theme-toggle .sun-icon,
  .theme-toggle .moon-icon {
    width: 24px;
    height: 24px;
  }
  
  .nav {
    position: fixed;
    background: var(--gradient-primary);
    backdrop-filter: blur(15px);
    right: 0;
    top: 70px;
    height: calc(100vh - 70px);
    width: 280px;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border-left: 3px solid var(--color-sky);
    overflow-y: auto;
  }
  
  .nav.show {
    transform: translateX(0);
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    margin: 0;
  }
  
  .nav-link {
    display: block;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(86, 204, 242, 0.1);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-primary);
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    background: rgba(86, 204, 242, 0.1);
    color: var(--color-sky);
    padding-left: 2.5rem;
    outline: none;
  }
  
  .nav-link.active {
    background: linear-gradient(90deg, rgba(254, 142, 0, 0.1), rgba(254, 142, 0, 0.05));
    color: var(--color-orange);
    border-left: 4px solid var(--color-orange);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--color-sky), var(--color-orange));
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 3px;
  }
  
  .hamburger-btn {
    display: flex;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    box-shadow: none;
  }
  
  .hamburger-btn:hover {
    transform: scale(1.05);
  }
  
  .hamburger-btn:focus {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
  }
  
  .hamburger-btn:active {
    transform: scale(0.95);
  }
  
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .filter-container {
    justify-content: center;
    gap: 0.8rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
  
  /* Enhanced mobile cart modal */
  .cart-content {
    width: 95%;
    max-width: 400px;
    margin: 0.5rem;
  }
  
  .checkout-content {
    width: 95%;
    max-width: 450px;
    margin: 0.5rem;
  }
  
  /* Social icons responsive */
  .social-icons {
    gap: 1rem;
  }
  
  .social-icon-btn {
    min-width: 70px;
    padding: 0.8rem;
  }
  
  .social-icon {
    width: 42px;
    height: 42px;
  }
  
  .social-icon svg {
    width: 22px;
    height: 22px;
  }
}



/* Small mobile styles */
@media (max-width: 480px) {
  .header-container {
    height: 65px;
    padding: 0 0.5rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .header-icons {
    gap: 0.5rem;
  }
  
  .theme-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0.5rem;
    border-width: 2px;
  }
  
  .theme-toggle .sun-icon,
  .theme-toggle .moon-icon {
    width: 22px;
    height: 22px;
  }
  
  .icon-btn {
    font-size: 1.1rem;
    padding: 0.4rem;
    min-width: 40px;
    min-height: 40px;
  }
  
  .hamburger-btn {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }
  
  .nav {
    width: 100%;
    top: 65px;
    height: calc(100vh - 65px);
  }
  
  .nav-list {
    padding: 1.5rem 0;
  }
  
  .nav-link {
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    padding-left: 2rem;
  }
  
  .hero {
    margin-top: 65px;
    height: 280px;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }
  
  .btn {
    padding: 0.7rem 2rem;
    font-size: 0.95rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .product-card {
    min-height: 200px;
  }
  
  .product-card img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }
  
  .product-info {
    padding: 0.8rem;
  }
  
  .product-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  
  .product-info p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .product-price {
    font-size: 0.9rem;
  }
  
  .btn-add-cart {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 6px;
  }
  
  /* Mobile price list card */
  .price-list-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .price-list-card img {
    max-width: 100%;
    border-radius: 8px;
  }
  
  .products-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .filter-container {
    gap: 0.6rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Search bar mobile adjustments */
  .search-container {
    top: 65px;
  }
  
  .search-bar {
    padding: 0.75rem 0.5rem;
    gap: 0.5rem;
  }
  
  .search-bar input {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .search-close-btn {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
  
  /* Social icons small mobile */
  .social-follow-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  
  .social-follow-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .social-icons {
    gap: 0.8rem;
  }
  
  .social-icon-btn {
    min-width: 65px;
    padding: 0.6rem;
  }
  
  .social-icon {
    width: 38px;
    height: 38px;
  }
  
  .social-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .social-icon-btn span {
    font-size: 0.7rem;
  }
  
  /* Cart and checkout modals */
  .cart-content,
  .checkout-content {
    width: 95%;
    max-width: 350px;
    margin: 0.5rem;
  }
  
  .checkout-options {
    gap: 0.8rem;
  }
  
  .checkout-option-btn {
    padding: 1rem;
    gap: 0.8rem;
  }
  
  .checkout-icon {
    width: 45px;
    height: 45px;
  }
  
  .checkout-option-text h3 {
    font-size: 1.1rem;
  }
  
  .checkout-option-text p {
    font-size: 0.85rem;
  }
}

/* Enhanced mobile touch interactions */
@media (hover: none) and (pointer: coarse) {
  .theme-toggle {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .theme-toggle:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(86, 204, 242, 0.3);
  }
  
  .theme-toggle:active {
    transform: scale(0.9);
    background: var(--color-sky);
    color: var(--bg-primary);
  }
  
  .hamburger-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
  }
  
  .hamburger-btn:hover {
    transform: scale(1.05);
  }
  
  .hamburger-btn:active {
    transform: scale(0.95);
  }
  
  .nav-link {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  
  .nav-link:hover {
    background: rgba(86, 204, 242, 0.1);
    color: var(--color-sky);
  }
  
  .nav-link:active {
    background: rgba(86, 204, 242, 0.2);
    transform: scale(0.98);
  }
  
  .icon-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-btn:active {
    transform: scale(0.9);
    background: rgba(86, 204, 242, 0.1);
  }
  
  .btn,
  .filter-btn,
  .checkout-option-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
  }
  
  .btn:active {
    transform: scale(0.98);
  }
  
  .filter-btn:active {
    transform: scale(0.98);
  }
  
  .checkout-option-btn:active {
    transform: scale(0.98);
  }
  
  /* Smooth scroll for mobile */
  html {
    scroll-behavior: smooth;
  }
  
  /* Better scrolling for nav menu */
  .nav {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  
  
  
  .btn-add-cart {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 40px;
  }
  
  .btn-add-cart:active {
    transform: scale(0.98);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .theme-toggle,
  .theme-toggle .sun-icon,
  .theme-toggle .moon-icon,
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .theme-toggle {
    border-width: 3px;
  }
  
  .theme-toggle:focus {
    outline: 3px solid var(--color-orange);
    outline-offset: 2px;
  }
}

/* ==================== REVIEWS SECTION ==================== */

.reviews-section {
  padding: 4rem 0 5rem;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--color-sky);
  position: relative;
}

.reviews-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-sky) 20%, var(--color-sky) 80%, transparent 100%);
  box-shadow: 0 0 10px rgba(86, 204, 242, 0.5);
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.reviews-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== UNIFIED REVIEWS CAROUSEL ==================== */

.unified-reviews-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  min-height: 500px;
}

.unified-reviews-carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background: var(--bg-secondary);
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.review-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.review-item {
  display: none;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  min-height: 450px;
  width: 100%;
}

.review-item.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideInReview 0.6s ease-in-out;
}

@keyframes slideInReview {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Review Type Indicator */
.review-type-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px var(--shadow-color);
  z-index: 10;
}

.quote-indicator {
  color: var(--color-orange);
}

.screenshot-indicator {
  color: var(--color-sky);
}

.video-indicator {
  color: var(--color-orange);
}

/* Review Content Styling */
.review-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 1.5rem;
}

/* Text Review Styling */
.text-review .review-content {
  max-width: 600px;
}

.text-review .quote-icon {
  font-size: 4rem;
  color: var(--color-orange);
  font-weight: 700;
  line-height: 1;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.text-review .testimonial-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
  text-align: center;
}

.text-review .testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.text-review .author-name {
  font-weight: 600;
  color: var(--color-sky);
  font-size: 1.2rem;
}

.text-review .author-location {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Screenshot Review Styling */
.screenshot-review .review-content {
  align-items: center;
}

.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.screenshot-placeholder svg {
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.screenshot-placeholder:hover svg {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(86, 204, 242, 0.3);
}

.screenshot-caption {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
}

/* Video Review Styling */
.video-review .review-content {
  align-items: center;
}

.video-placeholder {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(254, 142, 0, 0.3);
}

.video-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.video-placeholder:hover .video-overlay {
  opacity: 1;
}

.video-review .play-btn {
  background: var(--color-orange);
  color: white;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 142, 0, 0.4);
}

.video-review .play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(254, 142, 0, 0.6);
}

.video-caption {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
  margin-top: 1.5rem;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
  background: var(--bg-secondary);
  border: 2px solid var(--color-sky);
  color: var(--color-sky);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-color);
  z-index: 20;
}

.carousel-nav-btn:hover {
  background: var(--color-sky);
  color: var(--bg-primary);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(86, 204, 242, 0.4);
}

.carousel-nav-btn:active {
  transform: scale(0.95);
}

.carousel-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Review Progress Indicators */
.review-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background: var(--color-orange);
  border-color: var(--color-sky);
  transform: scale(1.2);
}

.indicator:hover {
  background: var(--color-sky);
  transform: scale(1.1);
}

/* Review Type Legend */
.review-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.legend-item svg {
  opacity: 0.8;
}

/* ==================== MOBILE RESPONSIVENESS ==================== */

@media (max-width: 768px) {
  .reviews-section {
    padding: 3rem 0 4rem;
  }

  .reviews-header h2 {
    font-size: 2rem;
  }

  .unified-reviews-carousel-container {
    flex-direction: column;
    gap: 2rem;
    min-height: 400px;
  }

  .carousel-nav-btn {
    width: 50px;
    height: 50px;
  }

  .review-item {
    padding: 2rem;
    min-height: 350px;
  }

  .text-review .quote-icon {
    font-size: 3rem;
  }

  .text-review .testimonial-text {
    font-size: 1.1rem;
  }

  .video-review .play-btn {
    width: 60px;
    height: 60px;
  }

  .review-legend {
    gap: 1rem;
  }

  .legend-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .reviews-header h2 {
    font-size: 1.8rem;
  }

  .review-item {
    padding: 1.5rem;
    min-height: 300px;
  }

  .text-review .testimonial-text {
    font-size: 1rem;
  }

  .carousel-nav-btn {
    width: 45px;
    height: 45px;
  }

  .review-type-indicator {
    width: 40px;
    height: 40px;
  }

  .review-type-indicator svg {
    width: 20px;
    height: 20px;
  }

  .review-legend {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* ==================== TOAST NOTIFICATION ==================== */

.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
  z-index: 1000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.toast-notification.show {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 480px) {
  .toast-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .toast-notification.show {
    transform: translateY(0);
  }
}