/* ═══════════════════════════════════════════════════════════════
   LODGEVISION — WOOCOMMERCE STORE STYLING OVERRIDES
   Dark navy · Glassmorphic product cards · Outfit Typography · Orange accents
   ═══════════════════════════════════════════════════════════════ */

/* Full Width Dark Background for Store Pages */
body.woocommerce,
body.woocommerce-page,
body.woocommerce-page #primary.site-main {
  background: #071a2a !important;
  background-image: linear-gradient(135deg, #0c304c, #071a2a) !important;
  background-attachment: fixed !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
}

/* Main Container Wrapper */
.woocommerce-main {
  background: transparent !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  min-height: 80vh;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

.woocommerce-container {
  padding: 60px 24px !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

/* Two Column Sidebar Grid Layout */
@media (min-width: 768px) {
  .store-layout-grid {
    display: grid !important;
    grid-template-columns: 280px 1fr !important;
    gap: 40px !important;
    align-items: start !important;
  }
}

.store-sidebar {
  width: 100% !important;
  margin-bottom: 30px !important;
}

@media (min-width: 768px) {
  .store-sidebar {
    margin-bottom: 0 !important;
  }
}

.store-sidebar-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

.store-sidebar-card .sidebar-title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 20px 0 !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-family: 'Outfit', sans-serif !important;
}

.store-categories-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.store-categories-list li {
  margin-bottom: 12px !important;
}

.store-categories-list li:last-child {
  margin-bottom: 0 !important;
}

.store-categories-list li a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  transition: all 0.2s ease !important;
  padding: 10px 14px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
}

.store-categories-list li a:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(244, 97, 31, 0.2) !important;
}

.store-categories-list li.active a {
  color: #ffffff !important;
  background: #F4611F !important;
  border-color: #F4611F !important;
  font-weight: 600 !important;
}

.store-categories-list li .cat-count {
  font-size: 13px !important;
  opacity: 0.6 !important;
}

.store-categories-list li.active .cat-count {
  opacity: 0.95 !important;
}

.store-content-area {
  min-width: 0 !important;
  width: 100% !important;
}

/* Titles & Headings */
.woocommerce-main h1.page-title,
.woocommerce-main .product_title,
.woocommerce-main h2,
.woocommerce-main h3 {
  font-family: 'Outfit', sans-serif !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.woocommerce-main h1.page-title {
  font-size: 42px !important;
  margin-top: 0 !important;
  margin-bottom: 40px !important;
  text-align: left !important;
  letter-spacing: -0.5px !important;
}

/* Breadcrumbs & Result Count */
.woocommerce-breadcrumb {
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 30px !important;
  font-size: 14px !important;
}

.woocommerce-breadcrumb a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
}

.woocommerce-breadcrumb a:hover {
  color: #F4611F !important;
}

.woocommerce-result-count,
.woocommerce-ordering select {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: 'Outfit', sans-serif !important;
}

.woocommerce-ordering select {
  background: #071a2a !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  color: #ffffff !important;
}

.woocommerce-ordering select option {
  background-color: #071a2a !important;
  color: #ffffff !important;
}

/* =========================================================================
   1. SHOP PRODUCT GRID
   ========================================================================= */
.woocommerce ul.products {
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 30px !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  text-align: center !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(244, 97, 31, 0.4) !important;
  box-shadow: 0 15px 35px rgba(244, 97, 31, 0.15) !important;
}

.woocommerce ul.products li.product img {
  border-radius: 8px !important;
  margin-bottom: 20px !important;
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

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

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 10px 0 !important;
  font-family: 'Outfit', sans-serif !important;
  line-height: 1.4 !important;
}

.woocommerce ul.products li.product .price {
  color: #F4611F !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-bottom: 20px !important;
  display: block !important;
  font-family: 'Outfit', sans-serif !important;
}

.woocommerce ul.products li.product .price del {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 15px !important;
}

.woocommerce ul.products li.product .price ins {
  background: transparent !important;
  text-decoration: none !important;
  margin-left: 6px !important;
}

/* Loop Add to Cart Button */
.woocommerce ul.products li.product .button {
  background: #F4611F !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  letter-spacing: 1px !important;
  font-family: 'Outfit', sans-serif !important;
  transition: background-color 0.2s !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-top: auto !important;
  display: block !important;
}

.woocommerce ul.products li.product .button:hover {
  background: #E55510 !important;
}

.woocommerce ul.products li.product .added_to_cart {
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-top: 10px !important;
  display: block !important;
  text-decoration: underline !important;
}

/* =========================================================================
   2. SINGLE PRODUCT DETAILS
   ========================================================================= */
