/*
Theme Name:         SupaNovaWearChild
Theme URI:          http://childtheme-generator.com/
Description:        SupaNovaWearChild is a child theme of SupaNovaWear
Author:             Anver Design Pty Ltd
Author URI:         http://childtheme-generator.com/
Template:           supa-nova-wear
Version:            1.0.0
Text Domain:        supa-nova-wear-child
*/
/* Custom CSS for Front Page Template */

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

body {
  font-family: "Special Gothic Expanded One", sans-serif;
  background: #fff;
  overflow-x: hidden;
  color: #000;
  line-height: 1.6;
}

/*scrolling promo banner */
.promo-banner {
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: white;
  text-align: left;
  padding: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 9999;
}

.promo-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-banner 25s linear infinite;
  font-weight: 400;
  text-transform: uppercase;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Navigation */
.nav-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 150;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 50px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item:hover {
  color: #ff3f34;
}

.nav-item.active {
  color: #ff3f34;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff3f34;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  font-weight: bold;
  color: red;
  text-decoration: none;
  font-style: italic;
  letter-spacing: -1px;
  font-family: "Goldman", sans-serif;
  font-weight: 700;
}
/* Navigation Search Styles - Compact */
.search-container {
  display: flex;
  align-items: center;
  margin-right: 0;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-wrapper {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 4px 8px;
  transition: all 0.3s ease;
  width: 200px;
  height: 28px;
}

.search-wrapper:hover,
.search-wrapper:focus-within {
  background: rgba(0, 0, 0, 0.06);
  border-color: #ff3f34;
  box-shadow: 0 0 0 1px rgba(255, 63, 52, 0.1);
}

.search-field {
  background: transparent;
  border: none;
  outline: none;
  color: #000;
  font-size: 10px;
  width: 100%;
  margin-right: 4px;
  font-family: inherit;
  font-weight: 400;
}

.search-field::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: 10px;
}

.search-submit {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.search-submit:hover {
  opacity: 1;
  color: #ff3f34;
}

.search-submit:focus {
  outline: 1px solid #ff3f34;
  outline-offset: 1px;
  border-radius: 2px;
}

.search-submit svg {
  width: 12px;
  height: 12px;
}

/* Fix navigation spacing - Make both sides consistent */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search Mobile Responsive */
@media (max-width: 900px) {
  .search-container {
    display: none;
  }

  .nav-right {
    display: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .search-wrapper {
    width: 100px;
    padding: 3px 6px;
  }

  .search-field {
    font-size: 9px;
  }

  .search-field::placeholder {
    font-size: 9px;
  }

  .search-submit svg {
    width: 11px;
    height: 11px;
  }

  .nav-left,
  .nav-right {
    gap: 15px;
  }
}

/* Search Mobile Responsive */
@media (max-width: 900px) {
  .search-container {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .search-wrapper {
    width: 120px;
    padding: 4px 8px;
  }

  .search-field {
    font-size: 10px;
  }

  .search-field::placeholder {
    font-size: 10px;
  }

  .search-submit svg {
    width: 12px;
    height: 12px;
  }

  .nav-right {
    gap: 10px !important;
  }
}

.user-icon {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
.user-icon:hover {
  color: #ff3f34;
}
.cart-icon {
  position: relative;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.cart-icon svg {
  margin-right: 4px;
}
* User Account Hover Tooltip Styles */ .user-account-wrapper {
  position: relative;
  display: inline-block;
}

.user-account-tooltip {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  width: 280px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.user-account-wrapper:hover .user-account-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tooltip-content {
  text-align: center;
}

.tooltip-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  font-family: "Goldman", sans-serif;
}

.tooltip-text {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.tooltip-cta {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tooltip-cta:hover {
  background: linear-gradient(135deg, #ee5a24, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.tooltip-arrow {
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.tooltip-arrow::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #e0e0e0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .user-account-tooltip {
    width: 250px;
    right: -20px;
  }

  .tooltip-title {
    font-size: 16px;
  }

  .tooltip-text {
    font-size: 13px;
  }
}

/* Hover delay for better UX */
.user-account-wrapper {
  transition: all 0.2s ease;
}

.user-account-wrapper:hover .user-account-tooltip {
  transition-delay: 0.3s;
}

/* Hide tooltip when hovering away */
.user-account-tooltip:hover {
  opacity: 1;
  visibility: visible;
}

/* Optional: Add a subtle glow effect to the user icon on hover */
.user-account-wrapper:hover .user-icon {
  filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5));
  transition: filter 0.3s ease;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ff3f34;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
}

@media (max-width: 900px) {
  .cart-icon {
    display: none !important;
  }
}
/*VIP Modal*/
.vip-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.vip-modal.show {
  display: grid;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.vip-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  width: 90%;
  max-width: 500px;
  position: relative;
  color: #fff;
  transform: translateY(-20px);
  animation: slideIn 0.3s ease-out;
  top: 50px;
  height: 790px;
}

.vip-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.vip-modal-title {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 32px;
  margin: 0 0 10px 0;
  background: linear-gradient(45deg, #gold, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
}

.vip-modal-subtitle {
  font-family: "Goldman", sans-serif;
  font-size: 16px;
  color: #ccc;
  margin: 0;
}

.vip-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.vip-close:hover {
  color: #fff;
}

.vip-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vip-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vip-label {
  font-family: "Goldman", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vip-input {
  padding: 15px;
  border: 2px solid #444;
  border-radius: 8px;
  background: black !important;
  color: #fff;
  font-size: 16px;
  font-family: "Goldman", sans-serif;
  transition: all 0.3s ease;
}

.vip-input:focus {
  outline: none;
  border-color: #gold;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.vip-input::placeholder {
  color: #aaa;
}

.vip-benefits {
  background: rgba(255, 215, 0, 0.1);
  padding: 20px;
  margin: 20px 0;
}

.vip-benefits-title {
  font-family: "Goldman", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #gold;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.vip-benefits-list li {
  font-family: "Goldman", sans-serif;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.vip-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #gold;
  font-weight: bold;
}

.vip-submit {
  background: linear-gradient(45deg, #gold, #ffed4e);
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: "Goldman", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.vip-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.vip-submit:active {
  transform: translateY(0);
}

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

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .vip-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .vip-modal-title {
    font-size: 24px;
  }

  .vip-input {
    padding: 12px;
    font-size: 14px;
  }
}
/*hero section */
.hero-section {
  position: relative;
  height: 100vh;
  /*background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
          url("./imgs/ian-dooley-10ca-K3e6Ko-unsplash.jpg") center/cover
            no-repeat;*/
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.hero-section.bg1 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    url("./imgs/u6495191455_Midjourney_Prompt_SupaNovaWear_Launch_Banner_imag_e97571a0-7b8d-47bd-bdc0-dd7b5c36bfcf_3.png")
      center/cover no-repeat;
}

.hero-section.bg2 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    url("./imgs/u6495191455_Midjourney_Prompt_SupaNovaWear_Launch_Banner_imag_e97571a0-7b8d-47bd-bdc0-dd7b5c36bfcf_2.png")
      center/cover no-repeat;
}

.hero-section.bg3 {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    url("./imgs/u6495191455_Midjourney_Prompt_SupaNovaWear_Launch_Banner_imag_e97571a0-7b8d-47bd-bdc0-dd7b5c36bfcf_1.png")
      center/cover no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}
.hero-logo {
  width: 250px;
  height: auto;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-content {
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease-out, opacity 0.3s ease-out;
}

.hero-content h1 {
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 5px;
  letter-spacing: 4px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  letter-spacing: 6px;
  font-weight: 300;
  text-transform: uppercase;
}
.rotating-text {
  display: inline-block;
  position: relative;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.rotating-text.fade-out {
  opacity: 0;
}
.red-text {
  color: #ff3b3b;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.shop-btn {
  padding: 12px 24px;
  background: white;
  color: black;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.shop-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  background-color: black;
  transform: skewX(-30deg);
  transition: all 0.5s;
}
.shop-btn:hover:before {
  left: 100%;
}
@media (max-width: 1366px) and (min-width: 1200px) {
  .hero-section {
    height: 100vh;
    padding: 0 40px;
    overflow: hidden;
    z-index: 1;
  }

  .hero-logo {
    width: 200px;
    margin-bottom: 2px;
  }

  .hero-content h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }

  .hero-content .subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
  }

  .shop-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

.product-section {
  background: #000;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.product-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  perspective: 1000px;
  width: 100%;
  height: 365px;
  border-radius: 16px;
  position: relative;
}

.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
}

.product-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-front img {
  width: 250px;
  height: 100%;
  object-fit: cover;
}

.card-back {
  background: #fff;
  color: #111;
  transform: rotateY(180deg);
  padding: 30px 20px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-back .product-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-back .product-description {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
  display: none;
}

.card-back .product-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: black;
}

.buy-btn {
  margin-top: 18px;
  padding: 15px 35px;
  background: white;
  color: black;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.buy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ff3f34;
  opacity: 0.9;
  transform: skewX(-30deg);
  transition: left 0.5s;
  z-index: 0;
}

.buy-btn:hover::before {
  left: 100%;
}

.buy-btn,
.buy-btn span {
  position: relative;
  z-index: 1;
}

.buy-btn:hover {
  border: 1px solid #000;
  color: black;
  background: white;
}

/* Categories*/
.categories-section {
  padding: 80px 40px 120px;
  margin: 0 auto;
  background: #000;
}
.shop-all {
  background: white !important;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  gap: 40px;
}

.category-card {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
}

.category-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  transition: all 0.3s ease;
  z-index: 1;
}

.category-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(255, 63, 52, 0.8) 100%
  );
}

.category-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px 30px;
  width: 100%;
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  opacity: 0.9;
}

.category-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.category-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
  font-weight: 300;
}

.category-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.category-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.category-card:hover .category-arrow {
  background: white;
  border-color: white;
  transform: scale(1.1);
}

.category-card:hover .category-arrow svg {
  stroke: #000;
}

/* Background Images */
.apparel-bg {
  background-image: url("./imgs/apparel.png");
}

.caps-bg {
  background-image: url("./imgs/caps.png");
}

.perfumes-bg {
  background-image: url("./imgs/perfumes.png");
}
@media (max-width: 1366px) and (min-width: 1200px) {
  .categories-section {
    padding: 60px 30px 90px;
    position: relative;
    z-index: 2;
  }

  .category-card {
    height: 420px;
  }

  .category-title {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .category-description {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .category-stats {
    font-size: 0.85rem;
    gap: 20px;
  }

  .category-arrow {
    width: 36px;
    height: 36px;
    top: 16px;
    right: 16px;
  }
}

/* Featured Products Section */
.featured-products {
  background: #000;
  padding: 80px 20px;
  text-align: center;
}

.featured-products h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.featured-products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-products .product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-products .product-card img {
  width: 250px;
  object-fit: cover;
}

.featured-products .new-label {
  margin-top: 20px;
}

.video-bg-section {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  color: white;
  text-align: center;
  z-index: 1;
}

.video-bg-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
}

.video-bg-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}
.video-bg-section {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  color: white;
  text-align: center;
  z-index: 1;
}

.video-bg-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
}

.video-bg-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.featured-heading {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
}

.animated-card {
  opacity: 0;
  transform: translateY(40px);
}

.cta-btn {
  margin-top: 60px;
  padding: 15px 35px;
  background: white;
  color: black;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.9;
  transform: skewX(-30deg);
  transition: left 0.5s;
  z-index: 0;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn span,
.cta-btn {
  position: relative;
  z-index: 1;
}

.cta-btn:hover {
  border: 1px solid #000;
  color: black;
  background: white;
}

/* About Section */
.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.about-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: white;
  font-family: "Special Gothic Expanded One";
  text-shadow: 1px 1px 2px black;
}

.about-heading {
  text-align: center;
  margin-bottom: 30px;
}

.about-description {
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
}
.about-button-container {
  margin-top: 30px;
}

.about-cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff0000, #cc0000);
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.about-cta-btn:hover {
  background: linear-gradient(45deg, #cc0000, #aa0000);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.about-cta-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.about-cta-btn:hover:before {
  left: 100%;
}

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

/* Responsive styling */
@media (max-width: 768px) {
  .about-cta-btn {
    padding: 12px 25px;
    font-size: 13px;
  }
}

/* Footer */
.footer-section {
  background: #000;
  color: white;
  padding: 80px 40px 40px;
  border-top: 1px solid #333;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

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

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

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

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.footer-link:hover {
  color: #ff3f34;
}

.newsletter-column {
  padding-left: 20px;
}

.newsletter-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
}

.newsletter-description {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 0px;
  font-weight: 300;
}

.newsletter-form {
  width: 100%;
}

.email-input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid #444;
  padding: 0 15px;
  transition: border-color 0.3s ease;
}

.email-input-container:focus-within {
  border-color: #ff3f34;
}

.email-icon {
  color: #888;
  margin-right: 12px;
  flex-shrink: 0;
}

.newsletter-input {
  background: transparent;
  border: none;
  color: white;
  font-size: 13px;
  padding: 15px 0;
  width: 100%;
  outline: none;
}

.newsletter-input::placeholder {
  color: #888;
  font-size: 13px;
}

.social-column {
  display: flex;
  justify-content: flex-end;
  margin-top: -6px;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-top: 25px;
}

.social-link {
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: #ff3f34;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}
.social-title {
  font-size: 17px;
}
.store-info {
  font-size: 13.5px;
}

.store-info a {
  color: #ff3b3b;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-card {
    height: 400px;
  }

  .product-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-actions {
    flex-direction: column;
  }

  .related-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .newsletter-column {
    grid-column: 1 / -1;
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }

  .social-column {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 0 20px;
  }

  .nav-left,
  .nav-right {
    gap: 20px;
  }

  .logo {
    font-size: 20px;
  }

  .breadcrumb {
    padding: 20px 20px 0;
  }

  .product-section {
    padding: 40px 20px 0;
  }

  .product-title {
    font-size: 2rem;
  }

  .tabs-section {
    padding: 60px 20px;
  }

  .related-products {
    padding: 60px 20px;
  }

  .categories-section {
    padding: 80px 20px 80px;
  }

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

  .category-card {
    height: 350px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .newsletter-column {
    margin-top: 20px;
    order: 1;
  }
  .social-title {
    text-align: left;
  }
  .store-info {
    width: 170% !important;
  }
}

@media (max-width: 576px) {
  .category-title {
    font-size: 1.8rem;
  }

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

/* --- MOBILE NAVIGATION --- */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  position: absolute;
  left: 30px; /* Move to left */
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  color: #ff3f34;
}

@media (max-width: 900px) {
  .nav-wrapper {
    padding: 0 16px;
  }
  .nav-left {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 100px 30px 30px 30px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.08);
    z-index: 300;
    transition: left 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  }
  .nav-left.open {
    left: 0;
    margin-top: 50px;
    height: 335px;
    padding-top: 25px;
  }
  .nav-item {
    font-size: 1.1rem;
    padding: 18px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    color: #111;
  }
  .nav-container {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    border-bottom: 1px solid #eee;
    z-index: 400;
  }
  .logo {
    left: 38%;
    transform: translateX(-50%);
    font-size: 1rem;
    z-index: 401;
  }
  .nav-right {
    gap: 18px;
  }
  .mobile-nav-toggle {
    display: block;
  }
  body.mobile-nav-open {
    overflow: hidden;
  }
}
.mobile-utilities {
  display: none;
  gap: 0.1rem;
  margin-left: auto;
  align-items: center;
}
.mobile-utilities .mobile-util {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 1;
}
.mobile-utilities .mobile-cart {
  position: relative;
}
.mobile-utilities .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  padding: 0 5px;
}
.mobile-utilities .icon {
  display: block;
}
.mobile-utilities .mobile-vip {
  background: none;
  color: black;
  border: 0;
  padding: 0 0.9rem;
  height: 36px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: large;
}
@media (max-width: 768px) {
  .nav-right,
  .user-account-wrapper {
    display: none !important;
  }
  .mobile-utilities {
    display: flex;
  }
  .entry-content {
    padding: 15px !important;
  }
}
/* Hide nav-left on desktop */
@media (min-width: 901px) {
  .mobile-nav-toggle {
    display: none !important;
  }
  .nav-left {
    position: static !important;
    flex-direction: row !important;
    height: auto !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    left: 0 !important;
    top: 0 !important;
    width: auto !important;
    max-width: none !important;
    z-index: auto !important;
    transition: none !important;
  }
}

