* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font Awesome Icons (for footer icons) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

:root {
  --header-navy: #192e4b;
  --accent-orange: #ff6b35;
  --text-dark: #2c2c2c;
  --text-gray: #666;
  --border-color: #e8e8e8;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --footer-bg: #d2bc8e;
  --footer-text: #333;
  --footer-link: #444;
  --footer-heading: #000;
  --btn-dark: #000;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  background: var(--white);
}

/* Material icons sizing and color helper */
.material-icons{
  font-size:20px;vertical-align:middle;line-height:1;color:currentColor}

/* Footer styles have been removed */

/* Responsive Navigation */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 1;
    margin-right: 4px;
  }

  .search-container {
    order: 3;
    width: 100%;
    margin-top: 10px;
    max-width: none;
  }

  .search-input {
    font-size: 16px;
  }

  .nav-container {
    gap: 15px;
    flex-wrap: nowrap;
    position: relative;
  }

  .header-actions {
    order: 3;
  }

  .logo img {
    height: 50px;
  }
}

/* Top Announcement Bar */
.announcement-bar {
  background: var(--bg-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  font-weight: 400;
}

/* Main Header */
.main-header {
  background: var(--header-navy);
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
  min-height: 80px;
  position: relative;
}

/* Header Search */
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 5px 10px;
  width: 300px;
  transition: all 0.3s ease;
}

.header-search:focus-within {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.header-search .search-input {
  background: transparent;
  border: none;
  color: white;
  font-size: 14px;
  padding: 8px 10px;
  width: 100%;
  outline: none;
}

.header-search .search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header-search .search-button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: color 0.2s ease;
}

.header-search .search-button:hover {
  color: var(--accent-orange);
}

.header-search .material-icons {
  font-size: 22px;
}

/* Logo */
.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo img {
  height: 55px;
  width: auto;
}

/* Navigation Bar */
.nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 999;
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 60px;
  position: relative;
  padding: 0 20px;
}

/* Nav Search */
.nav-search {
  display: flex;
  align-items: center;
  margin-right: 30px;
  position: absolute;
  width: 200px;
  margin-left: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-search .search-input {
  width: 100%;
  padding: 8px 12px 8px 35px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.nav-search .search-input:focus {
  border-color: #999;
}

.nav-search .search-button {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-search .material-icons {
  font-size: 18px;
}

/* Adjust main nav for search bar */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* for absolutely positioned nav-search */
  flex: 1;
  padding-left: 240px; /* prevent overlap with left search */
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0; /* center list without extra offset */
  padding: 0;
}

/* Desktop layout */
@media (min-width: 769px) {
  .nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .mobile-menu-btn {
    display: none;
  }

  .main-nav {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
  }

  .header-actions {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: var(--text-dark);
  margin-right: auto; /* Push to the left */
}

.mobile-menu-btn .material-icons {
  font-size: 28px;
}

/* Mobile Search Toggle */
.search-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: var(--text-dark);
  margin-left: auto; /* Push to the right */
  order: 2; /* Ensure it stays on the right */
}

.search-toggle .material-icons {
  font-size: 24px;
}

/* Adjust nav container for mobile layout */
@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
    padding: 0 15px;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
  }
  
  .search-toggle {
    display: flex;
    align-items: center;
  }
}

/* Mobile Search Styles */
@media (max-width: 768px) {
  .nav-search {
    position: static;
    width: auto;
    margin: 0;
    transform: none;
    transition: width 0.3s ease;
    overflow: hidden;
    width: 0;
    padding: 0;
  }

  .nav-search.active {
    width: 200px;
    padding: 0 10px;
  }

  .search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    padding-left: 0 !important;
  }

  .nav-list {
    display: none;
  }
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #333; /* Dark gray for normal state */
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 0;
  display: block;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ff6b00; /* Orange color */
  font-weight: 600;
  text-shadow: 0 0 0.5px #ff6b00;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff6b00; /* Orange color to match hover text */
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  font-weight: 600;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.sale {
  color: var(--accent-orange);
}

/* Navigation */
.nav-item {
  position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px;
  padding: 8px 0;
}