.woocommerce div.product {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.woocommerce div.product div.images img {
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.woocommerce div.product .product_title {
  font-size: 36px !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
  color: #F4611F !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  font-family: 'Outfit', sans-serif !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.8 !important;
  font-size: 15px !important;
  margin: 24px 0 !important;
}

.woocommerce div.product .product_meta {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 15px !important;
  margin-top: 25px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 13.5px !important;
}

.woocommerce div.product .product_meta a {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Quantity & Single Add to Cart */
.woocommerce div.product form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
}

.woocommerce div.product form.cart .quantity input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  padding: 10px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  width: 60px !important;
  text-align: center !important;
}

.woocommerce div.product form.cart .button {
  background: #F4611F !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-family: 'Outfit', sans-serif !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  padding: 12px 36px !important;
  font-size: 15px !important;
  letter-spacing: 1px !important;
  transition: background 0.2s !important;
}

.woocommerce div.product form.cart .button:hover {
  background: #E55510 !important;
}

/* Tabs Override */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 40px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: transparent !important;
  padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  margin: 0 20px 0 0 !important;
  padding: 0 0 10px 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 600 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid #F4611F !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #F4611F !important;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.8 !important;
  padding-top: 30px !important;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  display: none !important;
}

/* =========================================================================
   3. CART PAGE
   ========================================================================= */
.woocommerce-cart .woocommerce,
.wp-block-woocommerce-cart,
.wc-block-cart {
  max-width: 1200px !important;
  margin: 60px auto !important;
  width: calc(100% - 48px) !important;
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

@media (max-width: 768px) {
  .woocommerce-cart .woocommerce,
  .wp-block-woocommerce-cart,
  .wc-block-cart {
    padding: 24px 16px !important;
    margin: 30px auto !important;
    width: calc(100% - 32px) !important;
  }
}


.woocommerce table.shop_table {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.01) !important;
  border-collapse: separate !important;
  overflow: hidden !important;
}

.woocommerce table.shop_table th {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-family: 'Outfit', sans-serif !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  padding: 18px !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
}

.woocommerce table.shop_table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 18px !important;
  background: transparent !important;
}

.woocommerce table.shop_table td.product-thumbnail img {
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  width: 70px !important;
}

.woocommerce table.shop_table td a {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.woocommerce table.shop_table td a:hover {
  color: #F4611F !important;
}

.woocommerce td.product-remove a.remove {
  color: #ff4d4d !important;
  font-size: 20px !important;
  font-weight: 400 !important;
}

.woocommerce td.product-remove a.remove:hover {
  background: #ff4d4d !important;
  color: #ffffff !important;
}

.woocommerce-cart-form__contents .coupon input.input-text {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  padding: 10px 15px !important;
  font-family: 'Outfit', sans-serif !important;
}

/* Cart Buttons */
.woocommerce .actions .button {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  padding: 12px 20px !important;
}

.woocommerce .actions .button:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Proceed to Checkout Button */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: #F4611F !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  padding: 16px 24px !important;
  font-size: 15px !important;
  letter-spacing: 1px !important;
  transition: background 0.2s !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: #E55510 !important;
}

.cart-collaterals {
  margin-top: 40px !important;
}

.cart_totals {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 30px !important;
  width: 100% !important;
  float: none !important;
}

.cart_totals tr td, 
.cart_totals tr th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 12px 0 !important;
}

/* =========================================================================
   4. CHECKOUT PAGE
   ========================================================================= */
.woocommerce-checkout .woocommerce,
.wp-block-woocommerce-checkout,
.wc-block-checkout {
  max-width: 1200px !important;
  margin: 60px auto !important;
  width: calc(100% - 48px) !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .woocommerce-checkout .woocommerce,
  .wp-block-woocommerce-checkout,
  .wc-block-checkout {
    margin: 30px auto !important;
    width: calc(100% - 32px) !important;
  }
  .woocommerce-checkout form.checkout,
  .wp-block-woocommerce-checkout,
  .wc-block-checkout {
    padding: 24px 16px !important;
  }
}

.woocommerce-checkout form.checkout,
.wp-block-woocommerce-checkout,
.wc-block-checkout {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.woocommerce-checkout h3 {
  font-size: 22px !important;
  margin-bottom: 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 12px !important;
  font-family: 'Outfit', sans-serif !important;
}

.woocommerce-checkout .form-row label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
  font-family: 'Outfit', sans-serif !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  padding: 12px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: #F4611F !important;
  box-shadow: 0 0 8px rgba(244, 97, 31, 0.3) !important;
  outline: none !important;
}

/* Payment Section Styling */
.woocommerce #payment {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 24px !important;
}

.woocommerce #payment ul.payment_methods {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-bottom: 20px !important;
}

