@charset "UTF-8";
/*
Theme Name: Hobby Exclusive
Description: A minimalistic WordPress theme with full WooCommerce support for multivendor stores
Author: freya.gg
Author URI: https://freya.gg/
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hobbyexclusive
Tags: e-commerce, woocommerce, minimal, clean, responsive
*/
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* p {
  color:#050918;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1 {
  font-weight: 900 !important;
}

/* Headings - boldest weight and italic */
h2 {
  font-weight: 900 !important;
  /* font-style: italic; */
  color:#daa034 !important;
    /* -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: #daa034;
  -webkit-text-stroke: #050918 1px;
  text-transform: uppercase; */
  /* text-shadow: rgb(5, 9, 24) 1px 0px 0px, rgb(5, 9, 24) 0.540302px 0.841471px 0px, rgb(5, 9, 24) -0.416147px 0.909297px 0px, rgb(5, 9, 24) -0.989992px 0.14112px 0px, rgb(5, 9, 24) -0.653644px -0.756802px 0px, rgb(5, 9, 24) 0.283662px -0.958924px 0px, rgb(5, 9, 24) 0.96017px -0.279415px 0px; */
}

.site {
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #050918;
  border-bottom: 1px solid #222;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.site-title a {
  color: #fff;
  text-decoration: none;
}

.site-title a:hover {
  color: #ccc;
}

.site-description {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-price, .header-language {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #ccc;
}

.header-cart-link {
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s;
}

.header-cart-link:hover {
  background: #f0f0f0;
}

/* Navigation */
.main-navigation {
  position: relative;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  text-decoration: none;
  color: #ecf0f1;
  font-weight: 500;
  padding: 0.5rem 1rem;
  display: block;
  transition: color 0.3s;
  position: relative;
}

.main-navigation a:hover {
  color: #3498db;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #333;
  transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
  width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-toggle-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ecf0f1;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded=true] .menu-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded=true] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded=true] .menu-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Dropdown Menus */
.main-navigation ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  flex-direction: column;
  gap: 0;
}

.main-navigation li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation ul ul li {
  width: 100%;
}

.main-navigation ul ul a {
  padding: 0.75rem 1rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.main-navigation ul ul a:hover {
  background: #f8f9fa;
  color: #333;
}

.main-navigation ul ul a::after {
  display: none;
}

/* Third level dropdowns */
.main-navigation ul ul ul {
  top: 0;
  left: 100%;
}

/* Menu indicator for items with children */
.main-navigation .menu-item-has-children > a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #666;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.main-navigation ul ul .menu-item-has-children > a::before {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #666;
  border-right: none;
  margin-left: auto;
  margin-right: 0.5rem;
}

/* Header Cart */
.header-cart {
  position: relative;
}

.cart-contents {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #333;
  padding: 0.75rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  border: 2px solid transparent;
  position: relative;
}

.cart-contents:hover {
  color: #333;
  background: #e9ecef;
  border-color: #dee2e6;
}

.cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.cart-count {
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -5px;
  right: -5px;
  animation: cart-bounce 0.3s ease;
}

.cart-count:empty {
  display: none;
}

@keyframes cart-bounce {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* Header Search */
.header-search {
  position: relative;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 50%;
  color: #333;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: #f8f9fa;
  color: #666;
}

.search-container {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.search-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-container .search-form {
  margin: 0;
}

.search-container .search-field {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.search-container .search-field:focus {
  outline: none;
  border-color: #333;
}

.search-container .search-submit {
  width: 100%;
  background: #072a4f;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.toolbar-right .woocommerce-result-count {
  margin:0px !important;
}

.toolbar-right .woocommerce-ordering {
  margin-bottom:0px !important;
}

.toolbar-right select {
  margin-bottom:0px !important;
}

.search-container .search-submit:hover {
  background: #0a3a6b;
}

/* Main Content */
.site-main {
  min-height: 60vh;
  padding: 30px 0px;
}

.site-content {
  padding: 0;
  margin: 0;
}

.content-area {
  margin-bottom: 0;
}

.page-header {
  margin-bottom: 2rem;
  text-align: center;
}

.page-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

/* Posts and Pages */
.post, .page {
  margin-bottom: 0;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

/* Only add styling to post/page content, not the page wrapper */
.post .entry-content,
.page .entry-content {
  background: #fff;
  border: 1px solid #eee;
  padding: 2rem;
  margin-bottom: 2rem;
}

.entry-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.entry-title a {
  text-decoration: none;
  color: inherit;
}

.entry-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.entry-content {
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn, .button, .wp-block-button__link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #072a4f;
  color: #fff !important;
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid #072a4f;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn:hover, .button:hover, .wp-block-button__link:hover {
  background: #0a3a6b;
  border-color: #0a3a6b;
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #072a4f;
}

/* Footer */
.site-footer {
  background: #050918;
  padding: 3rem 0 2rem;
  border-top: 1px solid #222;
  position: relative;
  color: #ccc;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
  z-index: 1;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-widgets {
  margin-bottom: 2rem;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  justify-items: center;
  margin-bottom: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #222;
}

.footer-branding {
  text-align: center;
}

.footer-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer-description {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.footer-navigation {
  display: flex;
  justify-content: center;
}

.footer-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #444;
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
}

.footer-bottom p {
  color:#FFFFFF !important;
}

.copyright {
  color: #FFFFFF;
  font-size: 0.85rem;
}

.footer-links .footer-bottom-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-links .footer-bottom-menu a {
  color: #999;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links .footer-bottom-menu a:hover {
  color: #ccc;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0 1rem;
  margin-top: 2rem;
  border-top: 1px solid #222;
  text-align: center;
}

.payment-text {
  color: #999;
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #222;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: #ccc;
  backdrop-filter: blur(5px);
}

.site-branding,.footer-branding {
  max-height:80px;
  max-width:150px;
}
.custom-logo-link img {
  width:100%;
  height:auto;
}
.site-branding .custom-logo-link {
  width:100%;
  display:inline-flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .site-branding {
    flex: 1;
  }
  .header-cart,
  .header-search {
    order: 3;
  }
  .menu-toggle {
    display: flex;
    order: 2;
  }
  .main-navigation {
    width: 100%;
    order: 4;
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 0;
    background: #050918;
    border: 1px solid #222;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    margin-top: 1rem;
    display: none;
  }
  .main-navigation.toggled ul {
    display: flex;
  }
  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid #222;
  }
  .main-navigation li:last-child {
    border-bottom: none;
  }
  .main-navigation a {
    padding: 1rem 1.5rem;
    text-align: left;
    color: #ecf0f1;
  }
  .main-navigation a::after {
    display: none;
  }
  /* Mobile dropdown menus */
  .main-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: #111827;
    padding: 0;
    margin-left: 1rem;
    display: none;
  }
  .main-navigation .menu-item-has-children.toggled > ul {
    display: block;
  }
  .main-navigation ul ul a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #222;
    background: none;
    color: #ecf0f1;
  }
  .main-navigation ul ul a:hover {
    background: #222;
    color: #3498db;
  }
  /* Mobile menu indicators */
  .main-navigation .menu-item-has-children > a::before {
    content: "+";
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: auto;
    margin-right: 0;
    width: auto;
    height: auto;
  }
  .main-navigation .menu-item-has-children.toggled > a::before {
    content: "−";
  }
  .main-navigation ul ul .menu-item-has-children > a::before {
    content: "+";
    border: none;
    margin-left: auto;
    margin-right: 0.5rem;
  }
  .main-navigation ul ul .menu-item-has-children.toggled > a::before {
    content: "−";
  }
  /* Header search mobile */
  .search-container {
    width: 280px;
    right: -20px;
  }
  /* Cart mobile */
  .header-cart .cart-contents {
    padding: 0.5rem;
  }
  .container {
    padding: 0 15px;
  }
  
  /* Footer mobile */
  .footer-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links .footer-bottom-menu {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .payment-methods {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
  }
  
  .payment-icons {
    gap: 0.25rem;
  }
}
@media (max-width: 480px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-toggle {
    align-self: flex-end;
    margin-top: -3rem;
  }
  .header-cart,
  .header-search {
    align-self: flex-end;
    margin-top: -3rem;
    margin-right: 3rem;
  }
  .search-container {
    width: calc(100vw - 40px);
    right: -10px;
  }
  .main-navigation ul {
    margin-top: 0.5rem;
  }
}
/* MultiVendorX Plugin Compatibility */
.mvx-vendor-page .site-main,
.vendor-store-page .site-main {
  padding: 2rem 0;
}

.mvx-store-wrapper,
.vendor-store-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}

/* Vendor Store Header */
.vendor-store-header {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid #eee;
}

.vendor-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
  z-index: 1;
}

.vendor-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}