.dropdown-with-image {
  display: none;
  flex-direction: row;
  gap: 0;
  min-width: 520px;
  padding: 0;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.nav-item:hover .dropdown-with-image {
  display: flex;
}

.dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-list li {
  margin: 0;
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.dropdown-link:hover {
  background: var(--bg-light);
  color: var(--accent-orange);
}

/* Dropdown with Image */
.dropdown-with-image .dropdown-list {
  padding: 20px;
  flex: 1;
}

.dropdown-with-image .dropdown-link {
  padding: 12px 20px;
  font-size: 16px;
}

.dropdown-image {
  width: 280px;
  height: 100%;
  overflow: hidden;
  border-radius: 0 4px 4px 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.icon-btn {
  background: transparent;
  border: none;
  padding: 7px;
  cursor: pointer;
  color: var(--text-dark);
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: var(--bg-light);
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

/* Ensure anchor-based icon buttons (like the wishlist link) have no underline */
a.icon-btn, a.icon-btn:link, a.icon-btn:visited {
  text-decoration: none;
  color: inherit;
}

.cart-badge,
.wishlist-badge,
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Mobile Menu Button - Fixed positioning and visibility */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: var(--text-dark);
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn .material-icons {
  font-size: 28px;
  color: inherit;
}

/* Responsive Navigation */
/* Mobile Menu Toggle Styles - Improved */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block !important;
    order: 1;
    margin-right: 10px;
  }

  .nav-container {
    gap: 8px;
    flex-wrap: nowrap;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    display: flex;
    min-height: 60px;
    padding: 0 15px;
  }

  .header-actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 0;
  }

  /* Improve icon button styling */
  .icon-btn {
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
  }

  .icon-btn:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
  }

  #cartBtn, #wishlistBtn {
    padding: 8px;
  }

  .search-container {
    order: 2;
    width: auto;
    max-width: none;
    margin: 0 10px;
    background: none;
    padding: 0;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .search-input {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    max-width: calc(100vw - 60px);
    z-index: 1001;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 25px;
    padding: 14px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInFromTop 0.3s ease;
  }

  .search-input:focus {
    outline: none;
    border-color: #6c757d;
    box-shadow: 0 8px 30px rgba(108, 117, 125, 0.15);
  }

  .search-input::placeholder {
    color: #999;
    font-size: 15px;
  }

  .search-icon {
    position: static;
    margin: 0;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid #e9ecef;
    font-size: 20px;
    color: #495057;
  }

  .search-icon:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    transform: scale(1.05);
    color: #212529;
  }

  .search-icon:active {
    transform: scale(0.95);
  }

  .search-icon.active {
    background-color: #dee2e6;
    border-color: #adb5bd;
    color: #495057;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Animation for search input */
  @keyframes slideInFromTop {
    from {
      opacity: 0;
      transform: translateY(-15px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .main-nav {
    display: none;
    order: 4;
    width: 100%;
    background: var(--white);
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .main-nav.show {
    display: block;
    max-height: 1000px;
    transition: max-height 0.3s ease;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }

  .nav-link {
    padding: 12px 15px;
    display: block;
    width: 100%;
    position: relative;
  }

  /* Remove desktop underline effect on mobile */
  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    margin-left: 20px;
  }

  .nav-item:hover .dropdown-menu {
    display: none;
  }

  .dropdown-with-image {
    display: none;
    flex-direction: column;
    min-width: 0;
    padding: 0;
    margin-left: 20px;
  }

  .dropdown-with-image .dropdown-list {
    padding: 8px 0;
  }

  .dropdown-image {
    display: none;
  }

  /* Mobile dropdown functionality */
  .nav-item.open .dropdown-menu,
  .nav-item.open .dropdown-with-image {
    display: block !important;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 8px;
    animation: slideDown 0.3s ease;
  }

  .nav-item.open .dropdown-list {
    padding: 0;
  }

  .nav-item.open .dropdown-link {
    padding: 8px 15px;
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
  }

  .nav-item.open .dropdown-link:hover {
    background-color: #e8e8e8;
    color: #000;
  }

  /* Visual indicator for expandable menu items on mobile */
  .nav-item .nav-link {
    position: relative;
  }

  /* Add plus icon for items with dropdowns - will be added via JavaScript */
  .nav-item.has-dropdown .nav-link::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .nav-item.has-dropdown.open .nav-link::after {
    transform: translateY(-50%) rotate(45deg);
    color: #666;
  }



  /* Animation for dropdown */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  }

  }

  .logo img {
    height: 50px;
  }


/* Responsive Search */
@media (max-width: 992px) {
  .search-container {
    width: 200px;
  }

  .search-input {
    padding: 8px 12px 8px 40px;
  }
  
  .search-icon {
    left: 12px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .search-container {
    width: 100%;
    max-width: 400px;
    margin: 10px auto 0 auto;
  }

  .search-input {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 10px 12px 10px 40px;
  }

  .search-icon {
    width: 20px;
    height: 20px;
    left: 10px;
    font-size: 18px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 10px;
    gap: 6px;
  }

  .search-container {
    margin: 0 5px;
    padding: 0;
    width: auto;
  }

  .search-input {
    width: 220px;
    right: -10px;
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 12px 18px;
    max-width: calc(100vw - 90px);
    border-radius: 20px;
  }

  .search-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
    font-size: 18px;
  }

  .header-actions {
    gap: 4px;
  }

  .icon-btn {
    padding: 6px;
    width: 36px;
    height: 36px;
  }

  /* Adjust desktop search for small screens */
  .search-container {
    width: auto;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .nav-container {
    padding: 0 8px;
    gap: 4px;
  }

  .search-container {
    margin: 0 3px;
  }

  .search-input {
    width: 180px;
    right: -15px;
    max-width: calc(100vw - 110px);
    padding: 10px 15px;
  }

  .search-icon {
    width: 36px;
    height: 36px;
    padding: 8px;
    font-size: 16px;
  }

  .header-actions {
    gap: 2px;
  }

  .icon-btn {
    padding: 4px;
    width: 32px;
    height: 32px;
  }
}

  .header-content,
  .nav-container,
  .cart-container,
  .faq-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .empty-cart h2 {
    font-size: 20px;
  }

  .faq-title {
    font-size: 24px;
  }
}

/* Search Bar Styles */
/* Desktop Search Styles */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 280px;
  max-width: 100%;
}

/* Enhanced desktop search for full screen - Left side, compact size */
@media (min-width: 769px) {
  .search-container {
    width: 200px;
    max-width: 250px;
    order: 1; /* Ensure it appears first */
  }

  /* Simple underline styling for left position */
  .search-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 8px 5px 8px 30px;
    font-size: 15px;
  }

  .search-input:focus {
    background: transparent;
    border-bottom-color: #999;
  }

  .search-icon {
    left: 5px;
    font-size: 18px;
    color: #999;
  }
}

