/* Main Styles for Redbubble Clone */

/* Import base styles */
@import url('colors.css');
@import url('fonts.css');
@import url('placeholders.css');

/* Global container styles */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background-color: var(--rb-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 0.75rem 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar-logo {
  flex: 0 0 auto;
  margin-right: 1rem;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-search {
  flex: 1 1 auto;
  margin: 0 1rem;
  max-width: 500px;
}

.search-form {
  display: flex;
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--rb-border-light);
  border-radius: 50px;
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-base);
  background-color: #f5f5f5;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--rb-border-dark);
}

.search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.search-button img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.search-button:hover img {
  opacity: 1;
}

.navbar-links {
  display: flex;
  align-items: center;
}

.nav-link {
  margin-left: 1.5rem;
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-base);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--rb-red);
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-icon:hover img {
  opacity: 1;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-bar {
  width: 100%;
  height: 2px;
  background-color: var(--rb-text-primary);
  transition: transform 0.3s ease;
}

/* Grey Background Strip Only */
.top-banner {
  background-color: rgba(233, 233, 240, 0.6);
  height: 75px; 
  border-bottom: 15px solid  var(--rb-white);;
}

/* Section Navigation */
.section-nav {
  background-color: var(--rb-white);
  border-bottom: 1px solid var(--rb-border-light);
  position: sticky;
  top: 75px;
  z-index: 99;
}

.section-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.section-nav-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.section-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-base);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
}

.section-nav-link:hover {
  color: var(--rb-red);
}

.section-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--rb-red);
  transition: width 0.2s ease;
}

.section-nav-link:hover::after {
  width: 100%;
}

/* Hero Banner */
.hero-banner {
  background-color: #ffd1e0; 
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden; 
  background-image: url('../assets/images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
}
.hero-banner .container {
  max-width: 1200px; 
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-title {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-56px);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-xl);
  font-weight: var(--rb-font-weight-semibold);
  color: var(--rb-text-primary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-base);
  font-weight: var(--rb-font-weight-medium);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--rb-button-primary);
  color: var(--rb-white);
  border: 2px solid var(--rb-button-primary);
}

.btn-primary:hover {
  background-color: var(--rb-button-hover);
  border-color: var(--rb-button-hover);
}

.btn-secondary {
  background-color: var(--rb-button-secondary);
  color: var(--rb-text-primary);
  border: 2px solid var(--rb-border-light);
}

.btn-secondary:hover {
  border-color: var(--rb-border-dark);
}

/* Product Range Section */
.product-range {
  padding: 3rem 0; 
}

.section-title {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-2xl);
  font-weight: var(--rb-font-weight-bold);
  color: var(--rb-text-primary);
  margin-bottom: 2rem;
  text-align: left;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%; /* 1:1 Aspect ratio */
  background-color: var(--rb-light-gray);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: inherit; 
  transition: transform 0.5s ease;
  z-index: 0;
}

.product-card:hover::before {
  transform: scale(1.1);
}

.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.new-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--rb-pink);
  color: var(--rb-white);
  font-family: var(--rb-font-primary);
  font-weight: var(--rb-font-weight-bold);
  font-size: var(--rb-font-size-base);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  z-index: 2;
}

.product-link {
  display: inline-block;
  background-color: var(--rb-white);
  color: var(--rb-text-primary);
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-base);
  font-weight: var(--rb-font-weight-medium);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.product-link:hover {
  background-color: var(--rb-red);
  color: var(--rb-white);
}

/* Featured Products Section */
.featured-product {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%; /* Ensure equal height inside the grid */
  overflow: hidden;
}

.featured-slider {
  position: relative;
  padding: 0 2rem;
}

.slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: var(--rb-white);
  border: 1px solid var(--rb-border-light);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  border-color: var(--rb-border-dark);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  overflow-x: hidden;
}

.featured-product {
  transition: transform 0.3s ease;
}

