/* =============================================
   Szivárvány Cipőbolt - Shared Stylesheet
   ============================================= */

/* --- Design Tokens --- */
:root {
  --color-bg: #fbfaf8;
  --color-bg-beige: #f6efe7;
  --color-header: #6e5e63;
  --color-text: #26121b;
  --color-grey: #8a8a8a;
  --color-light-border: #d7d0ce;
  --color-salmon: #e98170;
  --color-red: #e5472d;
  --color-white: #ffffff;

  --font-family: 'Poppins', sans-serif;
  --radius-sm: 9px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 30px;
}

/* --- Base --- */
body {
  font-family: var(--font-family) !important;
  background-color: var(--color-bg) !important;
  color: var(--color-text) !important;
  margin: 0 !important;
}

a {
  color: var(--color-text) !important;
  text-decoration: none !important;
}

a:hover {
  color: var(--color-salmon) ;
}

h1::first-letter {
    text-transform: uppercase;
}

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

label{
	display: inline !important;
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--color-bg);
  padding: 15px 0;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: flex-end;
}

.top-bar-actions a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-bar-actions a img {
  width: 30px;
  height: auto;
}

.logo-link {
  display: inline-block;
}

.logo-link img {
  height: 83px;
  width: auto;
}

@media (max-width: 768px) {
  .logo-link img  {
    height: 50px;
  }
}

/* --- Main Navigation --- */
.main-nav {
  background-color: var(--color-header);
  padding: 18px 0;
}

.main-nav .nav-link {
  color: var(--color-bg-beige) !important;
  font-size: 18px;
  padding: 8px 0 !important;
  margin-right: 30px;
  white-space: nowrap;
}

.nav-link {
    display: inline-block;
    transition: all 0.2s ease;
}

.nav-link:hover {
    text-shadow: 0 0 0.5px #fff;
    transform: scale(1.05);
	color: #fff !important;
}

.search-box {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  border: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 317px;
  height: 34px;
}

.search-box input {
  border: none;
  background: transparent;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--color-grey);
  outline: none;
  flex: 1;
  font-family: var(--font-family);
}

.search-box button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box button img {
  width: 34px;
  height: 34px;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
    padding: 0;
    transition: all 0.2s ease;
}

.hero-dots button.active {
    background-color: black;
    transform: scale(1.2);
}

.hero-dots button:hover {
    background-color: black;
    opacity: 0.8;
}

/* --- CTA Buttons --- */
.btn-salmon {
  background-color: var(--color-salmon);
  color: var(--color-text);
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 45px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-family);
  box-shadow: 1px 1px 6.7px 0 rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s;
  display: inline-block;
  text-align: center;
}

@media (max-width: 768px) {
  .btn-salmon {
    padding: 10px 25px;
    font-size: 18px;
  }
}

.btn-salmon:hover {
  background-color: #d4705f;
  color: var(--color-text);
}

.btn-salmon-light {
  background-color: var(--color-salmon);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 45px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-family);
  box-shadow: 1px 1px 6.7px 0 rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-salmon-light:hover {
  background-color: #d4705f;
  color: var(--color-bg);
}

/* --- Section Titles --- */
.section-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* --- Category Cards --- */
.category-card {
  text-align: center;
}

.category-card .card-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 302/425;
}

.category-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.category-card .card-label {
  font-size: 20px;
  font-weight: 300;
  margin-top: 8px;
}

/* --- Category Carousel Arrows --- */
.category-carousel .carousel-control-prev,
.category-carousel .carousel-control-next {
  width: 53px;
  height: 53px;
  top: 50%;
  transform: translateY(-70%);
  opacity: 1;
  background: none;
}

.category-carousel .carousel-control-prev {
  left: -20px;
}

.category-carousel .carousel-control-next {
  right: -20px;
}

.carousel-arrow {
  width: 53px;
  height: 53px;
}

