* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove underline and borders on all links and buttons */
a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
button:active,
.btn,
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none !important;
  outline: none !important;
}

button,
button:hover,
button:focus,
button:active,
.btn,
.btn:hover,
.btn:focus,
.btn:active {
  border: none !important;
}

.btn-primary{
  background: var(--brand-primary);
  color: white;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

html {
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.5;
  padding-top: 160px;
}

/* Page layout helpers */
.page-content {
  background: #ffffff;
}

.breadcrumb-nav {
  padding: 14px 0;
  background: #f8f9fa;
  font-size: 0.9rem;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-nav .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.breadcrumb-nav span {
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-section {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../images/refocus opticians 2.webp');
  background-position: center;
  color: #ffffff;
  text-align: center;
}

.hero-section.eye-health-hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../images/eyehealth.webp');
  background-size: cover;
  background-position: center;
}

.hero-section.contact-hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../images/framing-wide.webp');
  background-size: cover;
  background-position: center;
}

.hero-section.about-hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../images/frames-nice.webp');
  background-size: cover;
  background-position: center;
}

.hero-section h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-section .lead {
  max-width: 720px;
  margin: 0 auto;
  color: #ffffff;
}

.content-section {
  padding: 50px 0;
}

.content-section h2 {
  margin-bottom: 16px;
}

.content-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.condition-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 20px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.condition-item h3 {
  margin-bottom: 10px;
}

.info-panel {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: var(--text-secondary);
}

.info-panel p {
  margin: 0;
}

/* Info box styling for about/sidebar sections */
.info-box {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}

.info-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.info-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.info-box hr {
  margin: 20px 0;
  border-color: #e5e7eb;
}

.info-box .cta-btn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  display: block;
}

/* About page specific styles */
.about-content {
  margin-bottom: 30px;
}

.lead-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.mission-box {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.mission-box h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 15px;
}

.mission-box h3 i {
  margin-right: 10px;
}

.mission-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-primary);
  text-align: center;
}

.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--brand-accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.value-card {
  background: #f8f9fa;
  border-left: 4px solid var(--brand-primary);
  padding: 24px;
  border-radius: 8px;
  height: 100%;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.sticky-sidebar {
  position: sticky;
  top: 180px;
}

.info-box i {
  color: var(--brand-primary);
  margin-right: 6px;
}

/* Disabled button state */
.cta-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Map iframe styling */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Contact page styles */
.contact-info {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-primary);
}

.contact-item p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--brand-primary);
}

.contact-form {
  background: #ffffff;
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
  border-color: #e5e7eb;
  font-size: 14px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 124, 122, 0.25);
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

:root {
  /* REFOCUS Opticians brand colors */
  --brand-primary: #007C7A;
  --brand-primary-dark: #006268;
  --brand-accent: #4ACCC3;
  --brand-dark: #005F63;
  --brand-red: #E53935;
  --text-primary: #000000;
  --text-secondary: #666666;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease-out;
}

.preloader-spinner {
  text-align: center;
}

.spinner-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--brand-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-spinner p {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Global link styles */
a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

a:hover {
  /* color: var(--brand-primary-dark); */
  background-color: #ffff;
}

a:focus {
  outline: none;
}

/* Top Banner */
.top-banner {
  background-color: var(--brand-dark);
  color: white;
  text-align: center;
  padding: 12px 15px;
  font-size: 13px;
  font-weight: 400;
}

.top-banner a {
  color: white;
}

/* Header */
#header-container {
  position: relative;
  z-index: 1000;
}