/* .featured-product:hover {
  transform: translateY(-5px);         //hover effect
} */

.featured-product-link {
  display: block;
}

.featured-product-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* 1:1 Aspect ratio */
  border-radius: 4px;
  margin-bottom: 0.75rem;
  background-color: var(--rb-light-gray);
}

.featured-product-title {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-sm);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-product-artist {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-xs);
  color: var(--rb-text-secondary);
  margin-bottom: 0.25rem;
}

.featured-product-price {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-sm);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
}

/* Explore Designs Section */
.explore-designs {
  padding: 2rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 0.5rem; */
}

.see-more-link {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-base);
  color: var(--rb-red);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.see-more-link:hover {
  opacity: 0.8;
}

.explore-designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.5rem 0;
}

/* Hide scrollbar and enable scrolling */
.explore-designs-grid.horizontal-scroll {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.explore-designs-grid.horizontal-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.explore-designs-grid.horizontal-scroll .design-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  min-width: 235px;
  max-width: 235px;
}

.design-card {
  transition: transform 0.3s ease;
}

/* .design-card:hover {
  transform: translateY(-5px);
} */

.design-card-link {
  display: block;
}

.design-card-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* 1:1 Aspect ratio */
  border-radius: 4px;
  margin-bottom: 0.75rem;
  background-color: var(--rb-light-gray);
  overflow: hidden;
}

.heart-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: var(--rb-white);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.heart-button:hover {
  transform: scale(1.1);
}

.heart-button svg {
  width: 18px;
  height: 18px;
}

.design-card-title {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-sm);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
  margin-bottom: 0.25rem;
}

.design-card-artist {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-xs);
  color: var(--rb-text-secondary);
  margin-bottom: 0.25rem;
}

.design-card-products {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-xs);
  color: var(--rb-text-secondary);
}

/* Featured Artists Section */
.featured-artists {
  padding: 2rem 0;
}

.featured-artists-grid {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  touch-action: pan-x;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.featured-artists-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.artist-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: transform 0.3s ease-out;
  background: var(--rb-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Desktop (default) - 4 cards */
@media (min-width: 1024px) {
  .artist-card {
    min-width: calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }
}

/* Tablet - 3 cards */
@media (max-width: 1023px) and (min-width: 768px) {
  .artist-card {
    min-width: calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
  }
}

/* Mobile - 2 cards */
@media (max-width: 767px) {
  .artist-card {
    min-width: calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

.artist-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.artist-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.75rem;
}

.artist-card-image {
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.artist-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rb-gray-light);
  margin-bottom: 0.75rem;
}

.artist-name {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--rb-text-primary);
}

.view-shop-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: var(--rb-primary);
  color: var(--rb-white);
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.view-shop-button:hover {
  background: var(--rb-primary-dark);
}

.artist-card {
  border: 1px solid var(--rb-border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* .artist-card:hover {
  transform: translateY(-5px);
} */

.artist-card-link {
  display: block;
  text-align: center;
}

.artist-card-image {
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 Aspect ratio */
  background-color: var(--rb-light-gray);
  position: relative;
}

.artist-avatar {
  margin-top: -28px; /* pull it slightly upward over the image */
  margin-bottom: 0.75rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--rb-white);
  background-color: var(--rb-light-gray);
  background-size: cover;
  display: inline-block;
  position: relative; /* make z-index work */
  z-index: 2; /* bring in front */
}

.artist-name {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-base);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
  margin: 2.5rem 0 1rem;
}

.view-shop-button {
  display: inline-block;
  background-color: var(--rb-bg-light);
  color: var(--rb-text-primary);
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-sm);
  font-weight: var(--rb-font-weight-medium);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}

.view-shop-button:hover {
  background-color: var(--rb-red);
  color: var(--rb-white);
}

/* Fan Art Section */
.fan-art {
  padding: 3rem 0;
}