/* --- Supinált Section --- */
.supinalt-section {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.supinalt-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.supinalt-section p {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
}

.supinalt-buttons .btn-salmon {
  margin-right: 15px;
  margin-bottom: 10px;
}

/* --- Product Cards --- */
.product-card {
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  padding: 11px;
  background: white;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card .product-img-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 257/246;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.product-card .product-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
}

.product-card .wishlist-btn {
  position: absolute;
  top: 22px;
  left: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.product-card .wishlist-btn img {
  width: 37px;
  height: 34px;
}

.product-card .cart-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.product-card .cart-btn img {
  width: 60px;
  height: 60px;
}

.product-card .product-info {
  margin-top: auto;
  padding-top: 12px;
  padding-left: 11px;
}

.product-card .product-price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2px;
}

.product-card .product-price.sale {
  color: var(--color-red);
}

.product-card .product-price-old {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-grey);
  text-decoration: line-through;
  text-align: right;
}

.product-card .product-name,
.product-card .product-brand {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 2px;
}

/* --- Brands Section --- */
.brands-section {
  background-color: var(--color-bg-beige);
  padding: 60px 0;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.brands-row img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* --- Map Section --- */
.map-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Footer Contact --- */
.footer-contact {
  background-color: var(--color-bg-beige);
  padding: 50px 0;
}

.footer-contact h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-contact-info p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-social img {
  width: 34px;
  height: 34px;
}

/* Newsletter */
.newsletter-form .form-control {
  background-color: var(--color-bg);
  border: none;
  border-radius: var(--radius-lg);
  padding: 8px 17px;
  font-size: 14px;
  font-family: var(--font-family);
  color: var(--color-grey);
  margin-bottom: 12px;
  height: 38px;
}

.newsletter-form .form-check-label {
  font-size: 12px;
  color: var(--color-grey);
}

.newsletter-form .form-check-label a {
  color: var(--color-grey);
  text-decoration: underline;
}

.newsletter-form .form-check-input {
  width: 11px;
  height: 11px;
  border-color: var(--color-grey);
  background-color: var(--color-bg);
}

.newsletter-discount {
  background-color: var(--color-red);
  color: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 12px 27px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.footer-payment img {
  max-height: 51px;
  width: auto;
}

.footer-badges {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-badges img {
  height: 75px;
  width: auto;
}

/* --- Bottom Bar --- */
.bottom-bar {
  background-color: var(--color-header);
  padding: 25px 0;
}

.bottom-bar img {
  height: 55px;
  width: auto;
}

/* --- Termekeink Page Specific --- */
.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Sorting Bar */
.sort-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.sort-bar .btn-sort {
  background-color: var(--color-bg-beige);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  font-size: 18px;
  font-family: var(--font-family);
  color: var(--color-text);
  cursor: pointer;
}

.sort-bar .btn-sort:hover,
.sort-bar .btn-sort.active {
  background-color: var(--color-salmon);
}

/* Sidebar Filters */
.filter-sidebar h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 25px;
}

.filter-sidebar h3:first-child {
  margin-top: 0;
}

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

.filter-sidebar .filter-list li {
  margin-bottom: 6px;
}

.filter-sidebar .filter-list li a {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text);
}

.filter-sidebar .filter-list li a:hover {
  color: var(--color-salmon);
}

.filter-sidebar .filter-count {
  color: var(--color-grey);
  font-size: 14px;
  margin-left: 5px;
}

/* Size Filter Grid */
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-beige);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 20px;
  font-family: var(--font-family);
  color: var(--color-text);
  cursor: pointer;
}

.size-btn:hover,
.size-btn.active {
  background-color: var(--color-salmon);
  color: var(--color-text);
}

.size_btn {
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-beige);
  border: none;
  border-radius: var(--radius-sm);
	margin-right:3px;
  font-size: 16px;
  font-family: var(--font-family);
  color: var(--color-text);
  cursor: pointer;
}

.size_btn:hover {
  background-color: var(--color-salmon);
  color: var(--color-text);
}

.size-btn.unavailable {
  background-color: var(--color-bg);
  color: var(--color-grey);
  cursor: default;
}

/* Price Range */
.price-range {
  display: flex;
  gap: 15px;
  align-items: center;
}

.price-range .price-box {
  background-color: var(--color-bg-beige);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-size: 20px;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: center;
}

.price-slider {
  margin-top: 15px;
}

.price-slider input[type="range"] {
  width: 100%;
  accent-color: var(--color-header);
}