@media (min-width: 1200px) {
  .search-container {
    width: 400px;
    max-width: 500px;
  }
}

/* Simple underline search bar - matching reference image */
.search-input {
  width: 100%;
  padding: 8px 5px 8px 35px;
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  background: transparent;
  color: #666;
  box-shadow: none;
}

.search-input:focus {
  border-bottom-color: #999;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.search-input::placeholder {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}

.search-icon {
  position: absolute;
  left: 8px;
  font-size: 20px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-container:focus-within .search-icon {
  color: #6c757d;
}

/* Responsive adjustments for compact underline search */
@media (max-width: 992px) and (min-width: 769px) {
  .nav-container {
    gap: 20px;
  }

  .search-container {
    width: 180px;
  }
  
  .search-input {
    font-size: 14px;
    padding: 6px 5px 6px 28px;
  }
  
  .search-icon {
    left: 5px;
    font-size: 16px;
  }
}

/* Large screens - Compact underline search */
@media (min-width: 1200px) {
  .nav-container {
    gap: 30px;
  }

  .search-container {
    width: 220px;
  }

  .search-input {
    font-size: 16px;
    padding: 8px 5px 8px 32px;
  }

  .search-icon {
    left: 6px;
    font-size: 19px;
  }
}

/* Extra large screens - Compact underline search */
@media (min-width: 1400px) {
  .nav-container {
    max-width: 1400px;
    padding: 0 30px;
    gap: 40px;
  }

  .search-container {
    width: 240px;
  }

  .search-input {
    padding: 10px 5px 10px 35px;
    font-size: 16px;
  }

  .search-icon {
    left: 8px;
    font-size: 20px;
  }
}

/* Login Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  display: flex;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

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

/* ===== Typographic scale overrides to better match Indian Terrain ===== */
/* Adjust these values if you want to fine-tune spacing or sizes */
:root{
  --base-font-size:16px; /* base desktop font size */
  --heading-serif-size-xl:48px; /* large footer/hero headings */
  --heading-serif-size-md:22px; /* footer column headings */
  --nav-font-size:13px; /* nav link text */
  --body-font-size:15px; /* body copy */
  --dropdown-font-size:14px; /* dropdown links */
  --footer-link-size:16px; /* footer links */
}

html { font-size: var(--base-font-size); }
body { font-size: var(--body-font-size); }

/* Announcement bar */
.announcement-bar { font-size: 13px; }

/* Header / logo sizing */
.header-content { padding: 18px 20px; }
.logo img { height: 65px; }

/* Nav */
.nav-link { font-size: var(--nav-font-size); letter-spacing: 1px; }
.dropdown-link { font-size: var(--dropdown-font-size); }

/* Footer typographic scale */
.footer-newsletter h2 { font-size: var(--heading-serif-size-xl); margin-bottom: 8px; }
.footer-column h3 { font-size: var(--heading-serif-size-md); margin-bottom: 12px; }
.footer-links .footer-link { font-size: var(--footer-link-size); }
.footer-searches .searches-label { font-size: 14px; }
.footer-bottom .copyright { font-size: 14px; }

/* Feature captions in footer */
.footer-features .feature-box span { display:block; margin-top:8px; font-size:16px; }

/* Demo content heading (if used) */
.demo-content h2 { font-size: 28px; }

/* Mobile adjustments */
@media (max-width: 900px){
  :root{
    --heading-serif-size-xl:32px;
    --heading-serif-size-md:18px;
    --base-font-size:15px;
    --nav-font-size:14px;
    --body-font-size:14px;
  }
  .logo img { height: 56px; }
  .footer-newsletter h2 { font-size: var(--heading-serif-size-xl); }
  .footer-column h3 { font-size: var(--heading-serif-size-md); }
}

/* End typographic overrides */

/* Hero Slider Section */
.hero-slider {
  width: 100%;
  position: relative;
  margin-bottom: 0;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 60px;
  z-index: 2;
}

.slide-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.slide-left {
  flex: 1;
}

.slide-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.slide-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.slide-subtitle {
  color: white;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.slide-divider {
  width: 2px;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
}

.slide-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slide-info-item {
  color: white;
}

.info-text {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.info-subtext {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 10px 0;
}

.slide-cta {
  padding: 12px 30px;
  background: white;
  color: #333;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.slide-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #333;
}

.slider-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-arrow-left {
  left: 20px;
}

.slider-arrow-right {
  right: 20px;
}

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: white;
  width: 14px;
  height: 14px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Welcome Banner */
.welcome-banner {
  width: 100%;
  display: block;
  margin: 30px 0 30px 0;
}

/* Responsive Hero Slider */
@media (max-width: 992px) {
  .slider-container {
    height: 500px;
  }

  .slide-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .slide-divider {
    width: 100%;
    height: 1px;
  }

  .slide-title {
    font-size: 32px;
  }

  .slide-subtitle {
    font-size: 20px;
  }

  .welcome-banner {
    margin: 25px 0 25px 0;
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 400px;
  }

  .slide-overlay {
    padding: 30px 20px;
  }

  .slide-title {
    font-size: 28px;
  }

  .slide-subtitle {
    font-size: 18px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow-left {
    left: 10px;
  }

  .slider-arrow-right {
    right: 10px;
  }

  .slider-arrow svg {
    width: 24px;
    height: 24px;
  }

  .welcome-banner {
    margin: 20px 0 20px 0;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 300px;
  }

  .slide-title {
    font-size: 22px;
  }

  .slide-subtitle {
    font-size: 16px;
  }

  .welcome-banner {
    margin: 15px 0 15px 0;
  }
}

/* Shop By Category Section */
.shop-by-category {
  padding: 10px 10px; /* 10px vertical and horizontal padding */
  margin: 0;
}

.category-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 60px 0;
  color: #000;
  letter-spacing: 1px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.category-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 20px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0;
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Responsive Shop By Category */
@media (max-width: 992px) {
  .shop-by-category {
    padding: 10px 10px; /* 10px vertical and horizontal padding */
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .category-heading {
    font-size: 34px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .shop-by-category {
    padding: 10px 10px; /* 10px vertical and horizontal padding */
  }

  .category-heading {
    font-size: 30px;
    margin-bottom: 35px;
  }

  .category-grid {
    gap: 20px;
  }

  .category-title {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .shop-by-category {
    padding: 10px 10px; /* 10px vertical and horizontal padding */
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .category-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

/* Instagram Feed Section */
.instagram-feed {
  padding: 10px 10px; /* 10px vertical and horizontal padding */
  background: #fff;
  margin-top: 40px; /* Increased gap between category and Instagram sections */
  margin-left: 0;
  margin-right: 0;
}

.instagram-handle {
  font-family: 'Playfair Display', serif;
  font-size: 32px; /* Increased from 24px for better prominence */
  font-weight: 400;
  text-align: center;
  margin: 0 0 15px 0;
  color: #1a365d; /* Changed to dark blue */
  letter-spacing: 0.5px;
}

.instagram-divider {
  width: 80px;
  height: 1px;
  background: #1a365d; /* Changed to dark blue to match handle */
  margin: 0 auto 40px auto;
}

.instagram-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 15px 0; /* Removed horizontal padding */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.instagram-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.instagram-card {
  flex: 0 0 280px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.instagram-card:hover {
  transform: translateY(-5px);
}

.instagram-video {
  width: 280px;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.instagram-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instagram-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding: 15px;
  text-align: left;
  line-height: 1.4;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 2;
}

/* Responsive Instagram Feed */
@media (max-width: 992px) {
  .instagram-feed {
    padding: 10px 10px; /* 10px vertical and horizontal padding */
  }

  .instagram-scroll-container {
    padding: 0 0 15px 0; /* No horizontal padding */
  }

  .instagram-video {
    width: 240px;
    height: 400px;
  }

  .instagram-card {
    flex: 0 0 240px;
  }
}

@media (max-width: 768px) {
  .instagram-feed {
    padding: 10px 10px; /* 10px vertical and horizontal padding */
  }

  .instagram-handle {
    font-size: 20px;
  }

  .instagram-divider {
    margin-bottom: 30px;
  }

  .instagram-scroll-container {
    padding: 0 0 15px 0; /* No horizontal padding */
  }

  .instagram-video {
    width: 200px;
    height: 340px;
  }

  .instagram-card {
    flex: 0 0 200px;
  }

  .instagram-caption {
    font-size: 12px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .instagram-feed {
    padding: 10px 10px; /* 10px vertical and horizontal padding */
  }

  .instagram-scroll-container {
    gap: 15px;
    padding: 0 0 15px 0; /* No horizontal padding */
  }

  .instagram-video {
    width: 180px;
    height: 320px;
  }

  .instagram-card {
    flex: 0 0 180px;
  }

  .instagram-caption {
    font-size: 11px;
    padding: 10px;
  }
}

/* Shirts Showcase Section */
.shirts-showcase {
  padding: 0;
  margin: 0 0 40px 0; /* Added 40px bottom margin for gap with footer */
}

.showcase-container {
  margin: 0 auto;
  padding: 0;
}

.showcase-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fair Trade Section */
.fair-trade-section {
  padding: 0;
  margin: 0 0 40px 0; /* Gap with footer */
}

.fair-trade-container {
  margin: 0 auto;
  padding: 0;
}

.fair-trade-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.fair-trade-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Denims Section */
.denims-section {
  padding: 0;
  margin: 0 0 40px 0; /* Gap with footer */
}

.denims-container {
  margin: 0 auto;
  padding: 0;
}

.denims-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.denims-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Virtual Trial Section */
.virtual-trial-section {
  padding: 0;
  margin: 0 0 40px 0; /* Gap with footer */
}

.virtual-trial-container {
  margin: 0 auto;
  padding: 0;
}

.virtual-trial-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.virtual-trial-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Diwali Banner Section */
.diwali-banner-section {
  padding: 0;
  margin: 0 0 40px 0; /* Gap with footer */
}

.diwali-banner-container {
  margin: 0 auto;
  padding: 0;
}

.diwali-banner-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.diwali-banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Look Your Best In Section */
.look-best-section {
  background: white;
  padding: 60px 20px;
  margin: 0;
}

.look-best-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.look-best-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 50px 0;
  color: #2c2c2c;
  letter-spacing: 1px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

.tab-btn {
  background: none;
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab-btn:hover {
  color: #2c2c2c;
}

.tab-btn.active {
  color: #2c2c2c;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #2c2c2c;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.product-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #2c2c2c;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
}

/* Responsive Look Your Best In Section */
@media (max-width: 992px) {
  .look-best-section {
    padding: 50px 20px;
  }

  .look-best-heading {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .category-tabs {
    gap: 30px;
    margin-bottom: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .product-image img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .look-best-section {
    padding: 40px 20px;
  }

  .look-best-container {
    padding: 0 15px;
  }

  .look-best-heading {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .category-tabs {
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 15px;
  }

  .tab-btn {
    font-size: 14px;
    padding: 8px 15px;
  }

  .products-grid {
    gap: 20px;
    margin-bottom: 30px;
  }

  .product-image img {
    height: 290px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .look-best-section {
    padding: 30px 20px;
  }

  .look-best-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .category-tabs {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image img {
    height: 370px;
  }

  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}
.modal-left {
  background: linear-gradient(135deg, #192e4b 0%, #2a4a6f 100%);
  color: white;
  padding: 50px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.modal-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.modal-tagline {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 50px;
  line-height: 1.3;
}

.modal-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
}

.feature-item span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

/* Right Side - Login Form */
.modal-right {
  flex: 1;
  padding: 50px 40px;
  position: relative;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #666;
  border-radius: 50%;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #ff0000;
}

.login-form {
  width: 100%;
  max-width: 400px;
}

.login-form h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2c2c2c;
}

.email-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.email-input-group:focus-within {
  border-color: #192e4b;
  box-shadow: 0 0 0 3px rgba(25, 46, 75, 0.1);
}

.email-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #2c2c2c;
  font-family: 'Roboto', sans-serif;
}

.email-input::placeholder {
  color: #999;
}

.password-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.password-input-group:focus-within {
  border-color: #192e4b;
  box-shadow: 0 0 0 3px rgba(25, 46, 75, 0.1);
}

.password-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #2c2c2c;
  font-family: 'Roboto', sans-serif;
}

.password-input::placeholder {
  color: #999;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #192e4b;
}

.checkbox-group label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.login-btn {
  width: 100%;
  background: #000;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.login-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-btn:active {
  transform: translateY(0);
}

.privacy-text {
  font-size: 12px;
  color: #999;
  text-align: center;
  line-height: 1.5;
}

.privacy-link {
  color: #4a9eff;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Login Success Modal */
.success-modal {
  max-width: 500px;
  text-align: center;
}

.success-content {
  padding: 50px 40px;
}

.success-icon {
  color: #28a745;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.success-content h2 {
  color: #2c2c2c;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.success-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.success-btn {
  background: #192e4b;
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.success-btn:hover {
  background: #0f1e33;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 46, 75, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-container {
    flex-direction: column;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
  }

  .modal-left {
    padding: 30px 20px;
  }

  .modal-tagline {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .modal-right {
    padding: 30px 20px;
  }

  .login-form h2 {
    font-size: 24px;
  }

  .success-content {
    padding: 40px 20px;
  }

  .success-content h2 {
    font-size: 24px;
  }

  .success-content p {
    font-size: 14px;
  }
}

/* Footer Section */
.footer {
  background: #cbb588;
  color: #333;
  margin-top: 0;
  font-weight: normal;
}

/* Popular Searches */
.footer-searches {
  background: #cbb588;
  padding: 8px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.searches-label {
  font-weight: 700;
  margin-right: 6px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
}

.separator {
  color: #666;
  margin: 0 4px;
}

.search-link {
  color: #333;
  text-decoration: none;
  margin: 0 2px;
  font-size: 15px;
  transition: color 0.3s ease;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.search-link:hover {
  color: #000;
  text-decoration: underline;
}

/* Newsletter Section */
.footer-newsletter {
  background: #cbb588;
  padding: 20px 15px;
  text-align: center;
}

.footer-newsletter h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 8px;
  color: #000;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.5px;
}

.footer-newsletter p {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #333;
  border-radius: 0;
  font-size: 15px;
  outline: none;
  background: transparent;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.newsletter-input::placeholder {
  color: #555;
  font-weight: 400;
}

.newsletter-input:focus {
  background: transparent;
  border-color: #333;
  outline: none;
}

.newsletter-btn {
  padding: 14px 40px;
  background: #000;
  color: white;
  border: 2px solid #000;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.5px;
}

.newsletter-btn:hover {
  background: #333;
  border-color: #333;
}

/* Footer Main Content */
.footer-main {
  background: #cbb588;
  padding: 20px 15px;
}

  .footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* reduced gap between columns */
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.3px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-link {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.footer-link:hover {
  color: #000;
  text-decoration: none;
}

.footer-link svg {
  flex-shrink: 0;
}

.footer-contact-icon.material-icons {
  font-size: 20px;
  line-height: 1;
  color: #333;
  flex-shrink: 0;
}

/* Footer Features */
.footer-features {
  background: #cbb588;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  border-top: none;
}

/* Ensure footer inline SVG icons are visible against the footer background */
.footer svg {
  color: #333; /* used by SVGs using currentColor */
  stroke: #333; /* ensure strokes are visible */
  fill: #333; /* fill any filled shapes to match color */
}

/* Smaller social icons in footer bottom for consistent sizing */
.footer-bottom .social-link svg {
  width: 18px;
  height: 18px;
}


.feature-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.footer-feature-icon.material-icons {
  font-size: 48px;
  line-height: 1;
  color: #333;
}

.feature-box svg {
  color: #333;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(8%) saturate(422%) hue-rotate(314deg) brightness(92%) contrast(87%);
}

.feature-box span {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  font-family: 'Roboto', sans-serif;
  white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
  background: #cbb588;
  padding: 10px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

  .footer-bottom-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px; /* small gap to reduce spacing between elements on wrap */
}

.copyright {
  font-size: 13px;
  color: #333;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social span {
  font-size: 14px;
}

/* Material Icons CSS */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border-radius: 3px;
  color: #333;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  transform: translateY(-1px);
}

.social-link .material-icons{font-size:16px;line-height:1}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-features {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .footer-searches {
    padding: 16px 20px;
  }
  
  .search-link {
    display: inline-block;
    margin: 4px 6px;
  }
  
  .footer-newsletter {
    padding: 40px 20px;
  }
  
  .footer-newsletter h2 {
    font-size: 28px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  
  .newsletter-btn {
    border-radius: 4px;
  }
  
  .footer-main {
    padding: 40px 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-features {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #333;
}

.slider-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-arrow-left {
  left: 20px;
}

.slider-arrow-right {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: white;
  width: 14px;
  height: 14px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Welcome Banner */
.welcome-banner {
  width: 100%;
  display: block;
  margin: 30px 0 30px 0;
}

/* Hero Slider Responsive */
@media (max-width: 768px) {
  .slider-container {
    height: 400px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .slider-arrow-left {
    left: 10px;
  }

  .slider-arrow-right {
    right: 10px;
  }

  .slider-dots {
    bottom: 15px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 300px;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .slider-arrow-left {
    left: 8px;
  }

  .slider-arrow-right {
    right: 8px;
  }

  .slider-dots {
    bottom: 10px;
    gap: 6px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 10px;
    height: 10px;
  }
}

/* Modern New Arrivals Section */
.new-arrivals-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 20px;
  display: flex;
  align-items: center;
}

.new-arrivals-section .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #192e4b;
  margin-bottom: 20px;
  margin-top: 0;
  letter-spacing: 3px;
  position: relative;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 60px;
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.categories-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.category-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #192e4b;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  position: relative;
}

.category-name::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

.category-item:hover .category-name::after {
  width: 60px;
}

/* Responsive Design for New Arrivals Categories */
@media (max-width: 1200px) {
  .categories-grid {
    gap: 40px;
  }

  .category-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .new-arrivals-section {
    padding: 30px 20px;
  }

  .section-heading {
    font-size: 2.8rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .categories-grid {
    gap: 30px;
  }

  .category-icon {
    width: 110px;
    height: 110px;
  }

  .category-name {
    font-size: 1rem;
    font-weight: 300;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .category-icon {
    width: 80px;
    height: 80px;
  }

  .section-heading {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .category-name {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .categories-grid {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .category-icon {
    width: 70px;
    height: 70px;
  }

  .section-heading {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }

  .category-name {
    font-size: 0.75rem;
  }

  .new-arrivals-section {
    padding: 20px 15px;
  }
}

/* New Arrivals Products Section */
.products-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.products-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.products-section .section-heading {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
  font-weight: 500;
}

/* Products Grid */
.new-arrivals-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Product Cards */
.new-product-card {
  background: #fafafa;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Blue NEW Badge - Diagonal Ribbon Style */
.new-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
  z-index: 10;
}

.new-badge::before {
  content: 'NEW';
  position: absolute;
  top: 10px;
  left: -25px;
  width: 120px;
  background: #3d5a80;
  color: white;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.new-product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}



.product-img-container {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.product-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.new-product-card:hover .product-img-container img {
  transform: scale(1.05);
}

.product-details {
  padding: 20px;
}

.product-details h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-details p:first-of-type {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.product-details p:nth-of-type(2) {
  font-size: 13px;
  color: #28a745;
  margin-bottom: 15px;
  font-weight: 500;
}

.color-options {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.color-option {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-option:hover {
  transform: scale(1.1);
  border-color: #333;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.new-add-to-cart {
  flex: 1;
  background: #000;
  color: white;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.new-add-to-cart:hover {
  background: #333;
  transform: translateY(-1px);
}

.new-add-to-wishlist {
  background: white;
  border: 2px solid #000;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.new-add-to-wishlist:hover {
  background: #000;
  color: white;
}

/* Responsive Design for Products Grid */
@media (max-width: 1200px) {
  .new-arrivals-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .products-section .section-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .products-section {
    padding: 50px 0;
  }

  .new-arrivals-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .products-section .section-heading {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .product-details {
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 40px 0;
  }

  .products-section .container {
    padding: 0 15px;
  }

  .new-arrivals-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .products-section .section-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .product-details {
    padding: 15px;
  }

  .product-details h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .product-details p:first-of-type {
    font-size: 18px;
  }

  .product-details p:nth-of-type(2) {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .new-add-to-cart {
    padding: 10px;
    font-size: 13px;
  }

  .new-add-to-wishlist {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 30px 0;
  }

  .new-arrivals-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .products-section .section-heading {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .new-product-card {
    max-width: 350px;
    margin: 0 auto;
  }

  .product-details {
    padding: 15px;
  }

  .product-details h3 {
    font-size: 15px;
  }

  .product-details p:first-of-type {
    font-size: 19px;
  }
}

@media (max-width: 360px) {
  .products-section .container {
    padding: 0 10px;
  }

  .new-arrivals-products-grid {
    gap: 15px;
  }

  .products-section .section-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .product-details {
    padding: 12px;
  }

  .product-details h3 {
    font-size: 14px;
  }

  .product-details p:first-of-type {
    font-size: 17px;
  }

  .new-add-to-cart {
    padding: 8px;
    font-size: 12px;
  }

  .color-options {
    gap: 6px;
    margin-bottom: 12px;
  }

  .color-option {
    width: 20px;
    height: 20px;
  }

  .product-actions {
    gap: 6px;
  }
}

/* Flying Off The Shelf Section */
.flying-shelf-section {
  padding: 60px 0;
  background: #fff;
  margin: 40px 0;
}

.flying-shelf-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 50px 0;
  color: #000;
  letter-spacing: 1px;
}

.flying-shelf-container {
  max-width: 100%;
  margin: 0;
  position: relative;
  padding: 0 50px;
}

.shelf-products-wrapper {
  overflow: hidden;
  width: 100%;
}

.shelf-products-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.shelf-product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: calc(25% - 15px);
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.shelf-product-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.shelf-product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
}

.shelf-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.shelf-product-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.shelf-product-name {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shelf-product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 5px 0;
}

.shelf-original-price {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.shelf-sale-price {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.shelf-discount-badge {
  background: #ff6b35;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;   
}

.shelf-extra-discount {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

.shelf-product-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.shelf-add-to-cart-btn {
  flex: 1;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.shelf-add-to-cart-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.shelf-add-to-wishlist-btn {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}

.shelf-add-to-wishlist-btn:hover {
  background: #000;
  color: #fff;
}

.shelf-add-to-wishlist-btn.added {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #fff;
}

.shelf-add-to-wishlist-btn .material-icons {
  font-size: 20px;
}

.shelf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #333;
}

.shelf-arrow:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.shelf-arrow-left {
  left: 0;
}

.shelf-arrow-right {
  right: 0;
}

/* Responsive Flying Off The Shelf */
@media (max-width: 1200px) {
  .shelf-product-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
  }
}

@media (max-width: 992px) {
  .flying-shelf-section {
    padding: 50px 0;
  }

  .flying-shelf-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .flying-shelf-container {
    padding: 0 45px;
  }

  .shelf-product-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .flying-shelf-section {
    padding: 40px 0;
  }

  .flying-shelf-heading {
    font-size: 30px;
    margin-bottom: 35px;
  }

  .flying-shelf-container {
    padding: 0 40px;
  }

  .shelf-arrow {
    width: 40px;
    height: 40px;
  }

  .shelf-arrow svg {
    width: 20px;
    height: 20px;
  }

  .shelf-product-name {
    font-size: 12px;
  }

  .shelf-original-price {
    font-size: 13px;
  }

  .shelf-sale-price {
    font-size: 15px;
  }

  .shelf-product-info {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .flying-shelf-section {
    padding: 30px 0;
  }

  .flying-shelf-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .flying-shelf-container {
    padding: 0 35px;
  }

  .shelf-product-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .shelf-arrow {
    width: 36px;
    height: 36px;
  }

  .shelf-arrow svg {
    width: 18px;
    height: 18px;
  }
}