.vendor-info {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap:wrap;
  flex-direction: column;
}

.vendor-avatar {
  flex-shrink: 0;
}

.vendor-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vendor-details {
  flex: 1;
}

.vendor-name {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: #072a4f;
  font-weight: 700;
}

.vendor-description,
.vendor-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.vendor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.vendor-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 1rem;
}

.vendor-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-stars {
  font-size: 1.2rem;
  line-height: 1;
}

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

.vendor-actions .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
}

/* Vendor Store Navigation */
.vendor-store-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.vendor-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.vendor-tabs::-webkit-scrollbar {
  display: none;
}

.vendor-tab {
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: #666;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.vendor-tab:hover,
.vendor-tab.active {
  color: #072a4f;
  border-bottom-color: #072a4f;
  background: #f8f9fa;
}

/* Vendor Store Content */
.vendor-store-content {
  background: #fff;
  min-height: 400px;
}

.vendor-tab-content {
  display: none;
  padding: 3rem 2rem;
  animation: fadeIn 0.3s ease;
}

.vendor-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Vendor Products */
.vendor-products {
  margin-bottom: 2rem;
}

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.no-products {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.no-products h3 {
  color: #333;
  margin-bottom: 1rem;
}

/* Vendor About Section */
.vendor-about h3 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.vendor-full-description {
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.vendor-policies {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.vendor-policy h4 {
  color: #333;
  margin-bottom: 1rem;
}

.policy-content {
  line-height: 1.6;
  color: #666;
}

/* Vendor Reviews */
.vendor-reviews h3 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.vendor-review-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #333;
}

.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviewer-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.review-meta {
  flex: 1;
}

.reviewer-name {
  font-weight: 600;
  color: #333;
  margin: 0 0 0.5rem 0;
}

.review-rating {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.review-date {
  color: #999;
  font-size: 0.9rem;
}

.review-content {
  line-height: 1.6;
  color: #555;
}

.no-reviews {
  text-align: center;
  padding: 2rem;
  color: #666;
}

/* Vendor Contact */
.vendor-contact h3 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1rem;
  gap: 1rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-weight: 600;
  color: #333;
  min-width: 80px;
}

.contact-value {
  color: #666;
}

.contact-value a {
  color: #333;
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

/* Vendor Pagination */
.vendor-pagination {
  margin-top: 3rem;
  text-align: center;
}

.vendor-pagination .page-numbers {
  display: inline-block;
  padding: 0.75rem 1rem;
  margin: 0 0.25rem;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.vendor-pagination .page-numbers:hover,
.vendor-pagination .page-numbers.current {
  background: #333;
  color: #fff;
}

/* Vendor Not Found */
.vendor-not-found {
  text-align: center;
  padding: 4rem 2rem;
}

.vendor-not-found h1 {
  color: #333;
  margin-bottom: 1rem;
}

.vendor-not-found p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Single Vendor Profile */
.single-vendor-page .vendor-header {
  background: #f8f9fa;
  padding: 3rem 0;
  margin-bottom: 3rem;
  border-radius: 12px;
}

.vendor-recent-products {
  margin-bottom: 2rem;
}

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.view-all-products {
  text-align: center;
  margin-top: 2rem;
}

.btn-outline {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}

.btn-outline:hover {
  background: #333;
  color: #fff;
}

.mvx-store-header {
  background: #f8f9fa;
  padding: 2rem;
  border-bottom: 1px solid #eee;
}

.mvx-store-header h1 {
  margin: 0 0 1rem 0;
  color: #333;
}

.mvx-store-description {
  color: #666;
  line-height: 1.6;
}

.mvx-store-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.mvx-store-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.mvx-vendor-dashboard {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.mvx-vendor-dashboard h2 {
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
}

.mvx-vendor-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}

.mvx-vendor-tabs a {
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.mvx-vendor-tabs a:hover,
.mvx-vendor-tabs a.active {
  color: #333;
  border-bottom-color: #333;
}

.mvx-vendor-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.mvx-vendor-product {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

.mvx-vendor-product:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mvx-vendor-product img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.mvx-vendor-product h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.mvx-vendor-product .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.mvx-vendor-reviews {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.mvx-vendor-review {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.mvx-vendor-review-author {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.mvx-vendor-review-rating {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.mvx-vendor-review-text {
  color: #666;
  line-height: 1.6;
}

.mvx-vendor-contact {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.mvx-vendor-contact h3 {
  color: #333;
  margin-bottom: 1rem;
}

.mvx-vendor-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mvx-vendor-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.mvx-vendor-contact-item a {
  color: #333;
  text-decoration: none;
}

.mvx-vendor-contact-item a:hover {
  color: #666;
}

/* Responsive Design for MultiVendorX */
@media (max-width: 768px) {
  .vendor-store-header {
    padding: 2rem 1rem;
  }
  .vendor-info {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .vendor-avatar {
    align-self: center;
  }
  .vendor-name {
    font-size: 2rem;
  }
  .vendor-meta {
    justify-content: center;
    gap: 1rem;
  }
  .vendor-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  .vendor-tab {
    padding: 1rem 1.5rem;
    flex: 1;
    min-width: auto;
    text-align: center;
  }
  .vendor-tab-content {
    padding: 2rem 1rem;
  }
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .contact-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-label {
    min-width: auto;
    font-weight: 700;
  }
  .mvx-store-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  .mvx-vendor-tabs {
    flex-direction: column;
  }
  .mvx-vendor-tabs a {
    border-bottom: none;
    border-right: 2px solid transparent;
  }
  .mvx-vendor-tabs a:hover,
  .mvx-vendor-tabs a.active {
    border-right-color: #333;
    border-bottom-color: transparent;
  }
  .mvx-vendor-products {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .mvx-vendor-contact-info {
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .vendor-name {
    font-size: 1.75rem;
  }
  .vendor-tabs {
    flex-direction: column;
  }
  .vendor-tab {
    flex: none;
    border-bottom: 1px solid #eee;
    border-right: none !important;
  }
  .vendor-tab.active,
  .vendor-tab:hover {
    border-bottom-color: #333;
    border-right-color: transparent !important;
  }
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .vendor-store-nav {
    position: relative;
    top: auto;
  }
}
/* Homepage Styles */
.homepage-wrapper {
  background: #050918;
}

/* Hero Section */
.hero-section {
  background-color: #050918;
  color: #fff;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,rgba(5, 9, 24, 1) 0%, rgba(5, 9, 24, 0.9) 44%, rgba(5, 9, 24, 0) 100%);
  z-index: 80;
  right:0;
  bottom:0;
  pointer-events: none;
}

/* Animated Background */
.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Z-Index Hierarchy:
 * 1. Background images (z-index: 1)
 * 2. Hovered background images (z-index: 3)
 * 3. Gradient overlay (z-index: 5) - ALWAYS above background
 * 4. Hero content (z-index: 10) - Text, buttons, etc.
 */
.hero-images-grid {
  position: absolute;
  top: -20%;
  left: -25%;
  width: 150%;
  height: 140%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-row {
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
  width: 200%; /* Make row 2x viewport width for full coverage */
}

.hero-row:nth-child(odd) {
  animation: slide-right 120s linear infinite;
}

.hero-row:nth-child(even) {
  animation: slide-left 140s linear infinite;
}

.hero-bg-image {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  opacity: 0.3;
  filter: brightness(0.7) saturate(0.8);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-bg-image:hover {
  opacity: 0.6;
  filter: brightness(1.1) saturate(1.2) contrast(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  z-index: 3;
  transform: scale(1.05);
}

/* Performance optimizations */
.hero-images-grid {
  will-change: transform;
  transform: translateZ(0); /* Force GPU acceleration */
  perspective: 1000px;
}

.hero-bg-image {
  will-change: transform, opacity, filter;
  transform: translateZ(0); /* Force GPU acceleration */
  backface-visibility: hidden; /* Prevent flicker */
  transform-origin: center center;
}

/* Enhanced 3D magnetic effect */
.hero-bg-image:hover {
  transform-style: preserve-3d;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 80% at center, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.6) 40%, rgba(10, 10, 10, 0.85) 70%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 5;
  pointer-events: none;
}

/* Mouse-following gradient overlay */
.hero-mouse-gradient {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 800px at 50% 50%, rgba(5, 9, 24, 0.95) 0%, rgba(5, 9, 24, 0.85) 30%, rgba(5, 9, 24, 0.7) 60%, rgba(5, 9, 24, 0.3) 80%, transparent 100%);
  z-index: 100 !important;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: background-position;
}

@keyframes slide-right {
  0% {
    transform: translateX(-33.33%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.33%);
  }
}
.hero-section > * {
  position: relative;
  z-index: 10;
}

/* Gift Announcement */
.gift-announcement {
  background: rgba(5, 9, 25, 0.5);
  padding: 1rem 0;
  text-align: center;
  z-index:101 !important;
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-flex;
}

.announcement-icon {
  font-size: 1.2rem;
}

.announcement-text {
  font-size: 0.9rem;
  color: #fff;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
  z-index:101 !important;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle a, .hero-subtitle a:visited {
  background:none !important;
  color:#FFFFFF !important;
}

/* Hero Search */
.hero-search {
  margin-bottom: 2rem;
}

.search-and-browse-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.search-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 80px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.browse-all-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.category-dropdown {
  background: transparent;
  border: none;
  color: #fff;
  padding: 1rem;
  font-size: 1rem;
  min-width: 120px;
  max-width:120px;
  /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
  outline: none;
  cursor: pointer;
  margin-bottom:0px;
}

.category-dropdown:focus {
  background: rgba(255, 255, 255, 0.1);
}

.category-dropdown option {
  background: #333;
  color: #fff;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 1rem;
  font-size: 1rem;
  outline: none;
  min-width: 0;
  margin-bottom:0px !important;
}

.search-input::-moz-placeholder {
  color: #ccc;
}

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

.search-input:focus {
  background: rgba(255, 255, 255, 0.05);
}

.search-button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.search-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.search-button svg {
  width: 20px;
  height: 20px;
}

/* Hero Gift Cards */
.hero-gift-cards {
  position: absolute;
  height:400px;
  left: 0;
  right: 0;
  margin-top:-200px;
  z-index: 102;
  padding: 2rem 0;
  background: transparent;
  overflow-x: hidden;
}

.hero-gift-cards .container {
  max-width: 100%;
  padding: 0;
}

.hero-gift-cards-swiper {
  position: relative;
  overflow: visible;
  width: 100%;
  position: absolute;
  bottom: 0;
}



.hero-gift-cards-swiper .swiper-container {
  padding: 0 2rem 1rem 2rem;
  overflow: visible;
}

.hero-gift-cards-swiper .swiper-slide {
  height: auto;
}

.hero-gift-cards .gift-card {
  background: #1a1a1a;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-gift-cards .gift-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-gift-cards .gift-card-content {
  padding: 2rem 1rem;
  text-align: center;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-gift-cards .gift-card-logo {
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.hero-gift-cards .gift-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}

.hero-gift-cards .gift-card-category {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.btn-primary {
  background: #072a4f;
  color: #fff;
  border: 1px solid #072a4f;
}

.btn-primary:hover {
  background: #0a3a6b;
  color: #fff;
  border-color: #0a3a6b;
}

.btn-outline {
  background: transparent;
  color: #072a4f;
  border: 1px solid #072a4f;
}

.btn-outline:hover {
  background: #072a4f;
  color: #fff;
}

.hero-image img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

/* Section Styles */
.section-title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  position: relative;
}

.section-title::after {
  display: none;
}

.membership-plans {
    padding: 2rem 0;
    padding-top: 250px !important;
    background: #FFF;
}

/* Featured Categories */
.featured-categories {
  padding: 2rem 0;
  background: #FFF;
  /* border-bottom: 1px solid #222; */
}

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

.category-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #eee;
  transition: border-color 0.3s ease;
}

.category-card:hover {
  border-color: #333;
}

.category-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-image {
  height: 150px;
  overflow: hidden;
}

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

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

.category-info {
  padding: 1.5rem;
  text-align: center;
}

.category-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.category-count {
  color: #666;
  font-size: 0.9rem;
}

/* Featured Products */
.featured-products {
  padding: 2rem 0;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}

  position: relative;
}

.swiper-container {
  padding-bottom: 2rem;
}

  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #eee;
  transition: border-color 0.3s ease;
  height: 100%;
}

  border-color: #333;
}

  position: relative;
  height: 200px;
  overflow: hidden;
}

  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

  transform: scale(1.05);
}

.sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e74c3c;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

  width:100% !important;
}

  box-shadow:none !important;
  text-shadow: none !important;
  color:#121212 !important;
  
}

  padding: 1.5rem;
}

  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

  color: #333;
  text-decoration: none;
}

  color: #667eea;
}

  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

  text-align: center;
}

  width: 100%;
  padding: 0.75rem;
  font-size: 0.9rem;
  border-radius: 0;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: #072a4f;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #072a4f;
}

/* Featured Vendors */
.featured-vendors {
  padding: 2rem 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.vendors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vendor-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #eee;
  text-align:center;
  transition: border-color 0.3s ease;
}

.vendor-card:hover {
  border-color: #333;
}

.vendor-banner {
  height: 120px;
  overflow: hidden;
  position: relative;
}

.vendor-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vendor-info {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.vendor-logo {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 0;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: none;
}

.vendor-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vendor-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: #333;
}

.vendor-name a {
  color: inherit;
  text-decoration: none;
}

.vendor-name a:hover {
  color: #667eea;
}

.vendor-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.vendor-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 0;
}

/* Recent Products */
.recent-products {
  padding: 2rem 0;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-actions {
  text-align: center;
}

.section-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0;
  font-weight: 500;
}

/* Gift Cards Section */
.gift-cards-section {
  padding: 4rem 0;
  background: #0a0a0a;
  color: #fff;
}

.gift-cards-swiper {
  position: relative;
  overflow: hidden;
}

.gift-cards-swiper .swiper-container {
  padding-bottom: 1rem;
}

.gift-cards-swiper .swiper-slide {
  height: auto;
}

.gift-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.gift-card-content {
  padding: 3rem 2rem;
  text-align: center;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Brand Colors */
.xbox-card {
  background: linear-gradient(135deg, #107c10, #0e6b0e);
}

.apple-card {
  background: linear-gradient(135deg, #1d1d1f, #000);
}

.youtube-card {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.tidal-card {
  background: linear-gradient(135deg, #000, #333);
}

.minecraft-card {
  background: linear-gradient(135deg, #62aa47, #4a7c35);
}

.twitch-card {
  background: linear-gradient(135deg, #9146ff, #7c3aed);
}

.spotify-card {
  background: linear-gradient(135deg, #1ed760, #1db954);
}

.netflix-card {
  background: linear-gradient(135deg, #e50914, #b20710);
}

/* Sports Card Category Colors */
.baseball-card {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.basketball-card {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.football-card {
  background: linear-gradient(135deg, #795548 0%, #5D4037 100%);
}

.hockey-card {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.soccer-card {
  background: linear-gradient(135deg, #009688 0%, #00695C 100%);
}

.vintage-card {
  background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
}

.rookie-card {
  background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
}

.graded-card {
  background: linear-gradient(135deg, #673AB7 0%, #512DA8 100%);
}

/* ACF Gallery Card Styling */
.acf-card {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  padding: 0 !important;
  border-radius: 12px;
  overflow: hidden;
}

.gift-card-image {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  /* border-radius: 22px; */
  overflow:hidden;
}

.gift-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* border-radius: 22px; */
  overflow:hidden;
}

.gift-card-logo {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.gift-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.gift-card-category {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  /* Adjust hero animation for mobile */
  .hero-images-grid {
    gap: 15px;
  }
  .hero-row {
    gap: 15px;
    width: 150%;
  }
  .hero-row:nth-child(odd) {
    animation: slide-right 35s linear infinite;
  }
  .hero-row:nth-child(even) {
    animation: slide-left 40s linear infinite;
  }
  .hero-bg-image {
    border-radius: 8px;
  }
  .hero-gradient-overlay {
    background: radial-gradient(ellipse 70% 85% at center, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 35%, rgba(10, 10, 10, 0.9) 65%, rgba(10, 10, 10, 0.97) 100%);
  }
  .hero-actions {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  .wait-times-content {
    gap: 1rem;
  }
  .wait-times-content span {
    font-size: 0.8rem;
  }
  .gift-cards-swiper {
    padding: 0 1rem;
  }
  .search-and-browse-wrapper {
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
  }
  
  .search-wrapper {
    flex-direction: column;
    max-width: 100%;
  }
  .category-dropdown {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header-actions {
    gap: 1rem;
  }
  .header-price, .header-language {
    display: none;
  }
  .hero-gift-cards {
    bottom: -40px;
    padding: 1.5rem 0;
  }
  .hero-gift-cards-swiper .swiper-container {
    padding: 0 1rem 1rem 1rem;
  }
  .hero-gift-cards .gift-card-content {
    padding: 1.5rem 1rem;
    height: 130px;
  }
  .hero-gift-cards .gift-card-title {
    font-size: 1rem;
  }
  .hero-gift-cards .gift-card-logo svg {
    width: 50px;
    height: 50px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  .vendors-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .newsletter-signup {
    flex-direction: column;
    gap: 0;
  }
  .newsletter-signup input,
  .newsletter-signup button {
    width: 100%;
  }
  .newsletter-title {
    font-size: 1.75rem;
  }
  .featured-categories,
  .featured-products,
  .featured-vendors,
  .recent-products,
  .newsletter-section {
    padding: 1.5rem 0;
  }
}
@media (max-width: 480px) {
  .hero-section {
    min-height: 70vh;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  /* Further optimize for small screens */
  .hero-images-grid {
    gap: 10px;
  }
  .hero-row {
    gap: 10px;
    width: 150%;
  }
  .hero-row:nth-child(odd) {
    animation: slide-right 40s linear infinite;
  }
  .hero-row:nth-child(even) {
    animation: slide-left 45s linear infinite;
  }
  .hero-bg-image {
    border-radius: 6px;
    opacity: 0.2; /* Lower opacity for better text readability */
  }
  .hero-bg-image:hover {
    opacity: 0.3;
    transform: scale(1.02);
  }
  .hero-gradient-overlay {
    background: radial-gradient(ellipse 75% 90% at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 30%, rgba(10, 10, 10, 0.95) 60%, rgba(10, 10, 10, 0.98) 100%);
  }
  .hero-content {
    padding: 2rem 0;
  }
  .contact-info {
    display: none;
  }
  .hero-top-bar {
    display: none;
  }
  .wait-times-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  .gift-cards-swiper {
    padding: 0 0.5rem;
  }
  .gift-card-content {
    padding: 2rem 1rem;
    height: 150px;
  }
  .gift-card-title {
    font-size: 1.2rem;
  }
  .gift-card-logo svg {
    width: 60px;
    height: 60px;
  }
  .announcement-content {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  .hero-gift-cards {
    bottom: -30px;
    padding: 1rem 0;
  }
  .hero-gift-cards-swiper .swiper-container {
    padding: 0 0.5rem 1rem 0.5rem;
  }
  .featured-categories {
    padding-top: 100px;
  }
  .hero-gift-cards .gift-card-content {
    padding: 1rem 0.5rem;
    height: 110px;
  }
  .hero-gift-cards .gift-card-title {
    font-size: 0.9rem;
  }
  .hero-gift-cards .gift-card-category {
    font-size: 0.7rem;
  }
  .hero-gift-cards .gift-card-logo svg {
    width: 40px;
    height: 40px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vendors-grid {
    grid-template-columns: 1fr;
  }
    grid-template-columns: 1fr 1fr;
  }
  .vendor-info {
    padding: 1rem;
  }
    padding: 1rem;
  }
  .featured-categories,
  .featured-products,
  .featured-vendors,
  .recent-products,
  .newsletter-section {
    padding: 1rem 0;
  }
}
/* Shop Page with Filters */
  padding: 0;
}

  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Shop Filters */
  background: #fff;
  border: 1px solid #eee;
  padding: 0;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.filters-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.clear-filters {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #ddd;
}

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

.filter-group {
  border-bottom: 1px solid #eee;
}

.filter-title {
  margin: 0;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.filter-title:hover {
  background: #e9ecef;
}

.filter-toggle-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.filter-content {
  padding: 1rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  max-height: 500px;
}

.filter-content.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.filter-group.collapsed .filter-title {
  border-bottom: none;
}

.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.filter-option:last-child {
  margin-bottom: 0;
}

.filter-option input[type=checkbox] {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  margin-right: 0.75rem;
  position: relative;
  flex-shrink: 0;
}

.filter-option input:checked + .checkmark {
  background: #333;
  border-color: #333;
}

.filter-option input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 12px;
  top: -2px;
  left: 2px;
}

.filter-label {
  flex: 1;
  color: #333;
}

.filter-count {
  color: #666;
  font-size: 0.8rem;
}

/* Price Range */
.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-range-inputs input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.price-separator {
  color: #666;
}

.price-range-slider input {
  width: 100%;
  margin-bottom: 0;
}

.filter-actions {
  padding: 1rem;
  border-top: 1px solid #eee;
}

.apply-filters {
  width: 100%;
  background: #333;
  color: #fff;
  border: 1px solid #333;
  padding: 0.75rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.apply-filters:hover {
  background: #555;
  border-color: #555;
}

/* Shop Layout */
.shop-layout {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.shop-filters {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.shop-content {
  flex: 1;
  min-width: 0;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
}

.filters-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.view-toggle {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.view-toggle button {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
}

.view-toggle button.active,
.view-toggle button:hover {
  background: #333;
  color: #fff;
}

.sort-dropdown {
  margin-right: 1rem;
}

.sort-dropdown select.orderby {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  min-width: 180px;
}

.sort-dropdown select.orderby:hover {
  border-color: #333;
}

.sort-dropdown select.orderby:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
  border-color: #007cba;
}

.mobile-filter-toggle {
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
}

.results-count {
  color: #666;
  font-size: 0.9rem;
}

.active-filters {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid #eee;
}

.active-filters h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: #333;
}

.active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.active-filter {
  background: #333 !important;
  color: #fff !important;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.active-filter span {
  color: #fff !important;
  font-size: 0.8rem !important;
}

.remove-filter {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .shop-layout {
    flex-direction: column;
    gap: 1rem;
  }
  
  .shop-filters {
    width: 100%;
    position: static;
    display: none;
    order: -1;
  }
  
  .shop-filters.active {
    display: block;
  }
  
  .mobile-filter-toggle {
    display: flex;
  }
  
  .toolbar-right {
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .shop-toolbar {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .toolbar-left,
  .toolbar-right {
    justify-content: space-between;
  }
  
  .filters-header {
    padding: 0.75rem 1rem;
  }
  
  .filter-content {
    padding: 0.75rem 1rem;
  }
}

/* Product List/Grid View Styles */

/* Default Grid View - Restore WooCommerce default behavior */
.products,
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.products .product,
.products-grid .product {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  box-sizing: border-box !important;
}

/* Ensure all products follow the same rules */
.products .product:first-child,
.products .product:nth-child(2),
.products .product:nth-child(3),
.products-grid .product:first-child,
.products-grid .product:nth-child(2),
.products-grid .product:nth-child(3) {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}

.products .product .woocommerce-loop-product__link,
.products-grid .product .woocommerce-loop-product__link {
  display: block !important;
  text-decoration: none !important;
}

.products .product img,
.products-grid .product img {
  width: 100% !important;
  height: auto !important;
  margin: 0 0 1rem 0 !important;
  border-radius: 6px !important;
}

/* List View Overrides */
.products-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  grid-template-columns: none !important;
}

.products-list .product {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  padding: 1.5rem !important;
  border: 1px solid #eee !important;
  margin-bottom: 1rem !important;
  border-radius: 8px !important;
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  box-sizing: border-box !important;
  background: #fff !important;
}

.products-list .product .woocommerce-loop-product__link {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  width: 100% !important;
  text-decoration: none !important;
  gap: 1.5rem !important;
}

.products-list .product img,
.products-list .product .attachment-woocommerce_thumbnail {
  width: 120px !important;
  height: 120px !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  border-radius: 6px !important;
  margin: 0 !important;
}

.products-list .product .woocommerce-loop-product__title {
  font-size: 1.1rem !important;
  margin-bottom: 0.5rem !important;
  color: #333 !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

.products-list .product .price {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-bottom: 0.5rem !important;
}

.products-list .product .price .amount {
  font-size: 1rem !important;
}

/* Product content area for list view */
.products-list .product .product-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
  .products,
  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .products,
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .products,
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

/* Responsive list view */
@media (max-width: 768px) {
  .products-list .product {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .products-list .product .woocommerce-loop-product__link {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .products-list .product img,
  .products-list .product .attachment-woocommerce_thumbnail {
    width: 150px !important;
    height: 150px !important;
    margin: 0 auto 1rem auto !important;
  }
}

/* Additional fixes for list/grid view switching */
.products {
  transition: all 0.3s ease;
}

/* Ensure list view overrides any existing grid styling */
.products-list.products {
  grid-template-columns: none !important;
  display: flex !important;
  flex-direction: column !important;
}

.products-list .product {
  float: none !important;
  clear: both !important;
}

/* Fix any WooCommerce default styling conflicts */
.products-list .product .woocommerce-loop-product__link img {
  float: none !important;
  margin-right: 1.5rem !important;
  margin-bottom: 0 !important;
}

/* Ensure proper spacing in list items */
.products-list .product .woocommerce-loop-product__title,
.products-list .product h2 {
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}

/* Fix price alignment in list view */
.products-list .product .price {
  margin-top: 0 !important;
}

/* Add some spacing for better readability in list view */
.products-list .product:last-child {
  margin-bottom: 0 !important;
}

/* Ensure buttons and other elements align properly in list view */
.products-list .product .button,
.products-list .product .add_to_cart_button {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Fix any clearfix issues */
.products-list .product::after {
  display: none !important;
}

/* ========================================
   SINGLE PRODUCT PAGE STYLES
======================================== */

.single-product-page {
  padding: 2rem 0;
}

/* Breadcrumb */
.product-breadcrumb {
  margin-bottom: 2rem;
}

.product-breadcrumb .woocommerce-breadcrumb {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.product-breadcrumb .woocommerce-breadcrumb a {
  color: #666;
  text-decoration: none;
}

.product-breadcrumb .woocommerce-breadcrumb a:hover {
  color: #333;
}

/* Product Layout */
.product-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Product Images Section */
.product-images-section {
  position: relative;
}

.product-images .woocommerce-product-gallery {
  margin: 0;
}

.product-images .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.product-images .woocommerce-product-gallery__image {
  margin: 0 0 1rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-images .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.product-images .flex-control-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-images .flex-control-thumbs li {
  flex: none;
  margin: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-images .flex-control-thumbs li:hover,
.product-images .flex-control-thumbs li.flex-active {
  border-color: #333;
}

.product-images .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Badges */
.product-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sale-badge {
  background: #e74c3c;
  color: #fff;
}

.out-of-stock-badge {
  background: #95a5a6;
  color: #fff;
}

.featured-badge {
  background: #f39c12;
  color: #fff;
}

/* Product Info Section */
.product-info-section {
  padding: 1rem 0;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.product-rating-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-rating-section .star-rating {
  color: #f39c12;
}

.rating-count {
  color: #666;
  font-size: 0.9rem;
}

.product-price-section {
  margin-bottom: 2rem;
}

.product-price-section .price {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.product-price-section .price del {
  color: #999;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.product-price-section .price ins {
  color: #e74c3c;
  text-decoration: none;
}

.product-excerpt {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.product-excerpt p {
  margin-bottom: 1rem;
}

/* Product Form */
.product-form-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid #e9ecef;
}

.product-form-section .quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-form-section .quantity label {
  font-weight: 600;
  color: #333;
  min-width: 80px;
}

.product-form-section .quantity input {
  width: 80px;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
  font-size: 1rem;
}

.product-form-section .single_add_to_cart_button {
  background: #333;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-form-section .single_add_to_cart_button:hover {
  background: #555;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-form-section .single_add_to_cart_button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Product Meta */
.product-meta-section {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.product-meta-section > div {
  margin-bottom: 0.75rem;
  color: #666;
  font-size: 0.95rem;
}

.product-meta-section > div:last-child {
  margin-bottom: 0;
}

.product-meta-section strong {
  color: #333;
  margin-right: 0.5rem;
}

.product-meta-section a {
  color: #666;
  text-decoration: none;
}

.product-meta-section a:hover {
  color: #333;
  text-decoration: underline;
}

/* Social Sharing */
.product-sharing {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-sharing strong {
  color: #333;
  font-size: 0.95rem;
}

.sharing-buttons {
  display: flex;
  gap: 0.75rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.pinterest {
  background: #bd081c;
}

/* Product Tabs */
.product-tabs-section {
  margin-bottom: 4rem;
}

.product-tabs-section .woocommerce-tabs {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
}

.product-tabs-section .wc-tabs {
  display: flex;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  margin: 0;
  list-style: none;
  padding: 0;
}

.product-tabs-section .wc-tabs li {
  margin: 0;
  border: none;
  background: none;
}

.product-tabs-section .wc-tabs li a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.product-tabs-section .wc-tabs li a:hover,
.product-tabs-section .wc-tabs li.active a {
  color: #333;
  border-bottom-color: #333;
  background: #fff;
}

.product-tabs-section .wc-tab {
  padding: 2rem;
}

.product-tabs-section .wc-tab h2 {
  margin-top: 0;
  color: #333;
}

/* Related Products */
.related-products-section {
  margin-top: 4rem;
}

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

.related-products-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  font-size: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .product-price-section .price {
    font-size: 1.5rem;
  }
  
  .product-form-section {
    padding: 1.5rem;
  }
  
  .product-images .flex-control-thumbs {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .sharing-buttons {
    justify-content: center;
  }
  
  .product-sharing {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .product-tabs-section .wc-tabs {
    flex-direction: column;
  }
  
  .product-tabs-section .wc-tabs li a {
    padding: 0.75rem 1rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  
  .product-tabs-section .wc-tabs li a:hover,
  .product-tabs-section .wc-tabs li.active a {
    border-left-color: #333;
    border-bottom: none;
  }
}

/* Override any WooCommerce specific product positioning */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  clear: none !important;
  width: auto !important;
  margin: 0 !important;
}

/* Ensure no first-child or nth-child specific styling interferes */
.products .product:first-child,
.products .product:nth-child(odd),
.products .product:nth-child(even),
.woocommerce ul.products li.product:first-child,
.woocommerce ul.products li.product:nth-child(odd),
.woocommerce ul.products li.product:nth-child(even) {
  float: none !important;
  clear: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: auto !important;
}
  gap: 0.5rem;
}

.mobile-filter-toggle:hover {
  border-color: #333;
}

.results-count {
  color: #666;
  font-size: 0.9rem;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.view-toggle {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.view-toggle button {
  background: #fff;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  border-right: 1px solid #ddd;
  transition: all 0.3s ease;
  color: #666;
}

.view-toggle button:last-child {
  border-right: none;
}

.view-toggle button.active {
  background: #daa034;
  color: #fff;
}

.view-toggle button:hover:not(.active) {
  background: #f5f5f5;
  color: #333;
}

.view-toggle button.active:hover {
  background: #c8932e;
}

/* Active Filters */
.active-filters {
  background: #f8f9fa;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid #eee;
}

.active-filters h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.active-filter-tag {
  background: #333;
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.active-filter-tag .remove {
  cursor: pointer;
  font-weight: bold;
}

/* Products Container */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #daa034;
}

  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #daa034, #050918);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

  transform: scaleX(1);
}

  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #333;
  line-height: 1.3;
  flex-grow: 1;
}

  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

  color: #999;
  font-weight: normal;
  margin-right: 0.5rem;
}

  text-decoration: none;
  color: #e74c3c;
}

  margin-top: auto;
  width: 100%;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* List View */
  display: block;
}

  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  text-align: left;
  height: auto;
}

  border-bottom: none;
}

  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  margin-bottom: 0;
}

  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

  width: auto;
  margin-top: 0;
  align-self: flex-start;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 0;
  }
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    z-index: 1000;
    transition: left 0.3s ease;
    max-height: none;
    overflow-y: auto;
  }
    left: 0;
  }
    content: "";
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
    right: 20%;
  }
  .mobile-filter-toggle {
    display: flex;
  }
    flex-wrap: wrap;
    gap: 1rem;
  }
  .toolbar-left,
  .toolbar-right {
    flex: 1;
    min-width: 200px;
  }
  
  /* Products responsive */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
    padding: 1rem;
  }
  
    height: 180px;
  }
  
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
    width: 100%;
    height: 180px;
  }
}
@media (max-width: 480px) {
    width: 90%;
  }
    right: 10%;
  }
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .toolbar-left,
  .toolbar-right {
    justify-content: center;
  }
  .filter-option {
    font-size: 0.85rem;
  }
  .price-range-inputs {
    flex-direction: column;
    gap: 0.5rem;
  }
  .price-range-inputs input {
    width: 100%;
  }
  
  /* Products small mobile */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }
  
    padding: 0.75rem;
  }
  
    height: 160px;
  }
}
/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Cart Sidebar Styles */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.cart-sidebar.active {
  visibility: visible;
  opacity: 1;
}

.cart-sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.cart-sidebar-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-sidebar.active .cart-sidebar-content {
  transform: translateX(0);
}

.cart-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}

.cart-sidebar-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.cart-sidebar-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
  border-radius: 4px;
}

.cart-sidebar-close:hover {
  color: #333;
  background: #e9ecef;
}

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 2rem 0;
  color: #666;
}

.cart-empty svg {
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-empty p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
  position: relative;
}

.cart-item-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 4px;
}

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

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

.cart-item-name a {
  color: #333;
  text-decoration: none;
}

.cart-item-name a:hover {
  color: #007cba;
}

.cart-item-price {
  font-weight: 600;
  color: #007cba;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

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

.cart-item-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
  border-radius: 3px;
}

.cart-item-remove:hover {
  color: #dc3545;
  background: #f8f9fa;
}

.cart-sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
  background: #f8f9fa;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
}

.cart-total-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.cart-total-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #007cba;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary {
  background: #007cba;
  color: #fff;
}

.btn-primary:hover {
  background: #005a87;
  color: #fff;
}

.btn-secondary {
  background: #6c757d;
  color: #fff;
}

.btn-secondary:hover {
  background: #545b62;
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* Header cart section layout */
.header-cart-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Update cart toggle button styles */
.cart-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #f8f9fa;
  border: 2px solid transparent;
  color: #333;
  padding: 0.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.cart-toggle:hover {
  color: #333;
  background: #e9ecef;
  border-color: #dee2e6;
}

.cart-toggle:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

/* Prevent body scroll when cart is open */
body.cart-sidebar-open {
  overflow: hidden;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-sidebar-content {
    max-width: 90%;
  }
  
  .cart-sidebar-header,
  .cart-sidebar-body,
  .cart-sidebar-footer {
    padding: 1rem;
  }
  
  .cart-item {
    padding: 0.75rem;
  }
  
  .cart-item-image {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .cart-sidebar-content {
    max-width: 100%;
  }
}

/* WooCommerce Pagination */
    margin: 3rem 0 !important;
    text-align: center !important;
}

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 44px !important;
    height: 44px !important;
    padding: 0 12px !important;
    margin: 0 4px !important;
    background: #fff !important;
    color: #333 !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: none !important;
    line-height: 1 !important;
    box-shadow: none !important;
    transform: none !important;
}

    background: #fff !important;
    border: none !important;
    color: #333 !important;
    transform: none !important;
    box-shadow: none !important;
}

    background: #333 !important;
    color: #fff !important;
    border: none !important;
    cursor: default !important;
}

    padding: 0 16px !important;
    font-weight: 400 !important;
}

    background: #daa034 !important;
    border: none !important;
    color: #fff !important;
}

    background: none !important;
    border: none !important;
    color: #999 !important;
    cursor: default !important;
    padding: 0 8px !important;
}

    background: none !important;
    border: none !important;
    color: #999 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive pagination */
@media (max-width: 768px) {
        min-width: 38px !important;
        height: 38px !important;
        padding: 0 8px !important;
        margin: 0 2px !important;
        font-size: 13px !important;
    }
    
        padding: 0 12px !important;
    }
}

@media (max-width: 480px) {
        min-width: 34px !important;
        height: 34px !important;
        padding: 0 6px !important;
        margin: 0 1px !important;
        font-size: 12px !important;
    }
    
        padding: 0 10px !important;
    }
}

/* Membership Plans */
.membership-plans {
    padding: 80px 0;
    background: #f8f9fa;
}

.membership-plans .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.membership-plans .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.membership-plans .section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.membership-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.membership-card.recommended {
    border-color: #daa034;
    transform: scale(1.05);
}

.membership-card.recommended:hover {
    transform: scale(1.05) translateY(-8px);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #daa034;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.membership-card .card-header {
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.membership-card.recommended .card-header {
    background: linear-gradient(135deg, #daa034 0%, #b8902d 100%);
}

.membership-card .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.membership-card.recommended .plan-name {
    color: #fff;
}

.membership-card .plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.membership-card .currency {
    font-size: 1.25rem;
    font-weight: 500;
    color: #666;
}

.membership-card.recommended .currency {
    color: rgba(255, 255, 255, 0.8);
}

.membership-card .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.membership-card.recommended .amount {
    color: #fff;
}

.membership-card .free-price {
    color: #28a745 !important;
    font-weight: 700 !important;
}

.membership-card.recommended .free-price {
    color: #fff !important;
}

.membership-card .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.membership-card.recommended .period {
    color: rgba(255, 255, 255, 0.8);
}

.membership-card .card-body {
    padding: 30px;
}

.membership-card .plan-description {
    font-size: 1rem;
    color: #666;
    text-align: left;
    margin: 0;
    line-height: 1.6;
}

.membership-card .plan-description p {
    margin: 0 0 16px 0;
}

.membership-card .plan-description p:last-child {
    margin-bottom: 0;
}

.membership-card .plan-description ul,
.membership-card .plan-description ol {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.membership-card .plan-description ul li,
.membership-card .plan-description ol li {
    display: block !important;
    padding: 8px 0 !important;
    font-size: 0.95rem !important;
    color: #555 !important;
    line-height: 1.5 !important;
    border: none !important;
    position: relative !important;
}

.membership-card .plan-description ul li:before,
.membership-card .plan-description ol li:before {
    display: none !important;
}

.membership-card .plan-description ol li:before {
    content: counter(list-counter) !important;
    counter-increment: list-counter !important;
    background: #333 !important;
}

.membership-card .plan-description ol {
    counter-reset: list-counter !important;
}

.membership-card .plan-description strong {
    color: #333;
    font-weight: 600;
}

.membership-card .plan-description em {
    color: #666;
    font-style: italic;
}

.membership-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.membership-card .plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.membership-card .plan-features li:last-child {
    border-bottom: none;
}

.membership-card .plan-features li svg {
    color: #28a745;
    flex-shrink: 0;
}

.membership-card .card-footer {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
}

.membership-card.recommended .card-footer {
    background: #fff;
}

.membership-card .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 160px;
}

.membership-card .btn-primary {
    background: #333;
    color: #fff;
    border-color: #333;
}

.membership-card .btn-primary:hover {
    background: #daa034;
    border-color: #daa034;
    transform: translateY(-2px);
}

.membership-card .btn-outline {
    background: transparent;
    color: #333 !important;
    border-color: #333;
}

.membership-card .btn-outline:hover {
    background: #333;
    color: #fff !important;
    transform: translateY(-2px);
}

.membership-card .btn-disabled {
    background: #e9ecef;
    color: #6c757d;
    border-color: #e9ecef;
    cursor: not-allowed;
}

.membership-plans .no-plans {
    text-align: center;
    color: #666;
    font-size: 1.125rem;
    grid-column: 1 / -1;
    padding: 60px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .membership-plans {
        padding: 60px 0;
    }
    
    .membership-plans .section-title {
        font-size: 2rem;
    }
    
    .membership-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .membership-card.recommended {
        transform: none;
    }
    
    .membership-card.recommended:hover {
        transform: translateY(-8px);
    }
    
    .membership-card .card-header {
        padding: 30px 20px 20px;
    }
    
    .membership-card .plan-name {
        font-size: 1.25rem;
    }
    
    .membership-card .amount {
        font-size: 2.5rem;
    }
    
    .membership-card .card-body,
    .membership-card .card-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .membership-plans .section-title {
        font-size: 1.75rem;
    }
    
    .membership-card .amount {
        font-size: 2rem;
    }
    
    .membership-card .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Vendor Top Navigation Bar */
.vendor-top-navigation {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 2px solid #daa034;
    padding: 4px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vendor-top-navigation .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.vendor-welcome .vendor-greeting {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vendor-welcome .vendor-greeting svg {
    color: #daa034;
}

.vendor-nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

.vendor-nav-links li {
    margin: 0;
}

.vendor-nav-separator {
    color: #666;
    font-size: 16px;
    margin: 0 8px;
}

.vendor-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vendor-nav-link:hover {
    background: rgba(218, 160, 52, 0.1);
    border-color: #daa034;
    color: #daa034;
    text-decoration: none;
}

.vendor-nav-link.vendor-logout:hover {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.vendor-nav-link.vendor-cta {
    background: rgba(218, 160, 52, 0.15);
    border-color: #daa034;
    color: #daa034;
    font-weight: 600;
}

.vendor-nav-link.vendor-cta:hover {
    background: rgba(218, 160, 52, 0.25);
    border-color: #daa034;
    color: #fff;
    transform: translateY(-1px);
}

.vendor-nav-link svg {
    width: 12px;
    height: 12px;
    opacity: 0.8;
}

.vendor-nav-link:hover svg {
    opacity: 1;
}

/* Responsive Vendor Navigation */
@media (max-width: 768px) {
    .vendor-top-navigation {
        padding: 3px 0;
    }
    
    .vendor-nav-content {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    
    .vendor-nav-menu {
        width: 100%;
        justify-content: flex-start;
    }
    
    .vendor-nav-links {
        flex-wrap: wrap;
        gap: 3px;
    }
    
    .vendor-nav-link {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .vendor-welcome .vendor-greeting {
        font-size: 12px;
    }
    
    body.vendor-nav-scrolled:has(.vendor-top-navigation) {
        padding-top: 44px;
    }
    
    body.vendor-nav-scrolled .site-header {
        margin-top: 44px;
    }
    
    body.has-vendor-nav .site-header {
        margin-top: 44px;
    }
    
    body.vendor-nav-scrolled .vendor-top-navigation + .site {
        margin-top: 44px;
    }
}

@media (max-width: 480px) {
    .vendor-top-navigation {
        padding: 2px 0;
    }
    
    .vendor-top-navigation .container {
        padding: 0 15px;
    }
    
    .vendor-nav-links {
        gap: 2px;
    }
    
    .vendor-nav-link {
        font-size: 10px;
        padding: 2px 4px;
    }
    
    .vendor-nav-link svg {
        width: 10px;
        height: 10px;
    }
    
    .vendor-nav-separator {
        display: none;
    }
    
    .vendor-welcome .vendor-greeting {
        font-size: 11px;
    }
    
    body.vendor-nav-scrolled:has(.vendor-top-navigation) {
        padding-top: 38px;
    }
    
    body.vendor-nav-scrolled .site-header {
        margin-top: 38px;
    }
    
    body.has-vendor-nav .site-header {
        margin-top: 38px;
    }
    
    body.vendor-nav-scrolled .vendor-top-navigation + .site {
        margin-top: 38px;
    }
}

/* Push down main site content when vendor nav is present and scrolled */
body.vendor-nav-scrolled:has(.vendor-top-navigation) {
    padding-top: 36px;
}

body.vendor-nav-scrolled .site-header {
    /* margin-top: 36px; */
    top:36px;
}

/* Add margin to site header when vendor nav is present (always present) */
body.has-vendor-nav .site-header {
    margin-top: 36px;
}

/* Fallback for browsers that don't support :has() */
body.vendor-nav-scrolled .vendor-top-navigation + .site {
    margin-top: 36px;
}

/* ====================================
   NEW ARRIVALS SECTION
   ==================================== */

.new-arrivals-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.new-arrivals-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(218, 160, 52, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(7, 42, 79, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.new-arrivals-slider {
    position: relative;
    padding: 0 0 60px 0;
}

.new-arrival-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.new-arrival-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.arrival-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8f9fa;
    border-radius: 16px 16px 0 0;
}

.arrival-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.arrival-sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(238, 90, 82, 0.3);
}

.arrival-sale-badge svg {
    width: 12px;
    height: 12px;
}

.arrival-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 42, 79, 0.8), rgba(218, 160, 52, 0.8));
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.new-arrival-card:hover .arrival-card-overlay {
    opacity: 1;
    visibility: visible;
}

.arrival-quick-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quick-view-btn,
.add-to-cart-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #072a4f;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.quick-view-btn:hover,
.add-to-cart-btn:hover {
    background: #fff;
    transform: scale(1.1);
    color: #072a4f;
    text-decoration: none;
}

.arrival-card-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arrival-category {
    display: inline-block;
    background: linear-gradient(135deg, #072a4f, #0a3a6b);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.arrival-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.arrival-title a {
    color: #072a4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.arrival-title a:hover {
    color: #daa034;
}

.arrival-vendor {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
    font-style: italic;
}

.arrival-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #072a4f;
    margin: 8px 0;
}

.arrival-price .price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrival-price .price del {
    color: #999;
    font-weight: 400;
    font-size: 0.9rem;
}

.arrival-price .price ins {
    text-decoration: none;
    color: #daa034;
}

.arrival-rating {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrival-rating .star-rating {
    font-size: 0.875rem;
}

.arrival-rating .no-rating {
    color: #666;
    font-size: 0.75rem;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 500;
}

/* Navigation Buttons */
.new-arrivals-next,
.new-arrivals-prev {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #072a4f, #0a3a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 16px rgba(7, 42, 79, 0.3);
}

.new-arrivals-next:hover,
.new-arrivals-prev:hover {
    background: linear-gradient(135deg, #daa034, #c08d20);
    transform: translateY(-50%) scale(1.1);
}

.new-arrivals-next {
    right: 20px;
}

.new-arrivals-prev {
    left: 20px;
}

.new-arrivals-next.swiper-button-disabled,
.new-arrivals-prev.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Pagination */
.new-arrivals-pagination {
    text-align: center;
    margin-top: 40px;
}

.new-arrivals-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.new-arrivals-pagination .swiper-pagination-bullet-active {
    background: #072a4f;
    transform: scale(1.2);
}

.new-arrivals-pagination .swiper-pagination-bullet:hover {
    background: #daa034;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .new-arrivals-next,
    .new-arrivals-prev {
        width: 44px;
        height: 44px;
    }
    
    .new-arrivals-next {
        right: 15px;
    }
    
    .new-arrivals-prev {
        left: 15px;
    }
}

@media (max-width: 768px) {
    .new-arrivals-section {
        padding: 60px 0;
    }
    
    .new-arrival-card {
        border-radius: 12px;
    }
    
    .arrival-card-info {
        padding: 16px;
    }
    
    .arrival-title {
        font-size: 1rem;
    }
    
    .quick-view-btn,
    .add-to-cart-btn {
        width: 40px;
        height: 40px;
    }
    
    .arrival-quick-actions {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .new-arrivals-next,
    .new-arrivals-prev {
        width: 36px;
        height: 36px;
        right: 10px;
    }
    
    .new-arrivals-prev {
        left: 10px;
    }
    
    .arrival-card-info {
        padding: 12px;
    }
    
    .arrival-title {
        font-size: 0.9rem;
    }
    
    .arrival-price {
        font-size: 1rem;
    }
}

/* ====================================
   FEATURED VENDORS SECTION
   ==================================== */

.featured-vendors-section {
    padding: 80px 0;
    background: #072a4f;
    position: relative;
    overflow: hidden;
}

.featured-vendors-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 160, 52, 0.1) 0%, transparent 50%, rgba(218, 160, 52, 0.05) 100%);
    pointer-events: none;
}

.featured-vendors-section .section-title {
    color: white;
}

.featured-vendors-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.featured-vendors-slider {
    position: relative;
    padding: 0 0 60px 0;
}

/* Handle few vendors gracefully */
.featured-vendors-slider .swiper-wrapper {
    justify-content: center;
}

/* When we have 3 or fewer vendors, center them better */
@media (min-width: 768px) {
    .featured-vendors-slider[data-slides="1"] .swiper-wrapper,
    .featured-vendors-slider[data-slides="2"] .swiper-wrapper,
    .featured-vendors-slider[data-slides="3"] .swiper-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .featured-vendors-slider[data-slides="1"] .swiper-slide,
    .featured-vendors-slider[data-slides="2"] .swiper-slide,
    .featured-vendors-slider[data-slides="3"] .swiper-slide {
        width: auto !important;
        max-width: 350px;
        margin: 0 12px;
    }
}

.featured-vendor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 420px;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.featured-vendor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.vendor-card-header {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.vendor-banner-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.vendor-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-vendor-card:hover .vendor-banner-img {
    transform: scale(1.1);
}

.vendor-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 42, 79, 0.3), rgba(218, 160, 52, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-vendor-card:hover .vendor-banner-overlay {
    opacity: 1;
}

.vendor-avatar {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.vendor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #daa034, #c08d20);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 15;
    box-shadow: 0 2px 8px rgba(218, 160, 52, 0.3);
}

.vendor-rating-badge svg {
    width: 12px;
    height: 12px;
}

.vendor-card-body {
    padding: 40px 24px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-vendor-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.featured-vendor-name a {
    color: #072a4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-vendor-name a:hover {
    color: #daa034;
}

.vendor-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.8;
}

.vendor-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 12px 0;
}

.vendor-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #072a4f;
    font-size: 0.8rem;
    font-weight: 500;
}

.vendor-stat svg {
    color: #daa034;
    opacity: 0.7;
}

.vendor-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #666;
    font-size: 0.8rem;
    margin-top: auto;
}

.vendor-location svg {
    color: #daa034;
    opacity: 0.7;
}

.vendor-card-footer {
    padding: 0 24px 24px;
}

.btn-vendor-visit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #072a4f, #0a3a6b);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-vendor-visit:hover {
    background: linear-gradient(135deg, #daa034, #c08d20);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(218, 160, 52, 0.3);
}

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

.btn-vendor-visit:hover svg {
    transform: translateX(4px);
}

/* Hover Overlay */
.vendor-card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 42, 79, 0.95), rgba(218, 160, 52, 0.95));
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.featured-vendor-card:hover .vendor-card-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.vendor-quick-info {
    text-align: center;
    color: white;
}

.vendor-quick-info h4 {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.quick-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.quick-stat {
    text-align: center;
}

.quick-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #daa034;
    line-height: 1;
    margin-bottom: 4px;
}

.quick-stat span {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
.featured-vendors-next,
.featured-vendors-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #072a4f;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.featured-vendors-next:hover,
.featured-vendors-prev:hover {
    background: #daa034;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.featured-vendors-next {
    right: 20px;
}

.featured-vendors-prev {
    left: 20px;
}

.featured-vendors-next.swiper-button-disabled,
.featured-vendors-prev.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Pagination */
.featured-vendors-pagination {
    text-align: center;
    margin-top: 40px;
}

.featured-vendors-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-vendors-pagination .swiper-pagination-bullet-active {
    background: #daa034;
    transform: scale(1.3);
}

.featured-vendors-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Section Actions */
.featured-vendors-section .section-actions {
    text-align: center;
    margin-top: 40px;
}

.featured-vendors-section .btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.featured-vendors-section .btn:hover {
    background: #daa034;
    border-color: #daa034;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-vendors-next,
    .featured-vendors-prev {
        width: 44px;
        height: 44px;
    }
    
    .featured-vendors-next {
        right: 15px;
    }
    
    .featured-vendors-prev {
        left: 15px;
    }
    
    .featured-vendor-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .featured-vendors-section {
        padding: 60px 0;
    }
    
    .featured-vendor-card {
        border-radius: 16px;
        height: 380px;
    }
    
    .vendor-card-header {
        height: 120px;
    }
    
    .vendor-avatar {
        width: 70px;
        height: 70px;
        bottom: -25px;
    }
    
    .vendor-card-body {
        padding: 35px 20px 16px;
    }
    
    .featured-vendor-name {
        font-size: 1.2rem;
    }
    
    .vendor-stats {
        gap: 16px;
    }
    
    .quick-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .featured-vendors-next,
    .featured-vendors-prev {
        width: 40px;
        height: 40px;
        right: 10px;
    }
    
    .featured-vendors-prev {
        left: 10px;
    }
    
    .featured-vendor-card {
        height: 360px;
    }
    
    .vendor-card-header {
        height: 100px;
    }
    
    .vendor-avatar {
        width: 60px;
        height: 60px;
        bottom: -20px;
    }
    
    .vendor-card-body {
        padding: 30px 16px 12px;
        gap: 8px;
    }
    
    .featured-vendor-name {
        font-size: 1.1rem;
    }
    
    .vendor-stats {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .quick-stats {
        gap: 16px;
    }
    
    .quick-stat strong {
        font-size: 1.3rem;
    }
}