/* Newsletter CTA on listing */
.newsletter-cta-card {
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.newsletter-cta-card .discount-text {
  font-size: 96px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.newsletter-cta-card .discount-label {
  font-size: 32px;
  font-weight: 500;
  text-transform: lowercase;
}

.newsletter-cta-card .cta-text {
  font-size: 20px;
  margin-top: 15px;
}

.newsletter-cta-card .cta-text strong {
  font-weight: 700;
}

.newsletter-cta-card .btn-salmon-sm {
  background-color: var(--color-salmon);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 30px;
  font-size: 20px;
  font-family: var(--font-family);
  margin-top: 15px;
}

/* Pagination */
.pagination-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.pagination-custom .page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--color-text);
  text-decoration: none;
}

.pagination-custom .page-num.active {
  background-color: var(--color-salmon);
  color: var(--color-text);
}

.pagination-custom .page-next {
  background-color: var(--color-bg-beige);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 25px;
  font-size: 20px;
  font-family: var(--font-family);
  color: var(--color-text);
  text-decoration: none;
}

/* --- Termékoldal (Product Detail) --- */
.product-detail-gallery {
  position: relative;
}

.product-main-image {
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
}

.product-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-main-image .wishlist-lg {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.product-main-image .wishlist-lg img {
  width: 71px;
  height: 65px;
}

.product-img-wrapper .wishlist-lg {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.product-thumbnails {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.product-thumbnails .thumb {
  width: 200px;
  height: 200px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  cursor: pointer;
  padding: 10px;
  display: flex;
  /*align-items: center;*/
  justify-content: center;
}

.product-thumbnails .thumb.active {
  border-color: var(--color-salmon);
}

.product-thumbnails .thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Product Detail Info */
.product-detail-info h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-sku {
  font-size: 20px;
  margin-bottom: 5px;
}

.product-color {
  font-size: 20px;
  margin-bottom: 15px;
}

.product-color strong {
  font-weight: 600;
}

.product-detail-price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-detail-info .size-label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-add-to-cart {
  background-color: var(--color-salmon);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 45px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-family);
  box-shadow: 1px 1px 6.7px 0 rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s;
}

.btn-add-to-cart:hover {
  background-color: #d4705f;
  color: var(--color-bg);
}

.btn-add-to-cart img {
  width: 25px;
  height: 27px;
  filter: brightness(10);
}

.free-shipping-badge {
  background-color: var(--color-bg-beige);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 16px;
  display: inline-block;
  margin-top: 15px;
}

.free-shipping-badge strong {
  color: var(--color-red);
  font-weight: 600;
}

/* Product Specs Table */
.product-specs {
  margin-top: 25px;
}

.product-specs table {
  width: 100%;
}

.product-specs table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-light-border);
  font-size: 20px;
  vertical-align: top;
}

.product-specs table td:first-child {
  width: 50%;
}

/* Product Description */
.product-description {
  margin-top: 40px;
}

.product-description h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-description p {
  font-size: 20px;
  line-height: 1.6;
}

.product-description strong {
  font-weight: 600;
}

/* --- Gallery Pages --- */
.gallery-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-overview-card {
  text-align: center;
}

.gallery-overview-card .gallery-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-overview-card .gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-overview-card:hover .gallery-img-wrapper img {
  transform: scale(1.05);
}

.gallery-overview-card .gallery-label {
  font-size: 22px;
  font-weight: 300;
  margin-top: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-grid .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.gallery-grid-2col .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-grid-2col .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Contact Page --- */
.contact-info h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info h3 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.contact-details-table {
  width: 100%;
  margin-bottom: 15px;
}

.contact-details-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-light-border);
  font-size: 20px;
  font-weight: 300;
  vertical-align: top;
}

.contact-details-table td:first-child {
  width: 40%;
}

.opening-hours-table {
  width: 100%;
}

.opening-hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-light-border);
  font-size: 20px;
  font-weight: 300;
  vertical-align: top;
}

.opening-hours-table td:first-child {
  width: 40%;
}