.header {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Brand bar with centered logo and actions */
.brand-bar {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
}
.brand-bar__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.store-link {
  flex: 1;
  text-align: left;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400;
}

.store-link:hover {
  color: var(--brand-primary);
}

.brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-logo--secondary {
  display: none;
  height: 40px;
  opacity: 0.95;
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  /* padding: 18px 40px; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: absolute;
  left: 20px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

nav {
  position: relative;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
}

nav a:hover {
  color: var(--brand-primary);
}

.nav-link {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary) !important;
}

/* Bootstrap Mega Menu Styles */
.navbar {
  padding: 0;
}

.dropdown-menu {
  display: none;
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.mega-menu {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem;
  border-top: 1px solid #e5e5e5;
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mega-menu .col {
  min-width: 200px;
}

.mega-menu h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu .col .text-uppercase {
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mega-menu .dropdown-item {
  font-size: 15px;
  font-weight: 600;
  padding: 0.5rem 0;
  color: var(--text-primary);
  white-space: normal;
}

.mega-menu .dropdown-item:hover {
  background-color: transparent;
  color: var(--brand-primary);
}

.promo-section {
  text-align: center;
}

.promo-section svg {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

.promo-section h6 {
  font-size: 18px;
}

.promo-section p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.promo-section a {
  color: var(--brand-accent);
  font-weight: 600;
  text-decoration: none;
}

.promo-section a:hover {
  color: var(--brand-primary);
}

/* Nav item hover states */
@media (min-width: 992px) {
  /* Mega menu styling for old nav */
  .nav-item {
    position: relative;
  }

  .nav-item .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
    min-width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
  }

  .nav-item:hover .mega-menu {
    display: block;
  }

  .mega-grid {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .mega-col {
    flex: 1;
    min-width: 150px;
  }

  .mega-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: block;
  }

  .mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mega-col li {
    margin-bottom: 8px;
  }

  .mega-col a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    display: block;
  }

  .mega-col a:hover {
    color: var(--brand-primary);
  }

  .mega-promo {
    flex: 0 0 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .promo-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(
      circle at 50% 50%,
      #e8f3ef 0%,
      #d9ece6 60%,
      #f7f7f7 100%
    );
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promo-image svg {
    width: 70px;
    height: 70px;
    opacity: 0.8;
  }

  .mega-promo h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .mega-promo p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .view-all {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }

  .view-all:hover {
    color: var(--brand-primary);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}

.btn-reorder {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.header-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
}

.header-link:hover {
  color: var(--brand-primary);
}

/* Hero Section */
.hero {
  --hero-bg-image: url('../images/refocus opticians 2.webp');
  --hero-pan-duration: 7s;
  color: white;
  text-align: center;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02) translate3d(0, 0, 0);
  animation: none;
  will-change: transform;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero.is-panning::before {
  animation: heroKenBurns var(--hero-pan-duration) ease-out forwards;
}

.hero h1,
.hero p,
.hero .cta-btn-set {
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: opacity, transform;
}

.hero.is-animating h1,
.hero.is-animating p,
.hero.is-animating .cta-btn-set {
  opacity: 0;
  transform: translateY(18px);
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

.hero h1 {
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

/* Consistent image sizing */

.frame-card img {
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.photo-scroll__track img {
  height: 140px;
}

.cta-btn-set {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-btn {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: var(--brand-primary-dark);
}


/* Why Choose Section */
.why-choose {
  padding: 70px 20px 60px;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 50px;
  color: var(--text-primary);
}

.ctas-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  border-color: var(--brand-accent);
}

.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-refocus {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
}

.btn-refocus:hover {
  background: var(--brand-primary-dark);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.cta-card {
  background: white;
  padding: 30px 25px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cta-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-color: var(--brand-accent);
}

.cta-card .icon {
  margin-bottom: 20px;
}

.cta-card .icon img {
  width: 36px;
  height: 36px;
}

.cta-card p {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 500;
}

.cta-text-chevron {
  color: var(--brand-primary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-text-chevron:hover {
  color: var(--brand-primary);
}

/* Product Sections */
.product-section {
  padding: 50px 20px 70px;
  background: white;
}

.product-section.bg-plain {
  background: white;
}

.sub-section {
  max-width: 1400px;
  margin: 0 auto;
}

.text-wrapper {
  text-align: center;
  margin-bottom: 45px;
}

.text-wrapper h2 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.text-wrapper p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 30px;
  scrollbar-width: none;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-cell {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
}

.carousel-cell a {
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}

.carousel-cell img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.product-details {
  padding: 20px 0;
  text-align: center;
}

.brand-name {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.product-name {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-price {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.bolt-on {
  text-align: center;
  margin-top: 30px;
}

.cta-btn.secondary {
  background: white;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.cta-btn.secondary:hover {
  background: white;
}

/* Promo Stripe */
.promo-stripe {
  background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
  padding: 60px 20px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.item-inner {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.item .icon {
  flex-shrink: 0;
}

.item .icon img {
  width: 48px;
  height: 48px;
}

.item h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.item .cta-text-chevron {
  font-size: 14px;
}

/* Offers Section */
.offers-heading {
  background: white;
  padding: 50px 20px 30px;
  text-align: center;
}

.offers-heading h2 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.offers-heading p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Split Section (2 for 1 Offer) */
.split-section {
  display: flex;
  min-height: 500px;
}

.split-content {
  flex: 1;
  background: var(--brand-accent);
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

.split-content h2 {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.split-content p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.split-image {
  flex: 1;
  background: var(--brand-accent);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hearing Section */
.hearing-section {
  display: flex;
  min-height: 500px;
}

.hearing-section .split-content {
  background: white;
  order: 2;
}

.hearing-section .split-image {
  order: 1;
  background: #f0f0f0;
}

/* Panels Section */
.panels-section {
  padding: 70px 20px;
}

.panels-section h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 50px;
  color: var(--text-primary);
}

.panels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.panel {
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.panel:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-color: var(--brand-accent);
}

.panel .image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.panel .content {
  padding: 35px 30px;
}

.panel h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.panel p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background: var(--brand-dark);
  color: #ffffff;
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--brand-accent);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--brand-accent);
}

.footer-list i {
  font-size: 14px;
  margin-right: 8px;
  color: var(--brand-accent);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
}

.footer-copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--brand-accent);
}

/* Back to top floating button */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  z-index: 1300;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  background: var(--brand-primary-dark);
}

/* Responsive Styles */

/* Large Desktop */
@media (max-width: 1400px) {

  .wrapper {
    padding: 0 30px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .brand-bar__inner {
    padding: 12px 20px;
  }


  nav ul {
    gap: 24px;
  }

  .nav-link {
    font-size: 16px;
  }

  .ctas-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .panels-grid {
    grid-template-columns: 1fr;
  }

  .split-section .image,
  .split-section .content {
    flex: 1;
  }
}

/* Tablet Large */
@media (max-width: 991px) {
  .brand-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-logo {
    height: 60px;
  }


  nav ul {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    font-size: 15px;
  }

  .mega-menu {
    padding: 1.5rem;
  }

  .mega-menu .container {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .why-choose h2 {
    font-size: 32px;
  }

  .blocks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 995px) {
  body {
    padding-top: 130px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
  }

  .header-container {
    background: #fff;
  }
  .mobile-menu-toggle {
    display: flex;
    position: fixed;
    top: 75px;
    left: 16px;
    z-index: 1301;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .navbar {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1200;
    padding-top: 80px;
    overflow-y: auto;
  }

  .navbar.mobile-active {
    display: block !important;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
    margin-top: 20px;
  }

  .navbar.mobile-active ul {
    margin-top: 10px;
    padding-left: 16px;
  }

  .navbar-nav {
    width: 100%;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-link {
    display: block;
    padding: 15px 0;
    font-size: 16px;
  }

  .dropdown-menu.mega-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0 0 20px 20px;
    background: #f8f8f8;
    display: none !important;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: none !important;
  }

  .nav-item.dropdown.show .dropdown-menu {
    display: block !important;
  }

  .mega-menu .container {
    padding: 0;
  }

  .mega-menu .row {
    flex-direction: column;
  }

  .mega-menu .col {
    width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }

  .mega-menu h6 {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }

  .mega-menu .dropdown-item {
    font-size: 14px;
    padding: 0.4rem 0;
  }

  .promo-section {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .brand-bar__inner {
    padding: 10px 15px;
  }

  .brand-logo {
    height: 50px;
  }

  .store-link {
    font-size: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-reorder {
    font-size: 12px;
    padding: 6px 12px;
  }

  .header-link {
    font-size: 12px;
  }

  .hero {
    padding: 80px 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .cta-btn-set {
    flex-direction: column;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .why-choose {
    padding: 60px 0;
  }

  .why-choose h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .ctas-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-card {
    padding: 30px 20px;
  }

  .blocks-grid {
    grid-template-columns: 1fr;
  }

  .block-card {
    padding: 30px 20px;
  }

  .split-section,
  .hearing-section {
    flex-direction: column;
  }

  .split-content {
    padding: 50px 30px;
  }

  .split-section .content h2,
  .hearing-section h2 {
    font-size: 28px;
  }

  .promo-stripe {
    padding: 50px 30px;
  }

  .promo-stripe h2 {
    font-size: 28px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .col-md-6 {
    text-align: center !important;
  }

  .footer-heading {
    font-size: 14px;
  }

  .footer-list li {
    font-size: 13px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .brand-bar__inner {
    gap: 8px;
  }

  .brand-logo {
    height: 40px;
  }

  .store-link {
    font-size: 11px;
  }

  .btn-reorder {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .why-choose h2 {
    font-size: 24px;
  }

  .cta-card h3 {
    font-size: 18px;
  }

  .cta-card p {
    font-size: 13px;
  }

  .block-card h3 {
    font-size: 18px;
  }

  .split-content {
    padding: 40px 20px;
  }

  .split-content h2 {
    font-size: 24px;
  }

  .promo-stripe {
    padding: 40px 20px;
  }

  .promo-stripe h2 {
    font-size: 24px;
  }

  .footer-container {
    padding: 40px 20px;
  }

  .footer-brand h3 {
    font-size: 20px;
  }

  .footer-top {
    padding: 40px 0 30px;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .service-card,
  .value-card {
    margin-bottom: 20px;
  }

  .sticky-sidebar {
    position: static;
  }
}


a:hover{
  background-color: inherit;
}


/* Glasses Page Specific Styles */

.glasses-page {
  background: #fff;
}

/* Hero Section */
.glasses-hero {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/finishing-wide.webp');
  background-size: cover;
  height: 500px;
  background-position: center;
  color: white;
}

/*.corporate-hero {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/industrial.jpg');
  background-size: cover;
  height: 500px;
  background-position: center;
  color: white;
}*/

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}

.hero-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

/* Frame Types Grid (2 rows x 3 columns) */
.frame-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.frame-card {
  position: relative;
  display: block;
  background: #fafafa;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1.3;
  transition: all 0.3s ease;
  text-decoration: none;
}

.frame-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.frame-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 124, 122, 0.2);
}

.frame-card:hover .frame-label {
  background: var(--brand-primary);
  color: white;
}

.frame-card.active {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 16px rgba(0, 124, 122, 0.15);
}

.frame-card.active .frame-label {
  background: var(--brand-primary);
  color: white;
}

/* Filters Section */
.filters-section {
  background: #f9f9f9;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.filters-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.filter-btn {
  background: white;
  border: 1px solid #d0d0d0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover {
  border-color: var(--brand-primary);
  background: #f0f9f9;
}

.filter-btn.recommended {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

.filter-btn span {
  font-size: 10px;
}

.results-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}

.results-info strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Products Section */
.products-section {
  padding: 40px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Product Card */
.product-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  border-color: var(--brand-accent);
}

.product-image {
  position: relative;
  background: #fafafa;
  padding: 0;
  text-align: center;
  height: 300px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s ease;
}

.wishlist-btn:hover {
  background: var(--brand-red);
  color: white;
  border-color: var(--brand-red);
}

.try-on-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

/* Product Info */
.product-info {
  padding: 20px;
}

.price-badge {
  display: inline-block;
  background: #C8E000;
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.eco-badge {
  display: inline-block;
  background: #4CAF50;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 6px;
  text-transform: uppercase;
}

.designer-badge {
  display: inline-block;
  background: #1a1a1a;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-brand {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.product-model {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.product-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.product-colors {
  display: flex;
  gap: 8px;
  align-items: center;
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-dot:hover {
  transform: scale(1.2);
  border-color: var(--brand-primary);
}

/* Promo Banner */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 60px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.promo-banner.reverse {
  direction: rtl;
}

.promo-banner.reverse > * {
  direction: ltr;
}

.promo-content {
  background: #f0f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 500px;
}

.promo-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.promo-text {
  background: #e8f5f4;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-text h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.promo-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.promo-text .btn {
  align-self: flex-start;
}

.btn-link {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-link:hover {
  color: var(--brand-primary-dark);
}

/* Pagination */
.pagination-wrapper {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-item {
  margin: 0;
}

.page-link {
  padding: 8px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.page-link:hover {
  background: var(--brand-accent);
  color: white;
  border-color: var(--brand-accent);
}

.page-item.active .page-link {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

/* Responsive Styles */

/* Large Tablet / Small Desktop */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 30px;
  }
  
  
  .hero-text p {
    font-size: 15px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .promo-banner {
    grid-template-columns: 1fr;
  }
  
  .promo-text {
    padding: 40px 30px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .frame-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .frame-card {
    padding: 15px;
  }
  
  .breadcrumbs {
    padding: 15px 30px;
    font-size: 13px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .glasses-page {
    padding-top: 0;
  }
  
  .glasses-hero {
    padding: 40px 0;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-text p {
    font-size: 14px;
  }
  
  .frame-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .frame-card {
    padding: 12px;
  }
  
  .frame-card img {
    height: 80px;
  }
  
  .frame-card .caption {
    font-size: 13px;
  }
  
  .breadcrumbs {
    padding: 12px 20px;
    font-size: 12px;
  }
  
  .filters-section {
    padding: 20px;
  }
  
  .filters-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-btn {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .product-card {
    max-width: 100%;
  }
  
  .product-image {
    height: 250px;
  }
  
  .wishlist-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-brand {
    font-size: 14px;
  }
  
  .product-model {
    font-size: 16px;
  }
  
  .price-badge,
  .designer-badge,
  .try-on-badge {
    font-size: 11px;
    padding: 4px 8px;
  }
  
  .promo-banner {
    grid-template-columns: 1fr;
    margin: 30px 0;
  }
  
  .promo-text {
    padding: 30px 20px;
  }
  
  .promo-text h2 {
    font-size: 24px;
  }
  
  .promo-text p {
    font-size: 14px;
  }
  
  .pagination {
    padding: 30px 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .glasses-hero {
    padding: 30px 0;
  }
  
  .hero-text {
    padding: 0 20px;
  }
  
  
  .hero-text p {
    font-size: 13px;
  }
  
  .frame-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 20px;
  }
  
  .frame-card {
    padding: 10px;
  }
  
  .frame-card img {
    height: 60px;
  }
  
  .frame-card .caption {
    font-size: 12px;
  }
  
  .breadcrumbs {
    padding: 10px 15px;
    font-size: 11px;
  }
  
  .filters-section {
    padding: 15px;
  }
  
  .filter-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .products-grid {
    padding: 15px;
    gap: 15px;
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-brand {
    font-size: 13px;
  }
  
  .product-model {
    font-size: 15px;
  }
  
  .product-colors {
    gap: 6px;
  }
  
  .color-dot {
    width: 16px;
    height: 16px;
  }
  
  .promo-text {
    padding: 25px 15px;
  }
  
  .promo-text h2 {
    font-size: 20px;
  }
  
  .promo-text p {
    font-size: 13px;
  }
  
  .btn-primary {
    font-size: 14px;
    padding: 10px 20px;
  }
  
  .pagination {
    padding: 20px 15px;
  }
  
  .page-link {
    padding: 6px 10px;
    font-size: 13px;
  }
}
/* Find Your Glasses Page Styles */

/* Hero Section */
.glasses-page .glasses-hero {
  padding: 60px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/eyetests.webp');
  background-size: cover;
  background-position: center;
  height: 500px;
  color: white;
}

.glasses-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.glasses-hero{
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}

.glasses-hero .hero-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.glasses-hero .hero-image {
  width: 100%;
  height: auto;
}

.glasses-hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Description Section */
.description-section {
  background: #f5f5f5;
  padding: 50px 20px;
}

.description-section .container {
  max-width: 900px;
}

.description-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
}

/* Categories Section */
.categories-section {
  padding: 60px 20px;
  background: white;
}

.categories-section .container {
  max-width: 1000px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.category-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-image {
  width: 100%;
  height: 250px;
  background: #f0f0f0;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 20px 10px;
}

.category-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 20px 20px;
}

.category-card .cta-btn {
  margin: 0 20px 20px;
  display: inline-block;
}

/* How to Buy Section */
.how-to-buy-section {
  padding: 60px 20px;
  background: white;
}

.how-to-buy-section .container {
  max-width: 1200px;
}

.how-to-buy-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin: 0 0 10px;
}

.how-to-buy-section > .container > p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 40px;
}

.steps-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
}

.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.step a {
  color: var(--brand-primary);
  text-decoration: none;
}

.step a:hover {
  text-decoration: underline;
}

/* Popular Trends Section */
.popular-trends-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.popular-trends-section .container {
  max-width: 1200px;
}

.popular-trends-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin: 0 0 10px;
}

.trends-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 35px;
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.trends-grid a {
  background: white;
  padding: 10px 15px;
  text-align: center;
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-primary);
  border: 1px solid #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: block;
}

.trends-grid a:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

/* Designer Section */
.designer-section {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.designer-section .container {
  max-width: 1000px;
}

.designer-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 15px;
}

.designer-section > .container > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 35px;
  line-height: 1.7;
}

.designer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
  margin-bottom: 35px;
}

.designer-logos img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

.designer-section .cta-btn {
  margin: 0;
}

/* CTA Green Section */
.cta-section-green {
  padding: 60px 20px;
  background: var(--brand-primary);
  color: white;
  text-align: center;
}

.cta-section-green .container {
  max-width: 800px;
}

.cta-section-green h2 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0 0 15px;
}

.cta-section-green p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn.white {
  background: white;
  color: var(--brand-primary);
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.cta-btn.white:hover {
  background: #f0f0f0;
}

/* Info Cards Section */
.info-cards-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.info-cards-section .container {
  max-width: 1200px;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.info-card {
  background: white;
  padding: 0;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.info-card img {
  width: 100%;
  height: 180px;
  margin: 0 0 20px;
  display: block;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 20px 12px;
}

.info-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 20px 20px;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .glasses-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trends-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Glasses Essentials Section */
.glasses-essentials-section {
  padding: 60px 20px;
  background: white;
}

.glasses-essentials-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.essential-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.essential-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.essential-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.essential-card h3 {
  padding: 20px 20px 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.essential-card .read-more {
  display: inline-block;
  padding: 0 20px 20px;
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.essential-card .read-more:hover {
  color: var(--brand-primary-dark);
}

/* Sun Protection Section */
.sun-protection-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.sun-protection-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.protection-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.protection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.protection-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.protection-card h3 {
  padding: 20px 20px 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.protection-card .read-more {
  display: inline-block;
  padding: 0 20px 20px;
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.protection-card .read-more:hover {
  color: var(--brand-primary-dark);
}

/* Eye Condition Section */
.eye-condition-section {
  padding: 60px 20px;
  background: white;
}

.eye-condition-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.condition-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.condition-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.condition-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.condition-card h3 {
  padding: 20px 20px 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.condition-card .read-more {
  display: inline-block;
  padding: 0 20px 20px;
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.condition-card .read-more:hover {
  color: var(--brand-primary-dark);
}

@media (max-width: 768px) {
  .glasses-hero .hero-text h1 {
    font-size: 28px;
  }

  .how-to-buy-section h2,
  .popular-trends-section h2,
  .designer-section h2,
  .cta-section-green h2 {
    font-size: 24px;
  }

  .categories-section {
    padding: 40px 20px;
  }

  .trends-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .steps-content {
    grid-template-columns: 1fr;
  }

  .designer-logos {
    gap: 20px;
  }

  .designer-logos img {
    height: 40px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn.white {
    width: 100%;
  }

  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .protection-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .condition-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .essentials-grid {
    grid-template-columns: 1fr;
  }
}
/* Contact Lenses Page Styles */

.contact-lenses-page {
  padding-top: 0;
}

.contact-hero {
  background: linear-gradient(rgba(85, 92, 92, 0.7), rgba(65, 72, 72, 0.7)), url('../images/frames-colorful.webp');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Duration Options Section */
.duration-options h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.duration-options p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
}

.duration-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.duration-card {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.duration-card:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-5px);
}

.duration-card.active {
  background: white;
  border-color: white;
}

.duration-label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.duration-card.active .duration-label {
  color: var(--brand-primary);
}

/* Re-order Section */
.reorder-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
}

.reorder-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.reorder-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.reorder-section .btn-primary {
  background: white;
  color: var(--brand-primary);
  border: none;
  font-weight: 600;
  padding: 14px 40px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.reorder-section .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-hero {
    padding: 60px 0;
  }

  .contact-hero-grid {
    gap: 40px;
  }

  .duration-options h1 {
    font-size: 36px;
  }

  .reorder-section {
    padding: 40px 30px;
  }

  .reorder-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 995px) {
  .contact-hero {
    padding: 50px 0;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .duration-options h1 {
    font-size: 32px;
  }

  .duration-options p {
    font-size: 15px;
  }

  .duration-cards {
    grid-template-columns: 1fr 1fr;
  }

  .duration-label {
    font-size: 16px;
  }

  .reorder-section {
    padding: 35px 25px;
  }

  .reorder-section h2 {
    font-size: 24px;
  }

  .reorder-section p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 0;
  }

  .contact-hero-grid {
    gap: 25px;
  }

  .duration-options h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .duration-options p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .duration-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .duration-card {
    padding: 25px 15px;
  }

  .duration-label {
    font-size: 15px;
  }

  .reorder-section {
    padding: 30px 20px;
  }

  .reorder-section h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .reorder-section p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .reorder-section .btn-primary {
    padding: 12px 30px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 30px 0;
  }

  .duration-options h1 {
    font-size: 24px;
  }

  .duration-options p {
    font-size: 13px;
  }

  .duration-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .duration-card {
    padding: 20px 12px;
  }

  .duration-label {
    font-size: 14px;
  }

  .reorder-section {
    padding: 25px 15px;
  }

  .reorder-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .reorder-section p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .reorder-section .btn-primary {
    padding: 10px 25px;
    font-size: 14px;
    width: 100%;
  }
}

/* Keep existing glasses page styles for other sections */
.glasses-page {
  padding-top: 0;
}

.glasses-hero {
  padding: 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}


.hero-text p {
  font-size: 16px;
  line-height: 1.6;
}

/* Frame Type Cards */
.frame-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.frame-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
}

.frame-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 20px rgba(0, 124, 122, 0.15);
  transform: translateY(-5px);
}

.frame-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.frame-card .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  color: white;
  font-weight: 600;
  font-size: 15px;
  z-index: 2;
  width: 100%;
}

.frame-card.active {
  border-color: var(--brand-primary);
}

/* Filter Styles */
.filters-section {
  background: #f8f8f8;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

.filters-bar {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-btn {
  background: white;
  border: 1px solid #ddd;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.filter-btn.recommended {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.product-card-corporate {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}


.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s ease;
  z-index: 2;
}

.wishlist-btn:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

.try-on-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--brand-accent);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-info {
  padding: 20px;
}

.price-badge {
  display: inline-block;
  background: var(--brand-red);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.designer-badge,
.eco-badge {
  display: inline-block;
  background: var(--brand-primary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 5px;
}

.product-brand {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 10px 0 5px 0;
}

.product-model {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.product-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-primary);
  margin: 10px 0;
}

.product-colors {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}

.color-dot:hover {
  transform: scale(1.2);
  border-color: var(--brand-primary);
}

/* Promo Banner */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
  padding: 50px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border-radius: 12px;
  color: white;
}

.promo-banner.reverse {
  grid-template-columns: 1fr 1fr;
}

.promo-banner.reverse .promo-text {
  order: 1;
}

.promo-banner.reverse .promo-content {
  order: 2;
}

.promo-content {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.promo-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-text {
  padding: 0;
}

.promo-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.promo-text p {
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.promo-text .btn {
  background: white;
  color: var(--brand-primary);
  border: none;
  font-weight: 600;
  padding: 12px 30px;
}

.promo-text .btn:hover {
  background: #f0f0f0;
}

.btn-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.pagination {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
}

.page-item {
  margin: 0;
}

.page-link {
  padding: 8px 12px;
  border: 1px solid #ddd;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.page-link:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.page-item.active .page-link {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

/* Responsive Styles */

/* Large Tablet / Small Desktop */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .promo-banner {
    padding: 40px;
  }
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-banner {
    grid-template-columns: 1fr;
  }

  .promo-text {
    padding: 40px 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .frame-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .frame-card {
    padding: 15px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .glasses-page {
    padding-top: 0;
  }

  .glasses-hero {
    padding: 40px 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .frame-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .frame-card {
    padding: 12px;
  }

  .frame-card img {
    height: 80px;
  }

  .breadcrumbs {
    padding: 12px 20px;
    font-size: 12px;
  }

  .filters-section {
    padding: 15px 0;
  }

  .filters-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .product-card {
    max-width: 100%;
  }

  .product-image {
    height: 250px;
  }

  .wishlist-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .product-info {
    padding: 15px;
  }

  .product-brand {
    font-size: 14px;
  }

  .product-model {
    font-size: 16px;
  }

  .price-badge,
  .designer-badge,
  .try-on-badge {
    font-size: 11px;
    padding: 4px 8px;
  }

  .promo-banner {
    grid-template-columns: 1fr;
    margin: 30px 0;
    padding: 30px 20px;
  }

  .promo-text {
    padding: 30px 20px;
  }

  .promo-text h2 {
    font-size: 24px;
  }

  .promo-text p {
    font-size: 14px;
  }

  .pagination {
    padding: 30px 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .glasses-hero {
    padding: 30px 0;
  }

  .hero-text {
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .frame-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 20px;
  }

  .frame-card {
    padding: 10px;
  }

  .frame-card img {
    height: 60px;
  }

  .breadcrumbs {
    padding: 10px 15px;
    font-size: 11px;
  }

  .filters-section {
    padding: 15px;
  }

  .filter-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .products-grid {
    padding: 15px;
    gap: 15px;
  }

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 12px;
  }

  .product-brand {
    font-size: 13px;
  }

  .product-model {
    font-size: 15px;
  }

  .product-colors {
    gap: 6px;
  }

  .color-dot {
    width: 16px;
    height: 16px;
  }

  .promo-text {
    padding: 25px 15px;
  }

  .promo-text h2 {
    font-size: 20px;
  }

  .promo-text p {
    font-size: 13px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 10px 20px;
  }

  .pagination {
    padding: 20px 15px;
  }

  .page-link {
    padding: 6px 10px;
    font-size: 13px;
  }
}