.tab-list {
  display: flex;
  border-bottom: 2px solid var(--rb-border-light);
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-button {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-base);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-secondary);
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.tab-button.active {
  color: var(--rb-red);
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--rb-red);
}

.fan-art-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 1.5rem;
}

.fan-art-product {
  transition: transform 0.3s ease;
}

/* .fan-art-product:hover {
  transform: translateY(-5px);
} */

.fan-art-product-link {
  display: block;
}

.fan-art-product-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* 1:1 Aspect ratio */
  border-radius: 4px;
  margin-bottom: 0.75rem;
  background-color: var(--rb-light-gray);
  overflow: hidden;
}

.fan-art-product-title {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-sm);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fan-art-product-artist {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-xs);
  color: var(--rb-text-secondary);
  margin-bottom: 0.25rem;
}

.fan-art-product-price {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-sm);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
}

/* Trust Badges Section */
.trust-badges {
  padding: 3rem 0;
  background-color: var(--rb-bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-badges-wrapper {
  background: white;
  border-radius: 10px;
  width: 1180px;
  min-height: 290px;
  border: 1px solid var(--rb-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin: 0 auto;
}

.trust-badges-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.trust-badge-icon {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.trust-badge-title {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-base);
  font-weight: var(--rb-font-weight-medium);
  color: var(--rb-text-primary);
  margin-bottom: 0.5rem;
}

.trust-badge-text {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-sm);
  color: var(--rb-text-secondary);
  margin-bottom: 0.5rem;
}

.trust-badge-link {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-sm);
  color: var(--rb-text-primary);
  text-decoration: underline;
}

.trust-badge-link:hover {
  color: var(--rb-red);
}

/* Promotional Banner */
.promo-banner {
  background-color: var(--rb-bg-cream);
  padding: 3rem 0;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

.promo-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.promo-images {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.promo-image-left {
  position: absolute;
  left: -370px;
  top: -15px;
  width: 80px;
  height: auto;
}

.promo-image-right {
  position: absolute;
  right: -370px;
  bottom: -140px;
  width: 100px;
  height: auto;
}

.promo-title {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-xl);
  font-weight: var(--rb-font-weight-bold);
  color: var(--rb-text-primary);
}

.promo-subtitle {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-lg);
  font-weight: var(--rb-font-weight-bold);
  color: var(--rb-text-primary);
  margin-bottom: 1rem;
}

.Signup-button{
  display: inline-block;
  padding: 0.75rem 4rem;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgb(255, 89, 111);
  color: var(--rb-white);
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-md);
  font-weight: var(--rb-font-weight-semibold);
}

/* Footer */
.footer {
  background-color: #0a0a23; /* Dark blue from screenshots */
  color: var(--rb-white);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-heading {
  font-family: var(--rb-font-primary);
  font-size: var(--rb-font-size-base);
  font-weight: var(--rb-font-weight-medium);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-sm);
  color: var(--rb-white);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social-links li {
  margin-bottom: 1rem;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-sm);
  color: var(--rb-white);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-social-links a:hover {
  opacity: 1;
}

.footer-social-links svg {
  margin-right: 0.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 30px;
  width: auto;
  opacity: 0.8;
}

.footer-info {
  display: flex;
  align-items: center;
}

.region-selector {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-sm);
}

.region-flag {
  margin-right: 0.5rem;
}

.content-settings {
  font-family: var(--rb-font-secondary);
  font-size: var(--rb-font-size-sm);
}