.contact-form-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-form .form-control {
  background-color: var(--color-bg);
  border: none;
  border-radius: var(--radius-lg);
  padding: 8px 17px;
  font-size: 14px;
  font-family: var(--font-family);
  color: var(--color-grey);
  margin-bottom: 12px;
  height: 38px;
}

.contact-form textarea.form-control {
  height: 237px;
  resize: vertical;
}

.contact-form .form-check-label {
  font-size: 12px;
  color: var(--color-grey);
}

.contact-form .form-check-label a {
  color: var(--color-grey);
  text-decoration: underline;
}

/* --- About Page --- */
.about-content {
  font-size: 18px;
  line-height: 1.8;
  max-width: 980px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
}

.about-content ul {
  padding-left: 20px;
}

.about-content ul li {
  margin-bottom: 8px;
}

/* --- Brands A-Z Page --- */
.brand-search {
  background-color: var(--color-bg);
  border: none;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 348px;
  height: 34px;
  margin-bottom: 30px;
}

.brand-search input {
  border: none;
  background: transparent;
  padding: 6px 16px;
  font-size: 14px;
  color: var(--color-grey);
  outline: none;
  flex: 1;
  font-family: var(--font-family);
}

.brand-search button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.alphabet-nav .letter-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-beige);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 20px;
  font-family: var(--font-family);
  color: var(--color-text);
  cursor: pointer;
  text-decoration: none;
}

.alphabet-nav .letter-btn:hover,
.alphabet-nav .letter-btn.active {
  background-color: var(--color-salmon);
}

.brand-letter-section {
  padding: 15px 0;
  border-top: 1px solid var(--color-light-border);
}

.brand-letter-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.brand-letter-section .brand-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 30px;
}

.brand-letter-section .brand-list a {
  font-size: 24px;
  font-weight: 300;
  padding: 4px 0;
  display: block;
}

.brand-letter-section .brand-list a:hover {
  color: var(--color-salmon);
}

/* --- Kategóriák Page --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.categories-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 75%;
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .top-bar-actions {
    gap: 25px;
    font-size: 14px;
  }

  .top-bar-actions a {
    font-size: 14px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .supinalt-section h2 {
    font-size: 36px;
  }

  .page-title {
    font-size: 36px;
  }

  .product-detail-info h1 {
    font-size: 36px;
  }

  .product-thumbnails .thumb {
    width: 120px;
    height: 120px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-letter-section .brand-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info h2,
  .contact-form-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .top-bar-actions {
    gap: 15px;
  }

  .top-bar-actions a span {
    display: none;
  }

  .hero-section {
    min-height: 350px;
  }

  .hero-section h1 {
    font-size: 28px;
  }

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

  .brands-row {
    justify-content: center;
  }

  .product-detail-info h1 {
    font-size: 28px;
    margin-top: 20px;
  }

  .product-thumbnails .thumb {
    width: 80px;
    height: 80px;
  }

  .footer-badges {
    margin-top: 15px;
  }

  .gallery-overview {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid-2col {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid-3 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .brand-letter-section .brand-list {
    grid-template-columns: 1fr;
  }

  .contact-info h2,
  .contact-form-section h2,
  .contact-info h3 {
    font-size: 28px;
  }

  .alphabet-nav .letter-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* --- Container widths for large screens --- */