/* Hide VIP in mobile nav, show in hamburger */
.vip-link-desktop {
  display: inline-block;
}
.vip-link-mobile {
  display: none;
}

@media (max-width: 900px) {
  .vip-link-desktop {
    display: none !important;
  }
  .vip-link-mobile {
    display: block !important;
  }
}

/* Responsive Hero Section */
@media (max-width: 900px) {
  .hero-section {
    height: 70vh;
    min-height: 420px;
    padding: 0 10px;
  }
  .hero-logo {
    width: 160px;
    margin-bottom: 0;
    display: none;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .hero-content .subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
    letter-spacing: 3px;
  }
  .shop-btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 95vh;
    min-height: 320px;
    padding: 0 4vw;
  }
  .hero-logo {
    width: 110px;
  }
  .hero-content h1 {
    font-size: 2.6rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .hero-content .subtitle {
    font-size: 0.8rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
  }
  .shop-btn {
    padding: 8px 12px;
    font-size: 0.95rem;
  }
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0;
  }
  .newsletter-column {
    padding-left: 0;
    grid-column: 1 / -1;
  }
  .footer-section {
    padding: 50px 16px 24px;
  }

  .footer-column .newsletter-column {
    order: 1 !important;
  }
  .social-column {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px;
    text-align: left;
  }
  .footer-section {
    padding: 36px 8px 16px;
  }

  .footer-column .newsletter-column {
    order: 1 !important;
  }
  .newsletter-title,
  .newsletter-description {
    text-align: left;
  }
  .social-icons {
    gap: 20px;
    align-self: left;
  }
}

/* Hide nav-right on mobile */
@media (max-width: 900px) {
  .nav-right {
    display: none !important;
  }
}
/* Footer Bottom Address Styling */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom-content {
  max-width: 100%;
}

.footer-bottom-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Responsive styling */
@media (max-width: 768px) {
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .footer-bottom-content p {
    font-size: 0.8rem;
    line-height: 1.5;
    /* Allow text to wrap on mobile if needed */
    word-break: break-word;
  }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #222; /* optional */
}

.footer-bottom-content p {
  margin: 0px 10px;
  color: #fff; /* keep your footer text colour */
  text-align: left;
}

.footer-payments img {
  max-height: 45px; /* tweak size as you like */
  width: auto;
  margin-left: 12px;
  vertical-align: middle;
  display: inline-block;
}

/* Mobile stacking so it doesn't squish */
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: normal;
  }
  .footer-payments {
    margin-top: 8px;
  }
}

/*home product feature*/
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.card-inner {
  perspective: 1000px;
}

.card-front,
.card-back {
  backface-visibility: hidden;
}

.card-front img {
  max-width: 100%;
}

.product-title,
.product-price {
  font-weight: bold;
  margin: 10px 0;
}

.woocommerce .button {
  background-color: #000;
  color: white;
  padding: 8px 15px;
  text-transform: uppercase;
  font-size: 12px;
  border: none;
  cursor: pointer;
}
/* Make WooCommerce add-to-cart buttons match site style */
.woocommerce .button,
.woocommerce-page .button,
.woocommerce ul.products li.product .button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 500;
  letter-spacing: 1px;
}

.woocommerce .button:hover {
  background-color: #444;
  color: #fff;
}
.cart-icon {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.cart-icon svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #ff3f34;
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  padding: 2px 7px;
  line-height: 1;
  z-index: 10;
}
.cart-wrapper {
  position: relative;
}

.cart-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  width: 300px;
  background: white;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
}

.cart-wrapper:hover .cart-dropdown {
  display: block;
}

.cart-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