/* Responsive Design - Tablet */
/* Product Grid Responsive Design */
@media (max-width: 1024px) {
    .section-title {
      font-size: 1.8rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-card {
        height: 0;
        padding-bottom: 100%;
    }
    
    .product-card-content {
        padding: 1rem;
    }
    
    .new-tag {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .product-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .explore-designs-grid.horizontal-scroll .design-card {
      min-width: calc(33.33% - 0.66rem); /* Approximately 3 cards with 1rem gap */
      max-width: calc(33.33% - 0.66rem);
    }

    .section-header h2 {
      font-size: 1.8rem;
    }

    .featured-products-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE and Edge */
      touch-action: pan-x;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      user-select: none;
    }
  
    .featured-products-grid::-webkit-scrollbar {
      display: none; /* Chrome, Safari and Opera */
    }
  
    .featured-product {
      flex: 0 0 auto;
      min-width: calc(20% - 1rem); /* 5 cards with 1rem gap */
      max-width: calc(20% - 1rem);
      scroll-snap-align: start;
      transition: transform 0.3s ease-out;
    }
    
    .featured-product::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
    }
    
    .slider-arrow {
      display: none;
    }
    
    .featured-slider {
      padding: 0 1rem; /* Adjust padding for mobile */
      -webkit-overflow-scrolling: touch;
    }
    /* Trust Badges Responsive Design */
    .trust-badges-wrapper,
    .tshirt-info-wrapper {
        width: 90%;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-badge {
        padding: 1rem;
    }
    /* Footer Responsive Design */
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

/* Responsive Design - Mobile */
/* Product Grid Responsive Design */
@media (max-width: 768px) {
    .section-title {
      font-size: 1.5rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        height: 0;
        padding-bottom: 100%;
        border-radius: 6px;
    }
    
    .product-card::before {
        background-size: cover;
        background-position: center;
    }
    
    .product-card-content {
        padding: 0.75rem;
    }
    
    .new-tag {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .product-link {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .featured-products-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE and Edge */
    }
  
    .featured-products-grid::-webkit-scrollbar {
      display: none; /* Chrome, Safari and Opera */
    }
  
    .featured-product {
      flex: 0 0 auto;
      min-width: calc(50% - 0.75rem); /* Two cards with 1.5rem gap */
      max-width: calc(50% - 0.75rem);
      scroll-snap-align: start;
    }
  
    .slider-arrow {
      display: none;
    }
  
    .featured-slider {
      padding: 0 1rem; /* Adjust padding for mobile */
    }
    .explore-designs-grid.horizontal-scroll .design-card {
      min-width: calc(50% - 0.5rem);
      max-width: calc(50% - 0.5rem);
    }

    .section-header h2 {
      font-size: 1.5rem;
    }
}

/* Responsive Design - Small Mobile */
/* Product Grid Responsive Design */
@media (max-width: 480px) {
    .section-title {
      font-size: 1.2rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .product-card {
        height: 0;
        padding-bottom: 100%;
        border-radius: 4px;
    }
    
    .product-card-content {
        padding: 0.5rem;
    }
    
    .new-tag {
        top: 0.25rem;
        right: 0.25rem;
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .product-link {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    .featured-products-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE and Edge */
    }
  
    .featured-products-grid::-webkit-scrollbar {
      display: none; /* Chrome, Safari and Opera */
    }
  
    .featured-product {
      flex: 0 0 auto;
      min-width: calc(50% - 0.75rem); /* Two cards with 1.5rem gap */
      max-width: calc(50% - 0.75rem);
      scroll-snap-align: start;
    }
  
    .slider-arrow {
      display: none;
    }
  
    .featured-slider {
      padding: 0 1rem; /* Adjust padding for mobile */
    }
    .explore-designs-grid.horizontal-scroll .design-card {
      min-width: calc(50% - 0.5rem);
      max-width: calc(50% - 0.5rem);
    }

    .section-header h2 {
      font-size: 1.2rem;
    }
    /* Footer Responsive Design */
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
    }
    
    .footer-logo {
      margin-bottom: 1rem;
    }
    
    .footer-info {
      flex-direction: column;
      align-items: center;
    }
    
    .region-selector {
      margin-right: 0;
      margin-bottom: 0.5rem;
    }
    
    .section-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .see-more-link {
      margin-top: 0.5rem;
    }
}