@media (min-width: 1700px) {
  .container-fluid {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ACCOUNT PAGE */
.account-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  padding: 30px;
  height: 100%;
}

.account-benefits {
  padding-left: 20px;
}

.account-benefits li {
  margin-bottom: 8px;
  font-size: 18px;
}

.custom-input {
  background-color: var(--color-bg);
  border: none;
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  font-size: 14px;
  font-family: var(--font-family);
  color: var(--color-text);
}

.error-box {
  background-color: #ffe5e1;
  color: var(--color-red);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.forgot-link {
  font-size: 14px;
  color: var(--color-grey);
}

.forgot-link:hover {
  color: var(--color-salmon);
}

/* Wishlist Page */
.wishlist-empty {
  background-color: var(--color-bg-beige);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 18px;
  color: var(--color-grey);
}

.badge-sale {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-red);
  color: var(--color-bg);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.badge-supinated {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-header);
  color: var(--color-bg);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.form-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.form-check-input {
  margin-right: 8px;
}

.product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-thumbnails .thumb {
    width: 32%;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}	

.error_msg{
	color: red;
}

.input_radius{
	border-radius: 18px !important;
	margin: 5px 0px;
}

.partner-logo {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform: scale(1);
    display: inline-block;
}

.partner-logo:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    cursor: pointer;
}

.carousel-indicators [data-bs-target] {
	background-color: black !important; 
	border-radius: 50% !important;
	height:20px !important;
	width:20px !important;
}

.stepwizard-step button {
    margin: 15px auto;
    display: block;
}

.stepwizard-row {
    display: flex;
    justify-content: space-between;
}

.stepwizard-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*Pop-up banner*/
.popup-container-fix {
    background: transparent !important;
    border: none !important;
}

.popup-custom-design {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #F6EFE7;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    container-type: inline-size;
    font-family: 'Poppins', sans-serif;
}

.popup-close {
    position: absolute;
    top: 2.47%;
    right: 2.47%;
    width: 6.18%;
    aspect-ratio: 1 / 1;
    background-color: #E98170;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 2.97cqw;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.popup-shoe { position: absolute; pointer-events: none; user-select: none; }
.popup-shoe img { width: 100%; height: 100%; object-fit: cover; display: block; }

.shoe-41 { left: -6.02%; top: -15.73%; width: 45.75%; aspect-ratio: 1/1; filter: blur(6.7px); }
.shoe-41 img { transform: rotate(128.92deg); }
.shoe-26 { left: 58.83%; top: -11.74%; width: 34.70%; aspect-ratio: 1/1; filter: blur(13.8px); }
.shoe-26 img { transform: rotate(-109.45deg); }
.shoe-39 { left: 0%; top: 22.67%; width: 33.58%; height: 32.52%; filter: blur(3.7px); }
.shoe-39 img { transform: rotate(153.46deg) scaleY(-1); }
.shoe-10 { left: 58.83%; top: 17.43%; width: 38.64%; aspect-ratio: 1/1; filter: blur(1.6px); }
.shoe-10 img { transform: rotate(-14.77deg); }
.shoe-9 { left: -9.89%; top: 29.54%; width: 68.67%; aspect-ratio: 1/1; }
.shoe-9 img { transform: rotate(-139.12deg) scaleY(-1); }
.shoe-11 { left: 53.89%; top: 47.09%; width: 68.54%; aspect-ratio: 1/1; }
.shoe-11 img { transform: rotate(46.41deg); }

.popup-content-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.popup-title-custom {
    margin: 9.02% 0 0;
    width: 91.97%;
    color: #26121B;
    text-transform: uppercase;
    line-height: 1.1;
    border: none;
}
.popup-title-custom .line1 { display: block; font-weight: 400; font-size: 7.91cqw; text-transform: none; }
.popup-title-custom .line2 { display: block; font-weight: 700; font-size: 7.91cqw; }

.popup-discount-custom {
    margin-top: 3%;
    color: #E5472D;
    line-height: 1;
}
.popup-discount-custom .percent { display: block; font-weight: 700; font-size: 30.9cqw; }
.popup-discount-custom .label { display: block; font-weight: 500; font-size: 5.93cqw; margin-top: 1%; }

.popup-cta-custom {
    position: absolute;
    left: 50%;
    bottom: 8.78%;
    transform: translateX(-50%);
    background-color: #E98170;
    color: #fbfaf8;
    font-weight: 700;
    font-size: 2.97cqw;
    border: none;
    border-radius: 30px;
    padding: 1.6cqw 5.56cqw;
    box-shadow: 1px 1px 6.7px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s;
}
.popup-cta-custom:hover { background-color: #d4705f; }

@media (max-width: 576px) {
    .popup-title-custom .line1, .popup-title-custom .line2 { font-size: 28px; }
    .popup-discount-custom .percent { font-size: 80px; }
    .popup-cta-custom { font-size: 14px; padding: 10px 20px; }
}

@media (min-width: 576px) {
    .account_section_display {
      margin-left: 10% !important;
    }
}

.product-item-dropdown{
  font-weight: bold; 
  padding: 5px 15px; 
  color: #333; 
}