.cart-dropdown .woocommerce-mini-cart__buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.cart-dropdown .button {
  background-color: #000;
  color: #fff;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.cart-dropdown .button:hover {
  background-color: #333;
}
/*Categories Page*/
/* === Breadcrumb === */
.breadcrumb {
  padding: 40px 0 0;
  text-align: center;
}
.breadcrumb-nav {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.breadcrumb-nav a {
  color: #888;
  text-decoration: none;
}
.breadcrumb-nav span {
  margin: 0 5px;
}

/* === Page Header === */
.page-header {
  text-align: center;
  padding: 40px 20px 20px;
}
.page-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* === Shop All Section === */
.shop-all-section {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}
.shop-all-content {
  max-width: 700px;
  margin: 0 auto;
}
.shop-all-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.shop-all-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.shop-all-btn {
  background: black;
  color: white;
  padding: 16px 38px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 0;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}
.shop-all-btn:hover {
  background: #ff3f34;
}

/* === Fade In Animation === */
.category-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.category-card.animate {
  opacity: 1;
  transform: translateY(0);
}
/*Apparels Page*/
/* Breadcrumb */
.breadcrumb {
  margin-top: 120px;
  padding: 20px 40px 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb-nav a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #ff3f34;
}

.breadcrumb-nav span {
  color: #000;
  font-weight: 500;
}

/* Page Header */
.page-header {
  padding: 40px 40px 60px;
  text-align: center;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  font-size: 2rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-subtitle {
  font-size: 1rem;
  color: red;
  font-weight: 400;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto 40px !important;
  line-height: 1.6;
}

.collection-stats {
  display: none !important;
  justify-content: center;
  gap: 40px;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Quick Navigation */
.quick-nav {
  background: #f8f8f8;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
}

.quick-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.quick-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  color: #666;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.quick-nav-link:hover,
.quick-nav-link.current {
  background: #ff3f34;
  color: white;
  border-color: #ff3f34;
  transform: translateY(-2px);
}

/* Filter & Sort Bar */
.filter-bar {
  background: #f8f8f8;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 25px 40px;
  position: sticky;
  top: 43px;
  z-index: 100;
}

.filter-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 42px;
}

.filter-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: #ff3f34;
  color: #ff3f34;
}

.sort-select {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  color: #666;
}

.sort-select:focus {
  outline: none;
  border-color: #ff3f34;
}

.results-count {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sub Categories */
.sub-categories {
  padding: 60px 40px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.sub-category {
  background: #f8f8f8;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.sub-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #ff3f34;
  background: #fff;
}

.sub-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.sub-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
}

.sub-count {
  font-size: 0.8rem;
  color: #666;
  font-weight: 300;
}

/* Products Grid */
.products-section {
  padding: 35px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.product-image {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff3f34;
  color: white;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: white;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  background: #ff3f34;
  color: white;
}

.product-info {
  padding: 25px 20px;
  text-align: center;
}

.product-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
}
.product-title a {
  color: #000;
}

.product-category {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.product-colors {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.color-swatch:hover {
  transform: scale(1.2);
}

.add-to-cart {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s, border 0.3s, background 0.3s;
  color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.add-to-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ff3f34;
  opacity: 0.9;
  transform: skewX(-30deg);
  transition: left 0.5s;
  z-index: 0;
}

.add-to-cart:hover::before {
  left: 100%;
}

.add-to-cart,
.add-to-cart span {
  position: relative;
  z-index: 1;
}

.add-to-cart:hover {
  border: 1px solid #ff3f34;
  color: #fff;
  background: #ff3f34;
}

/* Product Images */
.hoodie-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23222' width='300' height='300'/%3E%3Ctext x='150' y='150' font-family='Arial' font-size='20' fill='%23ff3f34' text-anchor='middle' dominant-baseline='middle'%3EHOODIE%3C/text%3E%3C/svg%3E");
}

.tshirt-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23333' width='300' height='300'/%3E%3Ctext x='150' y='150' font-family='Arial' font-size='20' fill='%23ff3f34' text-anchor='middle' dominant-baseline='middle'%3ET-SHIRT%3C/text%3E%3C/svg%3E");
}

.jacket-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23111' width='300' height='300'/%3E%3Ctext x='150' y='150' font-family='Arial' font-size='20' fill='%23ff3f34' text-anchor='middle' dominant-baseline='middle'%3EJACKET%3C/text%3E%3C/svg%3E");
}

.sweatshirt-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%232a2a2a' width='300' height='300'/%3E%3Ctext x='150' y='150' font-family='Arial' font-size='18' fill='%23ff3f34' text-anchor='middle' dominant-baseline='middle'%3ESWEATSHIRT%3C/text%3E%3C/svg%3E");
}

.tank-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23444' width='300' height='300'/%3E%3Ctext x='150' y='150' font-family='Arial' font-size='20' fill='%23ff3f34' text-anchor='middle' dominant-baseline='middle'%3ETANK TOP%3C/text%3E%3C/svg%3E");
}

.longsleeve-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%231a1a1a' width='300' height='300'/%3E%3Ctext x='150' y='150' font-family='Arial' font-size='16' fill='%23ff3f34' text-anchor='middle' dominant-baseline='middle'%3ELONG SLEEVE%3C/text%3E%3C/svg%3E");
}

/* Load More */
.load-more {
  text-align: center;
  padding: 60px 0;
}

.load-more-btn {
  background: transparent;
  border: 1px solid #ddd;
  padding: 15px 40px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
}

