/* =========================
   Global Reset
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   Base Layout
========================= */
html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

/* Fix for mobile menu scroll lock */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* =========================
   Main Content
   (Ensures footer stays at bottom)
========================= */
main {
  flex: 1 0 auto;
  width: 100%;
}

/* =========================
   Links & Images
========================= */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-blue);
}

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

:root {
  --brand-blue: #64c4e2;
  --brand-teal: #007B8F;
  --transition-speed: 0.3s;
}

/* ============================================
   SVG ICONS
============================================ */
.header-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}

.header-icon-sm {
  width: 16px;
  height: 16px;
}

.header-icon-lg {
  width: 20px;
  height: 20px;
}

/* ============================================
   TOP BANNER
============================================ */
.top-banner {
  background-color: var(--brand-blue);
  color: #000000;
  text-align: center;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  z-index: 1001;
}

.close-banner {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  background: none;
  border: none;
  color: inherit;
  line-height: 1;
}

@media (max-width: 768px) {
  .top-banner {
    font-size: 11px;
    padding: 8px 10px;
  }
  
  .close-banner {
    font-size: 14px;
    right: 5px;
  }
}

/* ============================================
   HEADER - DESKTOP
============================================ */
.header {
  background-color: #000000;
  padding: 15px 0;
  position: relative;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.logo {
  display: block;
  height: 50px;
  width: auto;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1;
}

.logo img {
  height: 95%;
  width: auto;
  display: block;
  margin-left: 16px;
}

/* Top Links (Desktop) */
.top-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  color: #aaaaaa;
  grid-column: 2 / 4;
  grid-row: 1;
  justify-content: flex-end;
}

.top-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: var(--brand-blue);
  color: #000000;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Nav (Desktop) */
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  justify-content: flex-start;
  grid-column: 1 / 3;
  grid-row: 2;
  margin-left: 15px;
}

.main-nav a {
  white-space: nowrap;
}

.main-nav a.active {
  color: var(--brand-blue);
}

.holiday-link {
  color: var(--brand-blue) !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Search Container */
.search-container {
  position: relative;
  width: 200px;
  flex-shrink: 0;
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
}

.search-input {
  width: 100%;
  padding: 8px 30px 8px 11px;
  border: 1px solid #333333;
  border-radius: 2px;
  background-color: #1a1a1a;
  color: #aaaaaa;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  transition: border-color var(--transition-speed);
}

.search-input::placeholder {
  color: #666666;
}

.search-input:focus {
  border-color: var(--brand-blue);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaaaaa;
  font-size: 17px;
  padding: 5px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   MOBILE MENU TOGGLE
============================================ */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   MOBILE NAVIGATION MENU
============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  z-index: 999;
  padding: 80px 20px 40px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  border-bottom: 1px solid #333333;
}

.mobile-nav-links a.active {
  color: var(--brand-blue);
}

.mobile-nav-links .holiday-link {
  color: var(--brand-blue) !important;
}

.mobile-top-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333333;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-top-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #aaaaaa;
}

.mobile-search {
  margin-top: 30px;
  width: 100%;
}

.mobile-search .search-input {
  width: 100%;
}

/* ============================================
   RESPONSIVE HEADER
============================================ */
@media (max-width: 1200px) {
  .header-inner {
    padding: 0 20px;
  }
  
  .main-nav {
    gap: 18px;
    font-size: 13px;
  }
  
  .top-links {
    gap: 18px;
    font-size: 12px;
  }
  
  .search-container {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
  }

  .logo {
    order: 1;
  }

  .top-links {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-nav {
    order: 2;
    flex: 1;
    justify-content: center;
    margin-left: 0;
    gap: 15px;
    font-size: 12px;
  }

  .search-container {
    order: 4;
    width: 100%;
    max-width: 300px;
    margin: 10px auto 0;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }
  
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
  }
  
  .logo {
    order: 1;
    height: 35px;
  }
  
  .logo img {
    margin-left: 0;
  }
  
  /* Hide desktop elements on mobile */
  .top-links,
  .main-nav,
  .search-container {
    display: none !important;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 992px) {
  .hero {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 250px;
  }
}

/* ============================================
   FOOTER STYLES - FIXED VERSION
============================================ */
.footer-container {
  background-color: #1a1a1a;
  color: #ffffff;
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}

.logo-section {
  margin-bottom: 50px;
  padding-bottom: 30px;
}

.logo-placeholder {
  display: flex;
  align-items: flex-start;
}

.logo-placeholder img {
  width: 300px;
  max-width: 100%;
  object-fit: contain;
}

.main-content {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-column h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #cccccc;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.columns-bottom {
  margin-top: 5px;
}

.signup-section {
  grid-column: 6 / 8;
  grid-row: 1 / 3;
}

.signup-section h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.required-text {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #444;
  background-color: #ffffff;
  color: #000;
  font-size: 13px;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: #999;
}

.checkbox-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 11px;
  line-height: 1.5;
  color: #cccccc;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-text {
  flex: 1;
}

.checkbox-text a {
  color: #0099ff;
  text-decoration: underline;
}

.signup-button {
  width: 100%;
  padding: 14px;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.signup-button:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: #ffffff;
}

.contact-icon-img {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  object-fit: contain;
  padding: 4px;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  object-fit: contain;
  padding: 4px;
}