.woocommerce #payment ul.payment_methods li {
  color: #ffffff !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}

.woocommerce #payment div.payment_box {
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  border-radius: 6px !important;
  padding: 15px !important;
  margin: 15px 0 0 0 !important;
  font-size: 13.5px !important;
}

.woocommerce #payment div.payment_box::before {
  display: none !important;
}

/* Place Order Button */
.woocommerce #place_order {
  background: #F4611F !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  padding: 16px 30px !important;
  font-size: 16px !important;
  letter-spacing: 1px !important;
  transition: background 0.2s !important;
  width: 100% !important;
}

.woocommerce #place_order:hover {
  background: #E55510 !important;
}

/* =========================================================================
   5. NOTICES / ALERTS
   ========================================================================= */
.woocommerce-message, 
.woocommerce-info, 
.woocommerce-error {
  position: relative !important;
  background: rgba(12, 48, 76, 0.95) !important;
  border-top: 3px solid #F4611F !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 18px 24px 18px 60px !important;
  font-family: 'Outfit', sans-serif !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
  margin-bottom: 30px !important;
}

/* Fix notice pseudo-element icons overlapping alert text */
.woocommerce-message::before, 
.woocommerce-info::before, 
.woocommerce-error::before {
  position: absolute !important;
  left: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  color: #F4611F !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button {
  background: #F4611F !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  font-family: 'Outfit', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  float: right !important;
}

.woocommerce-message a.button:hover {
  background: #E55510 !important;
}

/* Center WooCommerce Site Containers & Clear Default Floats */
body.woocommerce-page #primary.site-main,
body.woocommerce #primary.site-main,
body.woocommerce-page .site-main,
body.woocommerce .site-main {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  float: none !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* Modern Grid Layout for Single Product inside the Sidebar Grid */
@media (min-width: 992px) {
  .woocommerce div.product {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
  }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
  }
  /* Ensure tabs, related products and upsells span the full 2 columns of the product grid */
  .woocommerce div.product .woocommerce-tabs,
  .woocommerce div.product .related.products,
  .woocommerce div.product .upsells.products {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    padding: 24px !important;
  }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
  }
}

/* =========================================================================
   6. DYNAMIC HEADER CART ICON
   ========================================================================= */
/* Premium Glassmorphic Shopping Cart Icon in Header */
.nav-cart-icon-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  cursor: pointer !important;
  z-index: 150 !important;
}

.nav-cart-icon-wrapper:hover {
  background: rgba(244, 97, 31, 0.15) !important;
  border-color: rgba(244, 97, 31, 0.4) !important;
  color: #F4611F !important;
  box-shadow: 0 4px 15px rgba(244, 97, 31, 0.25) !important;
  transform: translateY(-2px) !important;
}

.nav-cart-icon-wrapper svg {
  transition: transform 0.3s ease !important;
}

.nav-cart-icon-wrapper:hover svg {
  transform: scale(1.1) !important;
}

/* Badge for Cart Count */
.nav-cart-count {
  position: absolute !important;
  top: -4px !important;
  right: -4px !important;
  background: #F4611F !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  min-width: 18px !important;
  height: 18px !important;
  border-radius: 9px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 5px !important;
  box-shadow: 0 2px 8px rgba(244, 97, 31, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}

.nav-cart-icon-wrapper:hover .nav-cart-count {
  transform: scale(1.1) !important;
  box-shadow: 0 2px 12px rgba(244, 97, 31, 0.7) !important;
}

/* Desktop header layout spacing: ensure menu and cart remain grouped on the right */
@media (min-width: 1025px) {
  .nav-links {
    margin-left: auto !important;
  }
  .nav-cart-icon-wrapper {
    margin-left: 30px !important;
  }
}

/* Mobile Breakpoint for Cart Icon Positioning next to hamburger toggle */
@media (max-width: 1024px) {
  .nav-cart-icon-wrapper {
    margin-left: auto !important; /* Push cart and mobile toggle to the right */
    margin-right: 15px !important; /* Gap between cart icon and hamburger toggle */
    width: 38px !important;
    height: 38px !important;
  }
  
  .nav-cart-count {
    top: -3px !important;
    right: -3px !important;
    min-width: 16px !important;
    height: 16px !important;
    font-size: 10px !important;
  }
}

/* =========================================================================
   7. MY ACCOUNT PAGE
   ========================================================================= */
.woocommerce-account .woocommerce {
  max-width: 1200px !important;
  margin: 60px auto !important;
  width: calc(100% - 48px) !important;
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

@media (max-width: 768px) {
  .woocommerce-account .woocommerce {
    padding: 24px 16px !important;
    margin: 30px auto !important;
    width: calc(100% - 32px) !important;
  }
}