.load-more-btn:hover {
  background: #ff3f34;
  color: white;
  border-color: #ff3f34;
}
/* Single Product Layout */
.single-product-template .product-section {
  padding: 40px 40px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.single-product-template .product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

/* Product Gallery */
.single-product-template .product-gallery {
  position: relative;
}

.single-product-template .main-image {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, #222 0%, #111 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.single-product-template .main-image .placeholder-text {
  font-size: 2rem;
  font-weight: 800;
  color: #ff3f34;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.single-product-template .main-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.single-product-template .product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff3f34;
  color: white;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 2;
}

.single-product-template .thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.single-product-template .thumbnail {
  height: 120px;
  background: linear-gradient(135deg, #333 0%, #222 100%);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #ff3f34;
  font-weight: 600;
  overflow: hidden;
}

.single-product-template .thumbnail:hover,
.single-product-template .thumbnail.active {
  border-color: #ff3f34;
  transform: translateY(-2px);
}

.single-product-template .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Product Info */
.single-product-template .product-info {
  padding: 20px 0;
}

.single-product-template .product-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.single-product-template .product-category {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.single-product-template .product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.single-product-template .stars {
  display: flex;
  gap: 2px;
}

.single-product-template .star {
  color: #ffd700;
  font-size: 16px;
}

.single-product-template .star.empty {
  color: #ddd;
}

.single-product-template .rating-text {
  font-size: 0.9rem;
  color: #666;
}

.single-product-template .product-price {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

.single-product-template .product-price .woocommerce-Price-amount {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}

.single-product-template .product-price del .woocommerce-Price-amount {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
}

.single-product-template .product-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

/* Stock Status */
.single-product-template .stock-status {
  margin-bottom: 20px;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-product-template .in-stock {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.single-product-template .low-stock {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.single-product-template .out-of-stock {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Product Options */
.single-product-template .product-options {
  margin-bottom: 40px;
}

.single-product-template .option-group {
  margin-bottom: 30px;
}

.single-product-template .option-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 15px;
  display: block;
}

.single-product-template .color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.single-product-template .color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.single-product-template .color-option:hover,
.single-product-template .color-option.selected {
  border-color: #ff3f34;
  transform: scale(1.1);
}

.single-product-template .color-option.selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.single-product-template .size-options,
.single-product-template .volume-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.single-product-template .size-option,
.single-product-template .volume-option {
  padding: 12px 20px;
  border: 2px solid #ddd;
  background: transparent;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  min-width: 60px;
  text-align: center;
}

.single-product-template .size-option:hover,
.single-product-template .size-option.selected,
.single-product-template .volume-option:hover,
.single-product-template .volume-option.selected {
  border-color: #ff3f34;
  color: #ff3f34;
}

.single-product-template .quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
}

.single-product-template .quantity-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
}

.single-product-template .quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid #ddd;
  border-radius: 4px;
}

.single-product-template .quantity-btn {
  padding: 10px 15px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.single-product-template .quantity-btn:hover {
  background: #f5f5f5;
  color: #ff3f34;
}

.single-product-template .quantity-input {
  width: 60px;
  padding: 10px;
  border: none;
  text-align: center;
  font-size: 1rem;
  background: transparent;
}

/* Action Buttons */
.single-product-template .product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.single-product-template .add-to-cart-btn {
  flex: 1;
  padding: 18px 30px;
  background: #ff3f34;
  color: white;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.single-product-template .add-to-cart-btn:hover {
  background: #e63529;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 63, 52, 0.3);
}

.single-product-template .add-to-cart-btn:disabled,
.single-product-template .add-to-cart-btn.disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.single-product-template .wishlist-btn {
  padding: 18px 20px;
  background: transparent;
  border: 2px solid #ddd;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product-template .wishlist-btn:hover,
.single-product-template .wishlist-btn.active {
  border-color: #ff3f34;
  color: #ff3f34;
  background: rgba(255, 63, 52, 0.1);
}

/* Product Details */
.single-product-template .product-details {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.single-product-template .detail-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.9rem;
}

.single-product-template .detail-label {
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-product-template .detail-value {
  color: #666;
}

/* Tabs Section */
.single-product-template .tabs-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid #eee;
}

.single-product-template .tabs-nav {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.single-product-template .tab-btn {
  padding: 15px 0;
  background: transparent;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.single-product-template .tab-btn.active {
  color: #ff3f34;
}

.single-product-template .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff3f34;
}

.single-product-template .tab-content {
  display: none;
}

.single-product-template .tab-content.active {
  display: block;
}

.single-product-template .tab-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-product-template .tab-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.single-product-template .features-list {
  list-style: none;
  padding: 0;
}

.single-product-template .features-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
  color: #555;
}

.single-product-template .features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff3f34;
  font-weight: bold;
}

/* Reviews */
.single-product-template .reviews-summary {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
}

.single-product-template .rating-overview {
  text-align: center;
}

.single-product-template .big-rating {
  font-size: 3rem;
  font-weight: 600;
  color: #ff3f34;
}

.single-product-template .review-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.single-product-template .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.single-product-template .reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.single-product-template .review-date {
  font-size: 0.8rem;
  color: #666;
}

.single-product-template .review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Related Products */
.single-product-template .related-products {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid #eee;
}

.single-product-template .related-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.single-product-template .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.single-product-template .related-product {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.single-product-template .related-product:hover {
  transform: translateY(-5px);
}

.single-product-template .related-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #333 0%, #222 100%);
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff3f34;
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
}

.single-product-template .related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.single-product-template .related-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-product-template .related-price {
  font-size: 1rem;
  font-weight: 600;
  color: #ff3f34;
}

/* Size Chart */
.single-product-template .size-chart {
  overflow-x: auto;
}

.single-product-template .size-chart table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.single-product-template .size-chart th,
.single-product-template .size-chart td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.single-product-template .size-chart th {
  background: #f8f8f8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .single-product-template .product-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .single-product-template .product-actions {
    flex-direction: column;
  }

  .single-product-template .related-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .single-product-template .product-section {
    padding: 40px 20px 0;
  }

  .single-product-template .product-title {
    font-size: 2rem;
  }

  .single-product-template .tabs-section {
    padding: 60px 20px;
  }

  .single-product-template .related-products {
    padding: 60px 20px;
  }

  .single-product-template .tabs-nav {
    gap: 20px;
    flex-wrap: wrap;
  }
  .page-header {
    padding: 40px 40px 60px;
    text-align: center;
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 0px;
  }
  .breadcrumb {
    margin-top: 50px;
    padding: 20px 40px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .single-product-template .product-title {
    font-size: 1.5rem;
  }

  .single-product-template .size-options,
  .single-product-template .volume-options {
    justify-content: center;
  }

  .single-product-template .color-options {
    justify-content: center;
  }

  .single-product-template .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Shop All Products Page Styles - Add to style.css */

/* Results Section */
.results-section {
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
}

.results-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.results-count {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.active-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.active-filters-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-tag {
  background: #ff3f34;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.clear-filters {
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-filters:hover {
  border-color: #ff3f34;
  color: #ff3f34;
}

/* Enhanced Filter Bar */
.filter-container .filter-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.filter-select {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  color: #666;
  border-radius: 4px;
}

.filter-select:focus {
  outline: none;
  border-color: #ff3f34;
}

.view-toggle {
  display: none;
  gap: 5px;
  margin-left: 15px;
}

.view-btn {
  padding: 8px 10px;
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.view-btn:hover,
.view-btn.active {
  border-color: #ff3f34;
  color: #ff3f34;
}

.view-btn svg {
  width: 16px;
  height: 16px;
}

/* Enhanced Product Cards */
.shop-all-template .product-card {
  transition: all 0.4s ease;
  height: 600px;
}

.shop-all-template .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.shop-all-template .product-rating .stars {
  display: flex;
  gap: 1px;
}

.shop-all-template .product-rating .star {
  color: #ffd700;
  font-size: 12px;
}

.shop-all-template .product-rating .star.empty {
  color: #ddd;
}

.shop-all-template .product-rating .rating-count {
  font-size: 0.8rem;
  color: #888;
}

.shop-all-template .product-size {
  font-size: 0.85rem;
  color: #888;
  margin: 10px 0 20px;
  text-align: center;
  font-weight: 500;
}

/* Product Badges */
.shop-all-template .product-badge.featured {
  background: ;
}

.shop-all-template .product-badge.new {
  background: #28a745;
}

.shop-all-template .product-badge.sale {
  background: #ff3f34;
}

/* List View */
.products-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.products-grid.list-view .product-card {
  display: flex;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  height: 200px;
}

.products-grid.list-view .product-image {
  width: 250px;
  height: 200px;
  flex-shrink: 0;
}

.products-grid.list-view .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-grid.list-view .product-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.products-grid.list-view .product-title {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.products-grid.list-view .product-category {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.products-grid.list-view .product-price {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.products-grid.list-view .product-colors {
  margin-bottom: 15px;
}

.products-grid.list-view .add-to-cart {
  align-self: flex-start;
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Category Quick Links */
.category-links {
  padding: 80px 40px;
  background: #f8f8f8;
  margin-top: 60px;
}

.category-links-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.category-links-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: #000;
}

.category-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.category-link-card {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  transition: all 0.3s ease;
}

.category-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.category-link-card:hover::before {
  background: linear-gradient(
    135deg,
    rgba(255, 63, 52, 0.4) 0%,
    rgba(255, 63, 52, 0.7) 100%
  );
}

.category-link-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.category-link-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.category-link-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.link-arrow {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.category-link-card:hover .link-arrow {
  transform: translateX(5px);
}

/* Background images for category cards */
.category-link-card.apparel-bg {
  background-image: url("./imgs/parker-burchfield-tvG4WvjgsEY-unsplash.jpg");
}

.category-link-card.caps-bg {
  background-image: url("./imgs/lautaro-andreani-6FaY0OJmYG4-unsplash.jpg");
}

.category-link-card.perfumes-bg {
  background-image: url("./imgs/trung-nhan-tran-BfSTSfEVWfA-unsplash.jpg");
}

/* No Products State */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.no-products h3 {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 10px;
}

.no-products p {
  color: #888;
  font-size: 1rem;
}

/* Loading States */
.products-grid.loading {
  opacity: 0.6;
  pointer-events: none;
}

.filter-btn.loading,
.load-more-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .filter-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .filter-left {
    width: 100%;
    justify-content: flex-start;
  }

  .filter-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .results-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .products-grid.list-view .product-card {
    flex-direction: column;
    height: auto;
  }

  .products-grid.list-view .product-image {
    width: 100%;
    height: 250px;
  }

  .category-links-grid {
    grid-template-columns: 1fr;
  }
}

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

  .filter-bar {
    padding: 20px 20px;
    position: relative;
  }

  .products-section {
    padding: 0 20px 80px;
  }

  .category-links {
    padding: 60px 20px;
  }

  .category-links-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .filter-left {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: flex-start;
  }

  .filter-group {
    width: 100%;
    flex-wrap: wrap;
  }

  .view-toggle {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .filter-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .category-link-content h3 {
    font-size: 1.4rem;
  }

  .category-link-content p {
    font-size: 0.9rem;
  }
}

/* Animation for filtered products */
.product-card {
  transition: all 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}

.product-card.filtering {
  opacity: 0.3;
  transform: scale(0.95);
}

/* Enhanced hover effects */
.shop-all-template .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shop-all-template .product-card:hover .product-overlay {
  opacity: 1;
}

/* Search/Filter animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card.show {
  animation: fadeIn 0.4s ease;
}
/* === CHECKOUT PAGE STYLES === */

/* Checkout Template Layout */
.checkout-template {
  background: #fff;
  min-height: 100vh;
}

.checkout-template .breadcrumb {
  margin-top: 120px;
  padding: 20px 40px 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Checkout Header */
.checkout-header {
  padding: 40px 40px 60px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
}

.checkout-header .page-title {
  font-size: 3rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.checkout-header .page-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* Progress Bar */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.progress-step.completed .step-number {
  background: #28a745;
  color: white;
}

.progress-step.active .step-number {
  background: #ff3f34;
  color: white;
}

.step-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.progress-step.completed .step-label,
.progress-step.active .step-label {
  color: #000;
  font-weight: 600;
}

.progress-line {
  width: 80px;
  height: 2px;
  background: #eee;
  margin: 0 20px;
  position: relative;
  top: -16px;
}

.progress-line.completed {
  background: #28a745;
}

/* Main Checkout Content */
.checkout-content {
  padding: 60px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.checkout-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.checkout-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  width: 100%;
}

.checkout-forms {
  background: #fff;
}

.checkout-sidebar {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
  position: sticky;
  top: 100px;
}

/* Section Styling */
.checkout-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title .step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ff3f34;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Login Section */
.login-section {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.login-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.login-link {
  color: #ff3f34;
  text-decoration: none;
  font-weight: 500;
}

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

.login-form {
  margin-top: 20px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.btn-login {
  background: #ff3f34;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-login:hover {
  background: #e63529;
}

.forgot-link {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
}

.forgot-link:hover {
  color: #ff3f34;
}

/* Form Styling */
.form-row {
  display: table-caption;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group.half-width {
  flex: 0 0 calc(50% - 10px);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Newsletter Signup */
.newsletter-signup {
  margin-top: 15px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  position: relative;
}

/* Shipping Methods */
.shipping-methods {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
}

.shipping-package {
  margin-bottom: 20px;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: white;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shipping-option:hover {
  border-color: #ff3f34;
}

.shipping-option input[type="radio"] {
  margin-right: 15px;
}

.shipping-option input[type="radio"]:checked + .shipping-info {
  color: #ff3f34;
  font-weight: 600;
}

.shipping-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.shipping-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.shipping-cost {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff3f34;
}

/* Payment Methods */
.payment-methods {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
}

.payment-method {
  margin-bottom: 15px;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: white;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: #ff3f34;
}

.payment-option input[type="radio"] {
  margin-right: 15px;
}

.payment-option input[type="radio"]:checked {
  accent-color: #ff3f34;
}

.payment-info {
  flex: 1;
}

.payment-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 5px;
}

.payment-description {
  font-size: 0.85rem;
  color: #666;
}

.payment-icon img {
  height: 30px;
  width: auto;
}

.payment-box {
  margin-top: 15px;
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}

/* Order Notes */
.order-notes {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
}

.notes-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
}

.notes-field {
  margin-top: 20px;
}

.notes-field textarea {
  min-height: 100px;
  width: 100%;
  resize: vertical;
}

/* Order Summary */
.order-summary {
  padding: 0;
}

.summary-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ff3f34;
}

/* Cart Items */
.cart-items {
  margin-bottom: 30px;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-image {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.item-quantity {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #ff3f34;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.item-details {
  flex: 1;
}

.item-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
  line-height: 1.3;
}

.item-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.meta-item {
  font-size: 0.8rem;
  color: #666;
}

.item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: black;
  text-align: right;
}
.cart-item .quantity-selector {
  display: flex !important;
  align-items: center !important;
  border: 2px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: white;
}

.cart-item .qty-btn {
  padding: 8px 12px !important;
  background: transparent !important;
  border: none !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  color: #666 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
}

.cart-item .qty-btn:hover {
  background: #f5f5f5 !important;
  color: #ff3f34 !important;
}

/* Target WooCommerce generated quantity inputs specifically */
.cart-item .quantity-selector input.qty,
.cart-item .quantity-selector input[type="number"],
.cart-item .quantity-selector .qty {
  width: 60px !important;
  padding: 8px 5px !important;
  border: none !important;
  text-align: center !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  background: transparent !important;
  outline: none !important;
  margin: 0 !important;
  height: 40px !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important; /* Firefox */
}

/* Hide number input spinners */
.cart-item .quantity-selector input[type="number"]::-webkit-outer-spin-button,
.cart-item .quantity-selector input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Ensure quantity wrapper displays correctly */
.cart-item .quantity,
.cart-item .woocommerce-input-wrapper {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

/* Force visibility of all quantity elements */
.cart-item .quantity * {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* Order Totals */
.order-totals {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.total-row:last-child {
  border-bottom: none;
}

.total-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  display: none;
}

.total-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
}

.final-total {
  border-top: 2px solid #ddd;
  padding-top: 20px;
  margin-top: 15px;
}

.final-total .total-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.final-total .total-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff3f34;
}

/* Discount Section */
.discount-section {
  margin-bottom: 30px;
}

.discount-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.discount-btn:hover {
  background: #f0f0f0;
  border-color: #ff3f34;
}

.discount-btn svg {
  transition: transform 0.3s ease;
}

.discount-btn svg.rotated {
  transform: rotate(180deg);
}

.discount-form {
  margin-top: 15px;
}

.coupon-field {
  display: flex;
  gap: 10px;
}

.coupon-field input {
  flex: 1;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.apply-coupon-btn {
  padding: 12px 20px;
  background: #ff3f34;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.apply-coupon-btn:hover {
  background: #e63529;
}

/* Order Actions */
.order-actions {
  text-align: center;
}

.place-order-btn {
  padding: 15px 35px;
  background: white;
  color: black;
  border: grey solid 1px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
  width: 410px;
}
.place-order-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.9;
  transform: skewX(-30deg);
  transition: left 0.5s;
  z-index: 0;
}
.place-order-btn:hover::before {
  left: 100%;
}

.place-order-btn:hover {
  border: 1px solid #000;
  color: black;
  background: white;
}

.btn-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-loader svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

.security-info svg {
  width: 16px;
  height: 16px;
  color: #28a745;
}

/* WooCommerce Notices */
.woocommerce-notices-wrapper {
  margin-bottom: 30px;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.woocommerce-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.woocommerce-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.woocommerce-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .checkout-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .checkout-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .checkout-content {
    padding: 40px 20px 80px;
  }

  .checkout-header {
    padding: 30px 20px 40px;
  }

  .checkout-header .page-title {
    font-size: 2rem;
  }

  .checkout-sidebar {
    padding: 30px 20px;
  }

  .checkout-container {
    gap: 30px;
  }

  .progress-line {
    width: 50px;
    margin: 0 10px;
  }

  .step-label {
    font-size: 0.7rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group.half-width {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .checkout-content {
    padding: 30px 15px 60px;
  }

  .checkout-header {
    padding: 20px 15px 30px;
  }

  .checkout-header .page-title {
    font-size: 1.5rem;
  }

  .checkout-sidebar {
    padding: 20px 15px;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .cart-item {
    padding: 15px 0;
  }

  .item-image {
    width: 60px;
    height: 60px;
  }

  .coupon-field {
    flex-direction: column;
  }

  .progress-step {
    flex-direction: column;
    align-items: center;
  }

  .progress-line {
    display: none;
  }

  .checkout-progress {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .form-control,
  .woocommerce input,
  .woocommerce select,
  .woocommerce textarea {
    border-width: 3px;
  }

  .place-order-btn {
    border: 2px solid #000;
  }
}

/* Focus styles for keyboard navigation */
.form-control:focus,
.woocommerce input:focus,
.woocommerce select:focus,
.woocommerce textarea:focus,
.place-order-btn:focus,
.discount-btn:focus,
.apply-coupon-btn:focus {
  outline: 2px solid #ff3f34;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .checkout-template {
    background: white;
  }

  .place-order-btn,
  .discount-section,
  .login-section {
    display: none;
  }
}
/* === CART PAGE STYLES === */

/* Cart Template Layout */
.cart-template {
  background: #fff;
  min-height: 100vh;
}

.cart-template .breadcrumb {
  margin-top: 120px;
  padding: 20px 40px 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Cart Header */
.cart-header {
  padding: 40px 40px 60px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cart-header .page-title {
  font-size: 3rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cart-header .page-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* Progress Bar (same as checkout) */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.progress-step.completed .step-number {
  background: #28a745;
  color: white;
}

.progress-step.active .step-number {
  background: #ff3f34;
  color: white;
}

.step-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.progress-step.completed .step-label,
.progress-step.active .step-label {
  color: #000;
  font-weight: 600;
}

.progress-line {
  width: 80px;
  height: 2px;
  background: #eee;
  margin: 0 20px;
  position: relative;
  top: -16px;
}

.progress-line.completed {
  background: #28a745;
}

/* Main Cart Content */
.cart-content {
  padding: 60px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.cart-container {
  width: 100%;
}

/* Empty Cart State */
.empty-cart {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.empty-cart-icon {
  color: #ddd;
  margin-bottom: 30px;
}

.empty-cart-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.empty-cart-message {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.empty-cart-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.shop-now-btn,
.browse-categories-btn {
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.shop-now-btn {
  background: #ff3f34;
  color: white;
  border: 2px solid #ff3f34;
}

.shop-now-btn:hover {
  background: #e63529;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 63, 52, 0.3);
}

.browse-categories-btn {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
}

.browse-categories-btn:hover {
  border-color: #ff3f34;
  color: #ff3f34;
}

/* Cart Main Layout */
.cart-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Cart Items Section */
.cart-items-section {
  background: #fff;
}

.cart-items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ff3f34;
}

.cart-items-header .section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.item-count {
  color: #ff3f34;
  font-weight: 700;
}

.clear-cart-btn {
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

.clear-cart-btn:hover {
  border-color: #ff3f34;
  color: #ff3f34;
}

/* Cart Items List */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 25px;
  padding: 25px;
  background: #f8f8f8;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: #fff;
  border-color: #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Item Image */
.item-image {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #333 0%, #222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.item-image a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Item Details */
.item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-info {
  margin-bottom: 20px;
}

.item-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.3;
}

.item-name a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.item-name a:hover {
  color: #ff3f34;
}

.item-variations {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}

.variation-item {
  font-size: 0.85rem;
  color: #666;
}

.variation-item strong {
  color: #000;
  font-weight: 600;
}

.item-sku {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Item Controls */
.item-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quantity-control,
.item-price,
.item-subtotal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-label,
.price-label,
.subtotal-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 60px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  padding: 8px 12px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.qty-btn:hover {
  background: #f5f5f5;
  color: #ff3f34;
}

.qty-btn:active {
  background: #eee;
}

.quantity-selector input[type="number"] {
  width: 60px;
  padding: 8px 5px;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
}

.quantity-selector input[type="number"]:focus {
  outline: none;
}

.price-value,
.subtotal-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: black;
}

/* Item Remove */
.item-remove {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.remove-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.remove-item:hover {
  border-color: #ff3f34;
  color: #ff3f34;
  background: rgba(255, 63, 52, 0.05);
}

.remove-text {
  display: none;
}

/* Cart Actions */
.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.update-cart-btn,
.continue-shopping-btn {
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.update-cart-btn {
  margin-top: 0px;
  padding: 15px 35px;
  background: white;
  color: black;
  border: grey solid 1px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
  font-family: "Special Gothic Expanded One";
}
.update-cart-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.9;
  transform: skewX(-30deg);
  transition: left 0.5s;
  z-index: 0;
}
.update-cart-btn:hover::before {
  left: 100%;
}

.update-cart-btn:hover {
  border: 1px solid #000;
  color: black;
  background: white;
}

.continue-shopping-btn {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
}

.continue-shopping-btn:hover {
  border-color: #ff3f34;
  color: #ff3f34;
}

/* Cart Sidebar */
.cart-sidebar {
  position: sticky;
  top: 100px;
}

.cart-totals-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.totals-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ff3f34;
}

/* Totals Breakdown */
.totals-breakdown {
  margin-bottom: 30px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.total-row:last-child {
  border-bottom: none;
}

.total-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.total-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
}

.final-total {
  border-top: 2px solid #ddd;
  padding-top: 20px;
  margin-top: 15px;
}

.final-total .total-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.final-total .total-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: navy;
}

/* Coupon Section */
.coupon-section {
  margin-bottom: 25px;
}

.coupon-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coupon-btn:hover {
  background: #f0f0f0;
  border-color: #ff3f34;
}

.coupon-btn svg {
  transition: transform 0.3s ease;
}

.coupon-btn svg.rotated {
  transform: rotate(180deg);
}

.coupon-form {
  margin-top: 15px;
}

.coupon-field {
  display: flex;
  gap: 10px;
}

.coupon-field input {
  flex: 1;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.coupon-field input:focus {
  outline: none;
  border-color: #ff3f34;
}

.apply-coupon-btn {
  padding: 12px 20px;
  background: #ff3f34;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.apply-coupon-btn:hover {
  background: #e63529;
}

/* Applied Coupons */
.applied-coupons {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
}

.coupons-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coupon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.coupon-item:last-child {
  border-bottom: none;
}

.coupon-code {
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coupon-amount {
  font-size: 0.9rem;
  font-weight: 600;
  color: #28a745;
}

.remove-coupon {
  color: #999;
  padding: 4px;
  transition: color 0.3s ease;
}

.remove-coupon:hover {
  color: #ff3f34;
}

/* Checkout Actions */
.checkout-actions {
  text-align: center;
}

.checkout-btn {
  margin-top: 60px;
  padding: 15px 35px;
  background: white;
  color: black;
  border: grey solid 1px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
}
.checkout-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.9;
  transform: skewX(-30deg);
  transition: left 0.5s;
  z-index: 0;
}
.checkout-btn:hover::before {
  left: 100%;
}

.checkout-btn:hover {
  border: 1px solid #000;
  color: black;
  background: white;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #888;
}

.secure-checkout svg {
  color: #28a745;
}

/* Recently Viewed Section */
.recently-viewed-section {
  padding: 80px 40px;
  background: #f8f8f8;
  margin-top: 60px;
}

.recently-viewed-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.recently-viewed-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 550px;
}
.animated-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 335px;
}

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

.product-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #333 0%, #222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: auto;
  height: 200px;
  object-fit: cover;
}

.product-image .placeholder-text {
  color: #ff3f34;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: black;
}

/* WooCommerce Notices */
.woocommerce-notices-wrapper {
  margin-bottom: 30px;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.woocommerce-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.woocommerce-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.woocommerce-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Hide default WooCommerce cart totals */
.cart-collaterals .cart_totals {
  display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .cart-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cart-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .cart-content {
    padding: 40px 20px 80px;
  }

  .cart-header {
    padding: 30px 20px 40px;
  }

  .cart-header .page-title {
    font-size: 2rem;
  }

  .cart-totals-card {
    padding: 25px 20px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .item-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .item-controls {
    align-items: center;
  }

  .quantity-control,
  .item-price,
  .item-subtotal {
    justify-content: center;
  }

  .cart-actions {
    flex-direction: column;
    align-items: center;
  }

  .cart-items-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .progress-line {
    width: 50px;
    margin: 0 10px;
  }

  .recently-viewed-section {
    padding: 60px 20px;
  }
}

@media (max-width: 576px) {
  .cart-header .page-title {
    font-size: 1.5rem;
  }

  .empty-cart-actions {
    flex-direction: column;
    align-items: center;
  }

  .coupon-field {
    flex-direction: column;
  }

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

  .remove-text {
    display: inline;
  }

  .progress-step {
    flex-direction: column;
    align-items: center;
  }

  .progress-line {
    display: none;
  }

  .checkout-progress {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }
}

/* Loading States */
.cart-item.loading {
  opacity: 0.6;
  pointer-events: none;
}

.update-cart-btn.loading,
.apply-coupon-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-item {
  animation: fadeIn 0.4s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .cart-item,
  .cart-totals-card {
    border-width: 2px;
  }

  .checkout-btn {
    border: 2px solid #000;
  }
}

/* Focus styles for keyboard navigation */
.qty-btn:focus,
.remove-item:focus,
.checkout-btn:focus,
.coupon-btn:focus,
.apply-coupon-btn:focus {
  outline: 2px solid #ff3f34;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .cart-template {
    background: white;
  }

  .checkout-btn,
  .coupon-section,
  .cart-actions {
    display: none;
  }
}
/* Add to Cart Button Styling */
.add-to-cart {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid #ddd !important;
  padding: 12px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: color 0.3s, border 0.3s, background 0.3s !important;
  color: #000 !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
}

.add-to-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ff3f34;
  opacity: 0.9;
  transform: skewX(-30deg);
  transition: left 0.5s;
  z-index: 0;
}

.add-to-cart:hover::before {
  left: 100%;
}

.add-to-cart,
.add-to-cart span {
  position: relative !important;
  z-index: 1 !important;
}

.add-to-cart:hover {
  border: 1px solid #ff3f34 !important;
  color: #fff !important;
  background: #ff3f34 !important;
  text-decoration: none !important;
}

/* Ensure WooCommerce specific classes also get styled */
.add_to_cart_button {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid #ddd !important;
  padding: 12px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: color 0.3s, border 0.3s, background 0.3s !important;
  color: #000 !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
}

.add_to_cart_button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.9;
  transform: skewX(-30deg);
  transition: left 0.5s;
  z-index: 0;
}

.add_to_cart_button:hover::before {
  left: 100%;
}

.add_to_cart_button,
.add_to_cart_button span {
  position: relative !important;
  z-index: 1 !important;
  margin-top: 15px;
}

.add_to_cart_button:hover {
  border: 1px solid black !important;
  color: #fff !important;
  background: black !important;
  text-decoration: none !important;
}

/* Loading state */
.add-to-cart.loading {
  background: #f0f0f0 !important;
  color: #999 !important;
  cursor: not-allowed !important;
}

.add-to-cart.loading::before {
  display: none !important;
}
.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.product-colors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 5px;
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: inline-block;
}

.product-price {
  font-weight: bold;
  color: #000;
}

.product-cart {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-cart .add_to_cart_button {
  padding: 12px 25px;
  font-weight: 700;
  border: 1px solid #999;
  background: white;
  color: black;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.product-cart .add_to_cart_button:hover {
  background: black;
  color: white;
}
/* Additional CSS fixes to add to your existing style.css */

/* Ensure WooCommerce shop page uses the grid layout */
.shop-content .products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 0;
  list-style: none;
  padding: 0;
}

/* Fix WooCommerce product cards to match your design */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: auto !important;
  float: none !important;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Product image container */
.woocommerce ul.products li.product .product-image,
.woocommerce ul.products li.product a:first-child {
  display: block;
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
  transform: scale(1.05);
}

/* Product info styling */
.woocommerce ul.products li.product .product-info,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .price {
  padding: 25px 20px 20px;
  text-align: center;
}

.woocommerce ul.products li.product h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  padding: 0;
  margin: 0 0 10px 0;
}

.woocommerce ul.products li.product h2 a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.woocommerce ul.products li.product h2 a:hover {
  color: #ff3f34;
}

.woocommerce ul.products li.product .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff3f34;
  margin-bottom: 15px;
  padding: 0;
}

.woocommerce ul.products li.product .price del {
  color: #999;
  margin-right: 10px;
}

/* Add to cart button styling */
.woocommerce ul.products li.product .button {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  background: #fff !important;
  border: 1px solid #ddd !important;
  padding: 12px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  color: #000 !important;
  position: relative !important;
  overflow: hidden !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
}

.woocommerce ul.products li.product .button:hover {
  border: 1px solid #ff3f34 !important;
  color: #fff !important;
  background: #ff3f34 !important;
  text-decoration: none !important;
}

/* Product badges */
.woocommerce ul.products li.product .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff3f34;
  color: white;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  border-radius: 3px;
}

.woocommerce ul.products li.product .product-badge.featured {
  background: #007bff;
}

.woocommerce ul.products li.product .product-badge.new {
  background: #28a745;
}

.woocommerce ul.products li.product .product-badge.sale {
  background: #ff3f34;
}

/* Sale flash override */
.woocommerce span.onsale {
  background: #ff3f34;
  color: white;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  min-height: auto;
  min-width: auto;
  line-height: 1;
  top: 15px;
  left: 15px;
  right: auto;
  margin: 0;
}

/* Results count and ordering */
.woocommerce-result-count,
.woocommerce-ordering {
  margin-bottom: 30px;
}

.woocommerce-result-count {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.woocommerce-ordering select {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  color: #666;
  border-radius: 4px;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  text-align: center;
  margin-top: 60px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 10px;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  display: inline-block;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 10px 15px;
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #ff3f34;
  color: white;
  border-color: #ff3f34;
}

/* No products found */
.woocommerce .woocommerce-info {
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 40px 0;
}

/* Category description */
.woocommerce-archive-description {
  margin-bottom: 40px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  text-align: center;
}

/* Star ratings */
.woocommerce .star-rating {
  font-size: 14px;
  color: #ffd700;
  margin: 0 auto 10px;
}

.woocommerce .star-rating::before {
  color: #ffd700 !important;
}
.star-rating span::before {
  color: #ffd700 !important;
}
.woocommerce-review-link {
  color: black !important;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .shop-content .products {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .woocommerce ul.products li.product .product-image,
  .woocommerce ul.products li.product a:first-child {
    height: 250px;
  }

  .woocommerce ul.products li.product .product-info,
  .woocommerce ul.products li.product h2,
  .woocommerce ul.products li.product .price {
    padding: 15px 10px 10px;
  }

  .woocommerce ul.products li.product h2 {
    font-size: 0.9rem;
  }

  .woocommerce ul.products li.product .button {
    width: calc(100% - 20px);
    margin: 0 10px 15px;
    padding: 10px !important;
    font-size: 10px !important;
  }
  .collection-stats {
    display: inline;
  }
}

@media (max-width: 576px) {
  .shop-content .products {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .woocommerce ul.products li.product .product-image,
  .woocommerce ul.products li.product a:first-child {
    height: 300px;
  }
}

/* Fix breadcrumb for shop pages */
.shop-template .breadcrumb {
  margin-top: 120px;
  padding: 20px 40px 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Shop content section */
.shop-content {
  padding: 40px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.products-section {
  margin-top: 30px;
}

/* Category links section styling */
.category-links {
  padding: 80px 40px;
  background: #f8f8f8;
  margin-top: 60px;
}

.category-links-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.category-links-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: #000;
}

.category-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Ensure cart icon works properly */
.nav-right .cart-wrapper {
  position: relative;
  margin-left: -25px;
}
/* User account icon hover effect */
a[href="/my-account/"]:hover .user-icon {
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1500%)
    hue-rotate(340deg) brightness(90%) contrast(120%);
  transition: filter 0.3s ease;
}

/* Cart icon hover effect */
.cart-icon:hover .user-icon {
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1500%)
    hue-rotate(340deg) brightness(90%) contrast(120%);
  transition: filter 0.3s ease;
}

/* Optional: Add cursor pointer for better UX */
a[href="/my-account/"],
.cart-icon {
  cursor: pointer;
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: none;
  z-index: 1000;
  border-radius: 8px;
  margin-top: 10px;
}

.cart-wrapper:hover .cart-dropdown {
  display: block;
}

/* Fix any WooCommerce notice styling */
.woocommerce-notices-wrapper {
  margin-bottom: 30px;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.woocommerce-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.woocommerce-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.woocommerce-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.shop-all-button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 20px 0;
}

.shop-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff4444, #cc0000);
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.shop-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.shop-all-btn:hover::before {
  left: 100%;
}

.shop-all-btn:hover {
  background: linear-gradient(135deg, #ff5555, #dd1111);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
}

.shop-all-btn .btn-arrow {
  transition: transform 0.3s ease;
}

.shop-all-btn:hover .btn-arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .shop-all-button-container {
    margin-top: 30px;
    padding: 15px 0;
  }

  .shop-all-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .shop-all-btn {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}
/* Contact Form 7 Newsletter Styling - Force Horizontal Layout */
.newsletter-form .wpcf7 {
  margin: 0;
}

.newsletter-form .wpcf7-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.newsletter-form .email-input-container {
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 40px;
  min-height: 40px;
  width: 250px;
  max-width: 250px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.newsletter-form .email-input-container * {
  display: inline-block !important;
  vertical-align: middle !important;
}

.newsletter-form .email-input-container:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .email-icon {
  margin-right: 10px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  flex-shrink: 0 !important;
  width: 16px !important;
  height: 16px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  float: none !important;
  position: static !important;
}

/* Target all possible CF7 generated elements */
.newsletter-form .email-input-container .wpcf7-form-control-wrap,
.newsletter-form .email-input-container span {
  flex: 1 !important;
  display: inline-block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: middle !important;
  float: none !important;
}

.newsletter-form .wpcf7-form-control.wpcf7-email,
.newsletter-form .wpcf7-form-control.wpcf7-text,
.newsletter-form input[name="newsletter-email"],
.newsletter-form .email-input-container input[type="email"],
.newsletter-form .email-input-container input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: white !important;
  font-size: 13px !important;
  flex: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  height: auto !important;
  min-height: auto !important;
  box-shadow: none !important;
  width: 100% !important;
  max-width: none !important;
  display: inline-block !important;
  vertical-align: middle !important;
  float: none !important;
}

.newsletter-form .wpcf7-form-control.wpcf7-email::placeholder,
.newsletter-form .wpcf7-form-control.wpcf7-text::placeholder,
.newsletter-form input[name="newsletter-email"]::placeholder,
.newsletter-form .email-input-container input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px !important;
}

/* Nuclear option - force everything inline */
.newsletter-form .email-input-container > * {
  float: none !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* SUPER SPECIFIC BUTTON STYLING */
body .newsletter-form .wpcf7-form .wpcf7-submit,
body .newsletter-form .wpcf7-form input[type="submit"],
body .newsletter-form .wpcf7-form input.wpcf7-submit,
body .newsletter-form .wpcf7 .wpcf7-submit,
body .newsletter-form input[value="Subscribe"] {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding: 12px 24px !important;
  background: white !important;
  color: black !important;
  border: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: border 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: inline-block !important;
  border-radius: 8px !important;
  width: auto !important;
  height: 40px !important;
  box-shadow: none !important;
  outline: none !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

body .newsletter-form .wpcf7-form .wpcf7-submit::before,
body .newsletter-form .wpcf7-form input[type="submit"]::before,
body .newsletter-form .wpcf7-form input.wpcf7-submit::before,
body .newsletter-form .wpcf7 .wpcf7-submit::before,
body .newsletter-form input[value="Subscribe"]::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: #ff3f34 !important;
  opacity: 0.9 !important;
  transform: skewX(-30deg) !important;
  transition: left 0.5s !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

body .newsletter-form .wpcf7-form .wpcf7-submit:hover::before,
body .newsletter-form .wpcf7-form input[type="submit"]:hover::before,
body .newsletter-form .wpcf7-form input.wpcf7-submit:hover::before,
body .newsletter-form .wpcf7 .wpcf7-submit:hover::before,
body .newsletter-form input[value="Subscribe"]:hover::before {
  left: 100% !important;
}

body .newsletter-form .wpcf7-form .wpcf7-submit:hover,
body .newsletter-form .wpcf7-form input[type="submit"]:hover,
body .newsletter-form .wpcf7-form input.wpcf7-submit:hover,
body .newsletter-form .wpcf7 .wpcf7-submit:hover,
body .newsletter-form input[value="Subscribe"]:hover {
  border: 1px solid #000 !important;
  color: black !important;
  background: white !important;
  text-decoration: none !important;
  transform: none !important;
}

/* Ensure z-index positioning */
body .newsletter-form .wpcf7-form .wpcf7-submit span,
body .newsletter-form .wpcf7-form .wpcf7-submit,
body .newsletter-form .wpcf7-form input[type="submit"],
body .newsletter-form .wpcf7-form input.wpcf7-submit,
body .newsletter-form .wpcf7 .wpcf7-submit,
body .newsletter-form input[value="Subscribe"] {
  position: relative !important;
  z-index: 1 !important;
}

/* Alternative approach - target by form ID if needed */
body .wpcf7-form[data-status="init"] input[type="submit"],
body .wpcf7-form input[type="submit"][value*="ubscribe"] {
  margin-top: 30px !important;
  padding: 15px 35px !important;
  background: white !important;
  color: black !important;
  border: none !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: border 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  border-radius: 5px !important;
}

body .wpcf7-form[data-status="init"] input[type="submit"]::before,
body .wpcf7-form input[type="submit"][value*="ubscribe"]::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: #ff3f34 !important;
  opacity: 0.9 !important;
  transform: skewX(-30deg) !important;
  transition: left 0.5s !important;
  z-index: 0 !important;
}

body .wpcf7-form[data-status="init"] input[type="submit"]:hover::before,
body .wpcf7-form input[type="submit"][value*="ubscribe"]:hover::before {
  left: 100% !important;
}

body .wpcf7-form[data-status="init"] input[type="submit"]:hover,
body .wpcf7-form input[type="submit"][value*="ubscribe"]:hover {
  border: 1px solid #000 !important;
  color: black !important;
  background: white !important;
}

/* Hide CF7 validation messages in this design */
.newsletter-form .wpcf7-not-valid-tip {
  display: none;
}

/* Success/Error messages styling */
.newsletter-form .wpcf7-response-output {
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
}

.newsletter-form .wpcf7-mail-sent-ok {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.newsletter-form .wpcf7-validation-errors,
.newsletter-form .wpcf7-mail-sent-ng {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Loading state */
.newsletter-form .wpcf7-form.submitting .wpcf7-submit,
.newsletter-form .wpcf7-form.submitting input[type="submit"] {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  color: #666 !important;
}

.newsletter-form .wpcf7-form.submitting .wpcf7-submit::before,
.newsletter-form .wpcf7-form.submitting input[type="submit"]::before {
  left: -100% !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .newsletter-form .wpcf7-form {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .newsletter-form .email-input-container {
    padding: 10px 14px;
    width: 100%;
    max-width: 100%;
  }

  body .newsletter-form .wpcf7-submit,
  body .newsletter-form input[type="submit"] {
    padding: 12px 25px !important;
    font-size: 12px !important;
    width: 100% !important;
    margin-top: 10px !important;
  }
  .wpcf7-form[data-status="init"] input[type="submit"],
  body .wpcf7-form input[type="submit"][value*="ubscribe"] {
    margin-left: -90px !important;
    margin-top: 0px !important;
  }
}

@media (max-width: 480px) {
  .newsletter-form .email-input-container {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .newsletter-form .wpcf7-form {
    flex-direction: column;
  }
}
/* Search Container */
.search-wrapper {
  position: relative;
  max-width: 400px;
}

/* Search Corrections */
.search-corrections {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 0 0 6px 6px;
  padding: 8px 12px;
  font-size: 13px;
  z-index: 999;
  display: none;
}

.correction-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.correction-text {
  color: #856404;
}

.correction-suggestion {
  color: #856404;
  text-decoration: none;
  font-weight: 600;
}

.correction-suggestion:hover {
  text-decoration: underline;
}

/* Enhanced Suggestions Container */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e1e5e9;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 500px;
  overflow-y: auto;
  display: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.search-suggestions::-webkit-scrollbar {
  width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

/* Correction Notice */
.correction-notice {
  padding: 10px 15px;
  background: #e8f4fd;
  border-bottom: 1px solid #bee5eb;
  color: #0c5460;
  font-size: 12px;
}

/* Suggestions Sections */
.suggestions-section {
  border-bottom: 1px solid #f0f2f5;
}

.suggestions-section:last-child {
  border-bottom: none;
}

.suggestions-header {
  padding: 12px 15px 8px 15px;
  font-size: 11px;
  font-weight: 700;
  color: #65676b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: #f8f9fa;
  margin: 0;
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Suggestion Items */
.suggestion-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  text-decoration: none;
  color: #1c1e21;
  border-bottom: 1px solid #f0f2f5;
  transition: all 0.2s ease;
  position: relative;
}

.suggestion-item:hover,
.suggestion-item.active {
  background: linear-gradient(90deg, #f0f8ff, #e6f3ff);
  color: #1c1e21;
  text-decoration: none;
  transform: translateX(2px);
}

.suggestion-item:last-child {
  border-bottom: none;
}

/* Product Suggestions */
.product-suggestion.exact-match {
  background: linear-gradient(90deg, #e8f5e8, #f0fff0);
  border-left: 3px solid #28a745;
}

.product-suggestion.fuzzy-match {
  opacity: 0.9;
  border-left: 3px solid #ffc107;
}

/* Suggestion Images */
.suggestion-image {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  flex-shrink: 0;
}

.suggestion-image.placeholder {
  background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
    linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
    linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
}

/* Icons */
.category-icon,
.recent-icon {
  width: 32px;
  height: 32px;
  background: #e9ecef;
  border-radius: 50%;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.category-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.recent-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  font-size: 12px;
}

/* Suggestion Content */
.suggestion-content {
  flex: 1;
  min-width: 0;
}

.suggestion-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  line-height: 1.3;
  color: #1c1e21;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-meta {
  font-size: 12px;
  color: #65676b;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Highlighting */
.suggestion-title mark {
  background: linear-gradient(120deg, #ffd54f, #ffeb3b);
  color: #333;
  padding: 1px 2px;
  border-radius: 2px;
  font-weight: 700;
}

/* No Results */
.no-suggestions {
  padding: 30px 20px;
  text-align: center;
  color: #65676b;
}

.no-results-icon {
  font-size: 32px;
  margin-bottom: 15px;
  opacity: 0.5;
}

.no-suggestions p {
  margin: 0 0 20px 0;
  font-size: 16px;
}

.search-tips {
  text-align: left;
  max-width: 250px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

.search-tips p {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #495057;
}

.search-tips ul {
  margin: 0;
  padding-left: 20px;
}

.search-tips li {
  margin: 4px 0;
  font-size: 13px;
  color: #6c757d;
}

/* Recent Searches */
.recent-searches .suggestions-header {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.recent-search:hover {
  background: linear-gradient(90deg, #fff0f3, #ffe6ea);
}

/* Loading Spinner */
.search-loading {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
  z-index: 1001;
}

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-wrapper {
    max-width: 100%;
  }

  .search-suggestions {
    max-height: 60vh;
    left: -10px;
    right: -10px;
    border-radius: 0 0 12px 12px;
  }

  .suggestion-item {
    padding: 15px 12px;
  }

  .suggestion-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .suggestion-title {
    font-size: 13px;
  }

  .suggestion-meta {
    font-size: 11px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .search-suggestions {
    background: #242526;
    border-color: #3a3b3c;
    color: #e4e6ea;
  }

  .suggestions-header {
    background: #3a3b3c;
    color: #b0b3b8;
  }

  .suggestion-item {
    color: #e4e6ea;
    border-bottom-color: #3a3b3c;
  }

  .suggestion-item:hover,
  .suggestion-item.active {
    background: linear-gradient(90deg, #2d3748, #4a5568);
    color: #e4e6ea;
  }

  .suggestion-meta {
    color: #b0b3b8;
  }

  .search-corrections {
    background: #3a3b3c;
    border-color: #4a5568;
    color: #e4e6ea;
  }

  .correction-text,
  .correction-suggestion {
    color: #e4e6ea;
  }

  .no-suggestions {
    color: #b0b3b8;
  }

  .search-tips {
    background: #3a3b3c;
    color: #e4e6ea;
  }
}

/* Animation for showing suggestions */
.search-suggestions {
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus states for accessibility */
.suggestion-item:focus {
  outline: 2px solid #667eea;
  outline-offset: -2px;
  background: linear-gradient(90deg, #f0f8ff, #e6f3ff);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .suggestion-item:hover,
  .suggestion-item.active {
    background: #000;
    color: #fff;
  }

  .suggestion-title mark {
    background: #ff0;
    color: #000;
  }
}
/*accounts*/
.entry-content {
  padding: 70px !important;
}
#secondary {
  display: none !important;
}
.entry-footer {
  display: none !important;
}
.input-text {
  padding: 12px !important;
  border-radius: 5px !important;
  width: 300px !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  width: 300px !important;
}

.etsy-banner {
  background: #ff4444;
  padding: 10px 20px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.etsy-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.etsy-text {
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 500;
}

.etsy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.etsy-btn:hover {
  background: #e63939;
  transform: translateY(-1px);
}

.etsy-btn svg {
  transition: transform 0.3s ease;
}

.etsy-btn:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .entry-content {
    padding: 20px !important;
  }
  .etsy-banner-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .etsy-text {
    font-size: 1rem;
  }

  .etsy-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
.wc-block-components-product-name {
  color: black !important;
}
.wc-block-components-button
  .wp-element-button
  .wc-block-cart__submit-button
  contained {
  margin-top: 60px !important;
  padding: 15px 35px !important;
  background: white !important;
  color: black !important;
  border: none !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: border 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.wc-block-components-button
  .wp-element-button
  .wc-block-cart__submit-button
  contained::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: black !important;
  opacity: 0.9 !important;
  transform: skewX(-30deg) !important;
  transition: left 0.5s !important;
  z-index: 0 !important;
}

.wc-block-components-button
  .wp-element-button
  .wc-block-cart__submit-button
  contained:hover::before {
  left: 100% !important;
}
.edit-post-visual-editor
  .editor-block-list__block
  .wc-block-grid__product-title,
.editor-styles-wrapper .wc-block-grid__product-title,
.wc-block-grid__product-title {
  color: #000 !important;
}

.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
  margin-top: 60px !important;
  padding: 15px 35px !important;
  background: white !important;
  color: black !important;
  border: 1px solid !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: border 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: inline-block !important;
  /* Reset any default WooCommerce styles */
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: auto !important;
  width: auto !important;
}

/* Animated background effect */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: black !important;
  opacity: 0.9 !important;
  transform: skewX(-30deg) !important;
  transition: left 0.5s !important;
  z-index: 0 !important;
}

/* Hover effect for the animated background */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover::before {
  left: 100% !important;
}

/* Ensure text stays on top */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained
  span {
  position: relative !important;
  z-index: 1 !important;
}

/* Hover state */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
  border: 1px solid #000 !important;
  color: black !important;
  background: white !important;
}

/* Alternative selector in case the above is too specific */
.wc-block-components-checkout-place-order-button {
  margin-top: 60px !important;
  padding: 15px 35px !important;
  background: white !important;
  color: black !important;
  border: 1px solid !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: border 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: inline-block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.wc-block-components-checkout-place-order-button::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: black !important;
  opacity: 0.9 !important;
  transform: skewX(-30deg) !important;
  transition: left 0.5s !important;
  z-index: 0 !important;
}

.wc-block-components-checkout-place-order-button:hover::before {
  left: 100% !important;
}

.wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button span {
  position: relative !important;
  z-index: 1 !important;
}

.wc-block-components-checkout-place-order-button:hover {
  border: 1px solid #000 !important;
  color: black !important;
  background: white !important;
}

/* Style WooCommerce checkout button to match cta-btn */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
  margin-top: 60px !important;
  padding: 15px 35px !important;
  background: white !important;
  color: black !important;
  border: 1px solid !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: border 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: inline-block !important;
  /* Reset any default WooCommerce styles */
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: auto !important;
  width: auto !important;
  font-family: "Special Gothic Expanded One";
}

/* Animated background effect */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: black !important;
  opacity: 0.9 !important;
  transform: skewX(-30deg) !important;
  transition: left 0.5s !important;
  z-index: 0 !important;
}

/* Hover effect for the animated background */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover::before {
  left: 100% !important;
}

/* Ensure text stays on top */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained
  span {
  position: relative !important;
  z-index: 1 !important;
}

/* Hover state */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
  border: 1px solid #000 !important;
  color: black !important;
  background: white !important;
}

/* Alternative selector in case the above is too specific */
.wc-block-components-checkout-place-order-button {
  margin-top: 60px !important;
  padding: 15px 35px !important;
  background: white !important;
  color: black !important;
  border: 1px solid !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: border 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: inline-block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.wc-block-components-checkout-place-order-button::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: black !important;
  opacity: 0.9 !important;
  transform: skewX(-30deg) !important;
  transition: left 0.5s !important;
  z-index: 0 !important;
}

.wc-block-components-checkout-place-order-button:hover::before {
  left: 100% !important;
}

.wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button span {
  position: relative !important;
  z-index: 1 !important;
}

.wc-block-components-checkout-place-order-button:hover {
  border: 1px solid #000 !important;
  color: black !important;
  background: white !important;
}

/* ========== CART SUBMIT BUTTON STYLING ========== */

/* Style WooCommerce cart submit button to match cta-btn */
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  margin-top: 60px !important;
  padding: 15px 35px !important;
  background: white !important;
  color: black !important;
  border: 1px solid !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: border 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: inline-block !important;
  /* Reset any default WooCommerce styles */
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: auto !important;
  width: auto !important;
}

/* Animated background effect for cart button */
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: black !important;
  opacity: 0.9 !important;
  transform: skewX(-30deg) !important;
  transition: left 0.5s !important;
  z-index: 0 !important;
}

/* Hover effect for the animated background */
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover::before {
  left: 100% !important;
}

/* Ensure text stays on top */
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained
  span {
  position: relative !important;
  z-index: 1 !important;
}

/* Hover state for cart button */
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
  border: 1px solid #000 !important;
  color: black !important;
  background: white !important;
}

/* Alternative selector for cart button */
.wc-block-cart__submit-button {
  margin-top: 60px !important;
  padding: 15px 35px !important;
  background: white !important;
  color: black !important;
  border: none !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: border 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
  display: inline-block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.wc-block-cart__submit-button::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: black !important;
  opacity: 0.9 !important;
  transform: skewX(-30deg) !important;
  transition: left 0.5s !important;
  z-index: 0 !important;
}

.wc-block-cart__submit-button:hover::before {
  left: 100% !important;
}

.wc-block-cart__submit-button,
.wc-block-cart__submit-button span {
  position: relative !important;
  z-index: 1 !important;
}

.wc-block-cart__submit-button:hover {
  border: 1px solid #000 !important;
  color: black !important;
  background: white !important;
}
/* --- Slower Hover Swipe with Logo (WooCommerce + CTA) --- */

.add-to-cart,
.buy-btn,
.shop-btn,
.cta-btn,
.single_add_to_cart_button,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Black angled swipe background */
.add-to-cart::before,
.buy-btn::before,
.shop-btn::before,
.cta-btn::before,
.single_add_to_cart_button::before,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained::before,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: #000;
  transform: skewX(-30deg);
  transition: left 1s ease; /* slower */
  z-index: 0;
}

/* Airplane logo swipe */
.add-to-cart::after,
.buy-btn::after,
.shop-btn::after,
.cta-btn::after,
.single_add_to_cart_button::after,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained::after,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  width: 80px; /* adjust logo size */
  height: 80px;
  background: url("imgs/logo white.png") no-repeat center/contain;
  transform: translateY(-50%) skewX(-30deg);
  transition: left 1.2s ease; /* slower */
  z-index: 1;
}

/* Animate both on hover */
.add-to-cart:hover::before,
.buy-btn:hover::before,
.shop-btn:hover::before,
.cta-btn:hover::before,
.single_add_to_cart_button:hover::before,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover::before,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover::before {
  left: 120%;
}

.add-to-cart:hover::after,
.buy-btn:hover::after,
.shop-btn:hover::after,
.cta-btn:hover::after,
.single_add_to_cart_button:hover::after,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover::after,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover::after {
  left: calc(100% + 100px);
}
.woocommerce form .form-row label {
  font-weight: bold;
}

.woocommerce form .input-text {
  border: 1px solid #333;
  padding: 10px;
  border-radius: 5px;
}

.woocommerce .form-row {
  margin-bottom: 15px;
}

.woocommerce form .required {
  color: red;
}

.user-account-wrapper {
  display: flex;
  align-items: center;
  gap: 15px; /* adjust spacing */
  margin-top: -6px;
}

.user-account-link,
.logout-link {
  display: inline-flex;
  align-items: center;
}

.user-account-link img.user-icon,
.logout-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

.logout-link svg {
  fill: currentColor;
  transition: fill 0.3s ease;
}

.logout-link {
  color: black;
}

.logout-link:hover {
  color: red;
}
#customer_login {
  display: flex !important;
  gap: 80px !important;
}
.col-1 {
  order: 1 !important;
}