/* Footer Responsive */
@media (max-width: 1200px) {
  .footer-wrapper {
    padding: 50px 30px;
  }
  
  .main-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .signup-section {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 992px) {
  .footer-wrapper {
    padding: 40px 25px;
  }
  
  .main-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .signup-section {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    padding: 35px 20px;
  }
  
  .main-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .logo-placeholder img {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .footer-wrapper {
    padding: 30px 15px;
  }
  
  .main-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* ============================================
   PAGE CONTENT STYLES
============================================ */
.page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
  box-sizing: border-box;
  flex: 1 0 auto;
}

@media (max-width: 992px) {
  .page-container {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .page-container {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .page-container {
    padding: 30px 15px;
  }
}

/* Page Hero Variations */
.page-hero {
  text-align: center;
  padding: 60px 40px;
  background-color: #f8f8f8;
  margin-bottom: 60px;
  width: 100%;
  box-sizing: border-box;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 1px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 16px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-hero-gradient {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #4a4a4a 0%, #252525 30%, #111111 60%, #000000 100%);
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.page-hero-gradient h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
}

.page-hero-gradient p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .page-hero,
  .page-hero-gradient {
    padding: 50px 30px;
    margin-bottom: 50px;
  }
  
  .page-hero h1,
  .page-hero-gradient h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page-hero,
  .page-hero-gradient {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .page-hero h1,
  .page-hero-gradient h1 {
    font-size: 28px;
  }
  
  .page-hero p,
  .page-hero-gradient p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-hero,
  .page-hero-gradient {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  
  .page-hero h1,
  .page-hero-gradient h1 {
    font-size: 24px;
  }
}

/* ============================================
   SECTION STYLES
============================================ */
.section-dark {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 40px;
  width: 100%;
  box-sizing: border-box;
}

.section-gradient {
  background: linear-gradient(135deg, #4a4a4a 0%, #252525 30%, #111111 60%, #000000 100%);
  color: #ffffff;
  padding: 80px 40px;
  width: 100%;
  box-sizing: border-box;
}

.section-alt-dark {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 40px;
  width: 100%;
  box-sizing: border-box;
}

.content-section {
  margin-bottom: 80px;
  width: 100%;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #000000;
  line-height: 1.2;
}

.content-section h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 40px 0 20px;
  color: #000000;
  line-height: 1.3;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.content-section li {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.content-section li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* Responsive section styles */
@media (max-width: 992px) {
  .section-dark,
  .section-gradient {
    padding: 60px 30px;
  }
  
  .section-alt-dark {
    padding: 50px 30px;
  }
  
  .content-section {
    margin-bottom: 60px;
  }
  
  .content-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .content-section h3 {
    font-size: 22px;
    margin: 30px 0 18px;
  }
}

@media (max-width: 768px) {
  .section-dark,
  .section-gradient,
  .section-alt-dark {
    padding: 50px 20px;
  }
  
  .content-section {
    margin-bottom: 50px;
  }
  
  .content-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .content-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
  }
  
  .content-section p,
  .content-section li {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .section-dark,
  .section-gradient,
  .section-alt-dark {
    padding: 40px 15px;
  }
  
  .content-section {
    margin-bottom: 40px;
  }
  
  .content-section h2 {
    font-size: 22px;
  }
  
  .content-section h3 {
    font-size: 18px;
  }
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-speed);
  text-align: center;
  border: 2px solid;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-primary:hover {
  background-color: transparent;
  color: #000000;
}

.btn-secondary {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    padding: 12px 30px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 12px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

/* ============================================
   GRID LAYOUTS
============================================ */
.two-column-grid,
.three-column-grid,
.four-column-grid,
.image-text-section {
  width: 100%;
  box-sizing: border-box;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.four-column-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.image-text-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.image-text-section.reverse {
  direction: rtl;
}

.image-text-section.reverse > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .two-column-grid,
  .image-text-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .three-column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .four-column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .image-text-section {
    margin-bottom: 50px;
  }
  
  .image-text-section.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .two-column-grid,
  .image-text-section {
    gap: 30px;
  }
  
  .three-column-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .image-text-section {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .four-column-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   PRODUCT CARDS
============================================ */
.product-card,
.bestseller-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover,
.bestseller-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image,
.bestseller-image {
  position: relative;
  height: 240px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.product-image img,
.bestseller-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img,
.bestseller-card:hover .bestseller-image img {
  transform: scale(1.05);
}

.product-badge,
.bestseller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--brand-blue);
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.product-info,
.bestseller-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name,
.bestseller-name {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc,
.bestseller-desc {
  font-size: 13px;
  color: #666666;
  margin-bottom: 12px;
  line-height: 1.4;
  flex: 1;
}

.product-price,
.bestseller-price {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .product-image,
  .bestseller-image {
    height: 200px;
  }
  
  .product-info,
  .bestseller-info {
    padding: 15px;
  }
  
  .product-name,
  .bestseller-name {
    font-size: 14px;
  }
  
  .product-price,
  .bestseller-price {
    font-size: 16px;
  }
}

/* ============================================
   RESPONSIVE UTILITY CLASSES
============================================ */
.hide-mobile {
  display: block;
}

.show-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  
  .show-mobile {
    display: block !important;
  }
}

/* Responsive padding utilities */
.responsive-padding {
  padding: 80px 40px;
}

@media (max-width: 992px) {
  .responsive-padding {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .responsive-padding {
    padding: 50px 20px;
  }
}

@media (max-width: 480px) {
  .responsive-padding {
    padding: 40px 15px;
  }
}

/* Text alignment responsive */
.text-center-mobile {
  text-align: left;
}

@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center;
  }
}

/* ============================================
   CLEARFIX UTILITY
============================================ */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ============================================
   VISUALLY HIDDEN (for screen readers)
============================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================
   PRINT STYLES
============================================ */
@media print {
  .header,
  .footer-container,
  .top-banner,
  .mobile-nav,
  .mobile-menu-toggle {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .page-container {
    padding: 20px !important;
    margin: 0 !important;
  }
  
  a {
    color: black !important;
    text-decoration: underline !important;
  }
}