/*
Theme Name:   House of Sivana Custom Theme
Theme URI:    https://houseofsivana.com
Description:  High-performance child theme for House of Sivana utilizing custom Tailwind, GSAP, and Swiper.
Author:       Antigravity
Template:     hello-elementor
Version:      1.4.0
*/

/* ==========================================================================
   Base Theme Variables and Setup
   ========================================================================== */
:root {
  --hos-gold: #D4AF37;       /* Antique Gold */
  --hos-gold-light: #E5C453;
  --hos-gold-dark: #C5A059;
  --hos-maroon: #5C061C;     /* Velvet Burgundy/Maroon */
  --hos-maroon-dark: #4A0D1B;
  --hos-ivory: #FAF9F6;      /* Warm Ivory */
  --hos-sand: #EFEBE4;       /* Sand accent */
  --hos-charcoal: #111111;    /* Matte black */
  
  --hos-font-serif: 'Cinzel', 'Playfair Display', serif;
  --hos-font-sans: 'Outfit', 'Inter', sans-serif;
  
  --hos-header-height-tall: 96px;
  --hos-header-height-short: 76px;
  --hos-header-bg-glass: #ffffff;
}

/* Base scroll setups */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-color: var(--hos-ivory);
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-color: var(--hos-ivory);
    color: var(--hos-charcoal);
    font-family: var(--hos-font-sans);
}

#main-content {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: var(--hos-header-height-offset, 126px);
}

/* Floating / Overlay Glassmorphic Panels */
.glass-panel {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.glass-panel::-webkit-scrollbar {
    width: 4px;
}
.glass-panel::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

/* Custom Typography Helpers */
.hos-font-cinzel { font-family: 'Cinzel', serif; }
.hos-font-playfair { font-family: 'Playfair Display', serif; }
.hos-font-outfit { font-family: 'Outfit', sans-serif; }

/* ==========================================================================
   Editorial Blog Card & Grid Layouts (Globally accessible)
   ========================================================================== */
.hos-blogs-section {
  padding: 7rem 5%;
  background-color: var(--hos-ivory);
  font-family: var(--hos-font-sans);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hos-blogs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hos-blogs-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem;
}

/* 3-column Grid layout for horizontal editorial blocks on desktop */
.hos-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Editorial Card - Horizontal layout on desktop */
.hos-blog-card {
  background: var(--hos-ivory);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.02);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  height: 270px; /* Compact height for perfect 3-column grid layout */
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.hos-blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--hos-gold);
  box-shadow: 0 15px 40px rgba(17, 17, 17, 0.06);
}

/* Image Wrap - Strictly locked to 9:16 aspect ratio relative to card height */
.hos-blog-img-wrap {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background-color: var(--hos-sand);
}

.hos-blog-img-wrap img,
.hos-blog-img-wrap wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.hos-blog-card:hover .hos-blog-img-wrap img,
.hos-blog-card:hover .hos-blog-img-wrap wp-post-image {
  transform: scale(1.03);
}

/* Blog categories tag */
.hos-blog-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(156, 6, 40, 0.95); /* Velvet Maroon semi-transparent */
  color: var(--hos-ivory);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Info container */
.hos-blog-info {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  overflow: hidden;
}

/* Meta: Date / Read time */
.hos-blog-meta {
  display: flex;
  gap: 10px;
  font-size: 0.65rem;
  color: #888888;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hos-blog-title {
  font-family: var(--hos-font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hos-charcoal);
  line-height: 1.35;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hos-blog-card:hover .hos-blog-title {
  color: var(--hos-maroon);
}

/* Line clamp the summary to exactly 3 lines for visual structure */
.hos-blog-summary {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Read Story Link */
.hos-blog-readmore {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--hos-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.2rem;
  transition: color 0.3s ease;
}

.hos-blog-card:hover .hos-blog-readmore {
  color: var(--hos-maroon);
}

.hos-blog-readmore svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.hos-blog-card:hover .hos-blog-readmore svg {
  transform: translateX(4px);
}

/* Responsive Rules */
@media (max-width: 1023px) and (min-width: 768px) {
  .hos-blogs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .hos-blog-card {
    flex-direction: column;
    height: auto;
  }
  .hos-blog-img-wrap {
    width: 100%;
    aspect-ratio: 9 / 12;
  }
  .hos-blog-info {
    padding: 1.2rem;
  }
  .hos-blog-summary {
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 767px) {
  .hos-blogs-section {
    padding: 5rem 6%;
  }
  .hos-blogs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hos-blog-card {
    flex-direction: row;
    height: 190px;
  }
  .hos-blog-img-wrap {
    height: 100%;
    aspect-ratio: 9 / 16;
  }
  .hos-blog-info {
    padding: 1rem 1.2rem;
  }
  .hos-blog-title {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  .hos-blog-summary {
    display: none;
  }
  .hos-blog-readmore {
    margin-top: auto;
  }
}

/* ==========================================================================
   Luxury Typography Overrides for Dynamic Gutenberg Prose Blocks
   ========================================================================== */
.prose h1, .prose h2, .prose h3, .prose h4 {
    font-family: var(--hos-font-serif) !important;
    color: var(--hos-charcoal) !important;
    letter-spacing: 0.04em;
    font-weight: 600 !important;
}

.prose p {
    font-family: var(--hos-font-sans);
    line-height: 1.8 !important;
    color: #444444;
}

.prose blockquote {
    border-left-color: var(--hos-gold) !important;
    font-family: var(--hos-font-serif);
    font-style: italic;
    color: var(--hos-maroon) !important;
    background: rgba(239, 235, 228, 0.3);
    padding: 1.5rem 2rem !important;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0 !important;
}

.prose strong {
    color: var(--hos-maroon) !important;
}

.prose a {
    color: var(--hos-gold) !important;
    text-decoration-color: rgba(212, 175, 55, 0.4);
    font-weight: 600;
}

.prose a:hover {
    color: var(--hos-maroon) !important;
    text-decoration-color: var(--hos-maroon);
}


/* ==========================================================================
   Premium Blog Sidebar Widget Styling
   ========================================================================== */
.widget {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    box-shadow: 0 4px 20px rgba(17, 17, 17, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.widget-title {
    font-family: var(--hos-font-serif) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    color: var(--hos-maroon) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

/* List Widgets: Categories, Archives, Pages, Menus */
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    font-family: var(--hos-font-sans);
    font-size: 0.85rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.1);
    color: var(--hos-charcoal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget ul li:first-child {
    padding-top: 0;
}

.widget ul li a {
    color: var(--hos-charcoal);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.widget ul li a:hover {
    color: var(--hos-maroon);
    padding-left: 4px;
}

.widget ul li span.count {
    background: rgba(92, 6, 28, 0.08);
    color: var(--hos-maroon);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Search Widget */
.widget_search .search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.widget_search .search-field {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 0.75rem;
    font-family: var(--hos-font-sans);
    font-size: 0.85rem;
    background: var(--hos-ivory);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--hos-charcoal);
    outline: none;
    transition: border-color 0.3s ease;
}

.widget_search .search-field:focus {
    border-color: var(--hos-gold);
}

.widget_search .search-submit {
    position: absolute;
    right: 5px;
    background: var(--hos-maroon);
    color: var(--hos-ivory);
    border: none;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-family: var(--hos-font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.widget_search .search-submit:hover {
    background: var(--hos-maroon-dark);
}

/* Recent Posts widget specific styling */
.widget_recent_entries ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.widget_recent_entries ul li a {
    font-family: var(--hos-font-serif);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.3;
}

.post-date {
    font-size: 0.7rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ==========================================================================
   Luxury WooCommerce Global Custom Styling
   ========================================================================== */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    border-top-color: var(--hos-gold) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    font-family: var(--hos-font-sans) !important;
    font-size: 0.9rem !important;
}

.woocommerce-message a.button, .woocommerce-info a.button {
    background-color: var(--hos-maroon) !important;
    color: var(--hos-ivory) !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 600 !important;
}

/* Buttons Override */
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button, 
.woocommerce #respond input#submit,
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt, 
.woocommerce #respond input#submit.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #place_order {
    font-family: var(--hos-font-sans) !important;
    background-color: var(--hos-maroon) !important;
    color: var(--hos-ivory) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-size: 0.75rem !important;
    padding: 0.9rem 2rem !important;
    border-radius: 8px !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    transition: all 0.4s ease !important;
    cursor: pointer !important;
    display: inline-block !important;
    text-align: center !important;
    text-decoration: none !important;
}

.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover, 
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover, 
.woocommerce #respond input#submit.alt:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #place_order:hover {
    background-color: var(--hos-maroon-dark) !important;
    border-color: var(--hos-gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(92, 6, 28, 0.2) !important;
}

/* WooCommerce Price Tags */
.woocommerce ul.products li.product .price, 
.woocommerce div.product p.price,
.woocommerce ul.products li.product .price ins, 
.woocommerce div.product p.price ins,
.woocommerce ul.products li.product .price .amount, 
.woocommerce div.product p.price .amount {
    font-family: var(--hos-font-serif) !important;
    color: var(--hos-gold-dark) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price del {
    font-size: 0.85rem !important;
    opacity: 0.5 !important;
    color: var(--hos-charcoal) !important;
}

/* Product Catalog Grid Override */
.woocommerce ul.products li.product {
    background: var(--hos-ivory) !important;
    border: 1px solid rgba(212, 175, 55, 0.12) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    padding: 1rem !important;
    transition: all 0.3s ease !important;
}

.woocommerce ul.products li.product:hover {
    border-color: var(--hos-gold) !important;
    box-shadow: 0 10px 25px rgba(17, 17, 17, 0.03) !important;
    transform: translateY(-3px) !important;
}

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-family: var(--hos-font-serif) !important;
    font-size: 1rem !important;
    color: var(--hos-charcoal) !important;
    font-weight: 600 !important;
    margin-top: 0.75rem !important;
    margin-bottom: 0.5rem !important;
}

/* Rating Stars */
.woocommerce .star-rating span::before {
    color: var(--hos-gold) !important;
}

.woocommerce .star-rating::before {
    color: rgba(212, 175, 55, 0.2) !important;
}

/* Tabs layout in Product page */
.woocommerce-tabs ul.tabs {
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    background: transparent !important;
    margin: 0 0 0 0 !important;
    padding: 0 !important;
    display: flex !important;
    gap: 8px !important;
    list-style: none !important;
}

.woocommerce-tabs ul.tabs li {
    background: rgba(239, 235, 228, 0.45) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-bottom: none !important;
    border-radius: 8px 8px 0 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    top: 1px !important;
    z-index: 10 !important;
}

.woocommerce-tabs ul.tabs li a {
    font-family: var(--hos-font-serif) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    font-size: 0.78rem !important;
    color: #666666 !important;
    padding: 0.8rem 1.8rem !important;
    display: block !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.woocommerce-tabs ul.tabs li.active {
    background: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-bottom: 1px solid #ffffff !important;
    z-index: 15 !important;
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--hos-maroon) !important;
}

.woocommerce-tabs ul.tabs li:hover:not(.active) {
    background: rgba(239, 235, 228, 0.75) !important;
}

.woocommerce-tabs ul.tabs li:hover a {
    color: var(--hos-maroon) !important;
}

/* Cart & Checkout tables styling */
.shop_table {
    border-color: rgba(212, 175, 55, 0.15) !important;
    border-radius: 8px !important;
}

.shop_table th {
    font-family: var(--hos-font-serif) !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    background: var(--hos-sand) !important;
    border-color: rgba(212, 175, 55, 0.15) !important;
}

.shop_table td {
    border-color: rgba(212, 175, 55, 0.1) !important;
}

/* Fields & Forms */
.woocommerce input.input-text, 
.woocommerce textarea,
.select2-container--default .select2-selection--single {
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 6px !important;
    padding: 0.6rem 0.8rem !important;
    background-color: var(--hos-ivory) !important;
    font-family: var(--hos-font-sans) !important;
    outline: none !important;
}

.woocommerce input.input-text:focus, 
.woocommerce textarea:focus {
    border-color: var(--hos-gold) !important;
}


/* ==========================================================================
   Luxury WooCommerce Single Product Page Styling Override
   ========================================================================== */
.hos-single-product .product_title {
    font-family: var(--hos-font-serif) !important;
    color: var(--hos-charcoal) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    line-height: 1.25 !important;
    margin-bottom: 0.5rem !important;
}

.hos-single-product .price {
    font-family: var(--hos-font-serif) !important;
    color: var(--hos-gold-dark) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.hos-single-product .woocommerce-product-details__short-description p {
    font-family: var(--hos-font-sans) !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    color: #555555 !important;
}

/* Quantity Input Premium Styling */
.hos-single-product div.product form.cart div.quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 8px !important;
    background: var(--hos-ivory) !important;
    padding: 2px !important;
    margin-right: 1rem !important;
}

.hos-single-product div.product form.cart .quantity input.qty {
    width: 45px !important;
    height: 40px !important;
    background: transparent !important;
    border: none !important;
    font-family: var(--hos-font-sans) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: var(--hos-charcoal) !important;
    padding: 0 !important;
    outline: none !important;
}

/* Add to Cart button alignment */
.hos-single-product div.product form.cart .single_add_to_cart_button {
    height: 48px !important;
    padding: 0 2.5rem !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    background-color: var(--hos-maroon) !important;
    color: var(--hos-ivory) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-bottom: 4px solid var(--hos-maroon-dark) !important;
    font-weight: 700 !important;
    position: relative !important;
    top: 0 !important;
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(92, 6, 28, 0.12) !important;
}

.hos-single-product div.product form.cart .single_add_to_cart_button:hover {
    background-color: var(--hos-maroon) !important;
    border-color: var(--hos-gold) !important;
    border-bottom: 4px solid var(--hos-maroon-dark) !important;
    top: -2px !important;
    box-shadow: 0 6px 20px rgba(92, 6, 28, 0.25) !important;
}

.hos-single-product div.product form.cart .single_add_to_cart_button:active {
    top: 2px !important;
    border-bottom: 1px solid var(--hos-maroon-dark) !important;
    box-shadow: 0 2px 5px rgba(92, 6, 28, 0.1) !important;
}

/* Flex layout inside cart forms */
.hos-single-product div.product form.cart {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 2rem !important;
}

/* Trust Accordion detail markers removal and luxury styles */
.hos-trust-accordion details summary::-webkit-details-marker {
    display: none !important;
}

.hos-trust-accordion details summary {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    outline: none !important;
    user-select: none !important;
}

.hos-trust-accordion details {
    transition: all 0.3s ease;
}

.hos-trust-accordion details[open] {
    padding-bottom: 0.5rem;
}

/* Gallery main and thumbnail style alignments */
/* Gallery main and thumbnail style alignments */
.woocommerce div.product.hos-single-product div.images,
.woocommerce div.product.hos-single-product .woocommerce-product-gallery {
    float: none !important;
    width: 100% !important;
    margin-right: 0 !important;
    clear: both !important;
    overflow: visible !important;
    height: auto !important;
}

.woocommerce-product-gallery {
    position: relative !important;
}

.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    box-shadow: 0 8px 25px rgba(17, 17, 17, 0.02) !important;
}

.woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.woocommerce-product-gallery ol.flex-control-thumbs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 1.5rem !important;
    padding: 0 !important;
    list-style: none !important;
    float: none !important;
    width: 100% !important;
}

.woocommerce-product-gallery ol.flex-control-thumbs li {
    width: 80px !important;
    height: 80px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    float: none !important;
    margin: 0 !important;
    display: block !important;
    flex: 0 0 auto !important;
}

.woocommerce-product-gallery ol.flex-control-thumbs li img.flex-active,
.woocommerce-product-gallery ol.flex-control-thumbs li:hover {
    border-color: var(--hos-gold) !important;
    opacity: 1 !important;
}

.woocommerce-product-gallery ol.flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 0.7 !important;
    transition: opacity 0.3s ease !important;
    border-radius: 0 !important;
}

/* Override WooCommerce float logic to prevent right column horizontal overlap */
.woocommerce div.product.hos-single-product div.summary.entry-summary {
    float: none !important;
    width: 100% !important;
    margin-right: 0 !important;
    clear: both !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Meta list alignment */
.hos-single-product .product_meta {
    font-family: var(--hos-font-sans) !important;
    font-size: 0.7rem !important;
    color: #888888 !important;
}

.hos-single-product .product_meta span {
    display: block !important;
}

/* Product Specification Tabs and Reviews styling */
.hos-product-footer .woocommerce-tabs {
    margin-top: 4rem !important;
}

.hos-product-footer .woocommerce-tabs .woocommerce-Tabs-panel {
    background: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-top: none !important;
    border-radius: 0 12px 12px 12px !important;
    padding: 2.5rem !important;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.01) !important;
}

.hos-product-footer .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-family: var(--hos-font-serif) !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: var(--hos-maroon) !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Swiper Related Products Navigation Overrides */
.related-products-swiper .swiper-pagination-bullet-active {
    background: var(--hos-maroon) !important;
}

.related-prev,
.related-next {
    position: absolute !important;
    top: 45% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
}

.related-prev {
    left: -20px !important;
}

.related-next {
    right: -20px !important;
}

@media (max-width: 1024px) {
    .related-prev {
        left: -10px !important;
    }
    .related-next {
        right: -10px !important;
    }
}

@media (max-width: 768px) {
    .related-prev, .related-next {
        display: none !important; /* hide navigation buttons on mobile to support clean swipe gesture */
    }
}

.related-products-swiper .swiper-button-prev:after,
.related-products-swiper .swiper-button-next:after {
    font-size: 16px !important;
    font-weight: 800 !important;
}

/* ==========================================================================
   WooCommerce Flexslider Gallery Navigation Arrows
   ========================================================================== */
.woocommerce-product-gallery .flex-direction-nav {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
}

.woocommerce-product-gallery .flex-direction-nav li {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 30 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-product-gallery .flex-direction-nav li.flex-nav-prev {
    left: 20px !important;
}

.woocommerce-product-gallery .flex-direction-nav li.flex-nav-next {
    right: 20px !important;
}

.woocommerce-product-gallery .flex-direction-nav li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background-color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 50% !important;
    color: var(--hos-maroon) !important;
    text-indent: -9999px !important; /* Hide default text */
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.05) !important;
}

.woocommerce-product-gallery .flex-direction-nav li a:hover {
    background-color: #ffffff !important;
    border-color: var(--hos-gold) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 16px rgba(17, 17, 17, 0.1) !important;
}

.woocommerce-product-gallery .flex-direction-nav li a::before {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-indent: 0 !important;
    font-size: 18px !important;
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
    color: var(--hos-maroon) !important;
}

.woocommerce-product-gallery .flex-direction-nav li.flex-nav-prev a::before {
    content: "←" !important;
}

.woocommerce-product-gallery .flex-direction-nav li.flex-nav-next a::before {
    content: "→" !important;
}

/* ==========================================================================
   Custom Swiper Product Gallery Styles (v1.0.9 Update)
   ========================================================================== */
.hos-custom-gallery-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: visible !important;
}

.hos-custom-gallery-wrapper .product-main-swiper {
    width: 100% !important;
    overflow: hidden !important;
}

.hos-custom-gallery-wrapper .product-main-swiper .swiper-slide {
    aspect-ratio: 3 / 4 !important;
    overflow: hidden !important;
    width: 100% !important;
    display: block !important;
}

.hos-custom-gallery-wrapper .product-main-swiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
}

.hos-custom-gallery-wrapper .product-thumbs-swiper {
    width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
}

.hos-custom-gallery-wrapper .product-thumbs-swiper .swiper-slide {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    opacity: 0.6 !important;
}

.hos-custom-gallery-wrapper .product-thumbs-swiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}

.hos-custom-gallery-wrapper .product-thumbs-swiper .swiper-slide-thumb-active {
    border-color: var(--hos-gold) !important;
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2) !important;
}

/* Custom gallery swiper overlay navigation controls styling */
.hos-custom-gallery-wrapper .gallery-prev,
.hos-custom-gallery-wrapper .gallery-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 25 !important;
}

.hos-custom-gallery-wrapper .gallery-prev {
    left: 20px !important;
}

.hos-custom-gallery-wrapper .gallery-next {
    right: 20px !important;
}

.hos-custom-gallery-wrapper .swiper-button-prev:after,
.hos-custom-gallery-wrapper .swiper-button-next:after {
    font-size: 16px !important;
    font-weight: 800 !important;
}

/* ==========================================================================
   Global 95% Width Layout Override & Mobile Optimization
   ========================================================================== */
.container,
.hos-blogs-container,
.hos-footer-grid,
.hos-footer-bottom,
.hos-categories-carousel-container,
.hos-blogs-grid {
    width: 95% !important;
    max-width: 95% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {
    .container,
    .hos-blogs-container,
    .hos-footer-grid,
    .hos-footer-bottom,
    .hos-categories-carousel-container,
    .hos-blogs-grid,
    .hos-single-product {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Adjust header elements on mobile for full width alignment */
    .hos-main-header {
        padding: 0 12px !important;
    }
    .hos-announcement-bar {
        padding: 6px 12px !important;
    }

    /* Product Page Custom Swiper Gallery mobile overrides */
    .hos-custom-gallery-wrapper {
        padding: 0 !important;
    }
    .hos-custom-gallery-wrapper .product-main-swiper {
        border-radius: 8px !important;
    }
    .hos-custom-gallery-wrapper .product-thumbs-swiper {
        padding: 0 !important;
    }

    /* Right column info card mobile paddings */
    .hos-single-product .product-info-wrapper {
        padding: 1.25rem !important;
        border-radius: 12px !important;
    }

    /* Tab folder layout mobile margins and padding adjustments */
    .woocommerce-tabs ul.tabs {
        padding-left: 4px !important;
    }
    .woocommerce-tabs ul.tabs li a {
        padding: 0.6rem 1rem !important;
        font-size: 0.72rem !important;
    }
    .hos-product-footer .woocommerce-tabs .woocommerce-Tabs-panel {
        padding: 1.5rem 1rem !important;
        border-radius: 0 0 12px 12px !important;
    }
}

/* ==========================================================================
   Luxury PDP Features - WhatsApp, Bespoke Sizing, Artisan Heritage
   ========================================================================== */

/* WhatsApp Atelier Concierge Button */
.hos-whatsapp-btn {
    border: 1.5px solid #128C7E !important;
    background-color: transparent !important;
    color: #128C7E !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.hos-whatsapp-btn:hover {
    background-color: #128C7E !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.15) !important;
}

.hos-whatsapp-btn svg {
    stroke-width: 2px !important;
}

/* Bespoke Sizing Inputs */
.hos-bespoke-sizing-wrapper {
    background-color: rgba(239, 235, 228, 0.35) !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hos-bespoke-sizing-wrapper:hover {
    border-color: rgba(212, 175, 55, 0.35) !important;
    background-color: rgba(239, 235, 228, 0.5) !important;
}

#hosBespokeToggle {
    accent-color: var(--hos-maroon) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

#hosBespokeFields input {
    background-color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-radius: 6px !important;
    font-family: var(--hos-font-sans) !important;
    color: var(--hos-charcoal) !important;
    transition: all 0.3s ease;
}

#hosBespokeFields input:focus {
    border-color: var(--hos-gold) !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1) !important;
    outline: none !important;
}

/* Artisan Heritage Storytelling Banner */
.hos-artisan-heritage-banner {
    background-color: rgba(239, 235, 228, 0.25) !important;
    border: 1px solid rgba(212, 175, 55, 0.12) !important;
    border-radius: 24px !important;
}

.hos-artisan-heritage-banner h3 {
    font-family: var(--hos-font-serif) !important;
    color: var(--hos-maroon) !important;
    letter-spacing: 0.03em !important;
    font-weight: 700 !important;
}

.hos-artisan-heritage-banner p {
    font-family: var(--hos-font-sans) !important;
    color: #444444 !important;
}

.hos-artisan-heritage-banner img {
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.hos-artisan-heritage-banner:hover img {
    transform: scale(1.05) !important;
}

/* Custom Swiper Pagination for PDP Artisan Story */
.hos-pdp-artisan-pagination {
    background: rgba(17, 17, 17, 0.45) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(250, 249, 246, 0.15) !important;
    border-radius: 20px;
    padding: 6px 12px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto !important;
    height: auto !important;
}

.hos-pdp-artisan-pagination .swiper-pagination-bullet {
    background: var(--hos-ivory) !important;
    opacity: 0.5;
    margin: 0 !important;
    width: 6px;
    height: 6px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.hos-pdp-artisan-pagination .swiper-pagination-bullet-active {
    background: var(--hos-gold) !important;
    opacity: 1;
    width: 15px;
    border-radius: 3px;
}

/* Custom Artisan Journey Button styling */
.hos-pdp-artisan-btn {
    background-color: var(--hos-maroon) !important;
    color: var(--hos-ivory) !important;
    border: 1.5px solid var(--hos-maroon) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 15px rgba(92, 6, 28, 0.12) !important;
}

.hos-pdp-artisan-btn:hover {
    background-color: transparent !important;
    color: var(--hos-maroon) !important;
    border-color: var(--hos-maroon) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(92, 6, 28, 0.18) !important;
}

.hos-pdp-artisan-btn svg {
    transition: transform 0.3s ease !important;
}

.hos-pdp-artisan-btn:hover svg {
    transform: translateX(4px) !important;
}

/* Force related products Swiper gallery images to fill their aspect ratio boxes */
.related-products-swiper .swiper-slide a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Single Product Page Custom Layout Adjustments */
.hos-single-product .price,
.hos-single-product .price .amount {
    font-size: 1.8rem !important; /* Increase price font size by 20% */
}

/* Add to Cart full-width controls layout */
.hos-single-product div.product form.cart .single_add_to_cart_button {
    width: 100% !important;
    display: block !important;
}

.hos-single-product div.product form.cart div.quantity {
    margin-right: 0 !important;
    margin-bottom: 0.5rem !important;
}

/* Sticky Add to Cart Bar */
.hos-sticky-cart-bar {
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 -10px 30px rgba(17, 17, 17, 0.05) !important;
}

.hos-sticky-submit-btn {
    border-bottom: 3px solid var(--hos-maroon-dark) !important;
    position: relative !important;
    top: 0 !important;
    transition: all 0.15s ease !important;
}

.hos-sticky-submit-btn:hover {
    border-color: var(--hos-gold) !important;
    border-bottom-width: 3px !important;
    top: -1px !important;
}

.hos-sticky-submit-btn:active {
    top: 1px !important;
    border-bottom-width: 1px !important;
}

/* Force sticky add to cart bar image to fill container */
.woocommerce div.product .hos-sticky-cart-bar img,
.hos-sticky-cart-bar img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    display: block !important;
}



/* Single Product Page Section Spacing & Header Spacing Reductions */
.woocommerce-page #main-content {
    padding-top: var(--hos-header-height-offset, 106px) !important; /* pull page up slightly closer to sticky header */
}

.woocommerce-page .hos-single-product {
    padding-top: 1rem !important; /* decrease gap from main offset */
}

/* Reduce specification tabs top margin on product pages */
.woocommerce-page .hos-product-footer .woocommerce-tabs {
    margin-top: 2rem !important;
}

/* Reduce category carousel section top padding on product page layout */
/* Reduce category carousel section top padding on product page layout */
.woocommerce-page .hos-categories-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* ==========================================================================
   WooCommerce Category Pages Grid & Product Cards Redesign
   ========================================================================== */

/* Catch-all Wrapper Spacing */
.hos-woocommerce-wrapper {
    padding-top: var(--hos-header-height-offset, 106px) !important;
}

/* Category Title Styling */
.woocommerce-products-header__title,
.woocommerce-page .page-title {
    font-family: 'Cinzel', serif !important;
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: var(--hos-charcoal) !important;
    text-align: center !important;
    margin-bottom: 2.5rem !important;
    position: relative !important;
    padding-bottom: 0.75rem !important;
    border-bottom: none !important;
}

.woocommerce-products-header__title::after,
.woocommerce-page .page-title::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 2px !important;
    background-color: var(--hos-gold) !important;
}

/* Count & Ordering Controls Styling */
.woocommerce-result-count {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.85rem !important;
    color: #666666 !important;
    margin-bottom: 0 !important;
    float: none !important;
}

.woocommerce-ordering {
    margin-bottom: 0 !important;
    float: none !important;
}

.woocommerce-ordering select {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.85rem !important;
    color: var(--hos-charcoal) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    background-color: var(--hos-ivory) !important;
    padding: 0.5rem 2.5rem 0.5rem 1rem !important;
    border-radius: 8px !important;
    outline: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C5A059' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 1rem !important;
}

.woocommerce-ordering select:hover,
.woocommerce-ordering select:focus {
    border-color: var(--hos-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

/* Float alignments for Count & Sort controls */
.hos-woocommerce-wrapper > .woocommerce-result-count {
    float: left !important;
    line-height: 40px !important;
}

.hos-woocommerce-wrapper > .woocommerce-ordering {
    float: right !important;
}

/* Clearfix for controls */
.hos-woocommerce-wrapper::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

/* Reset default WooCommerce floated loop grid styles */
.woocommerce ul.products.hos-products-grid,
.woocommerce-page ul.products.hos-products-grid {
    display: grid !important;
    float: none !important;
    width: 100% !important;
    margin: 0.5rem auto 0 auto !important;
    clear: both !important;
}

/* Fix CSS Grid pseudo-element grid item bug (prevents empty first cell) */
.woocommerce ul.products.hos-products-grid::before,
.woocommerce ul.products.hos-products-grid::after,
.woocommerce-page ul.products.hos-products-grid::before,
.woocommerce-page ul.products.hos-products-grid::after {
    content: none !important;
    display: none !important;
}

.woocommerce ul.products.hos-products-grid li.product,
.woocommerce-page ul.products.hos-products-grid li.product,
.woocommerce ul.products.hos-products-grid li.hos-product-card,
.woocommerce-page ul.products.hos-products-grid li.hos-product-card {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
}

/* AJAX Add to Cart status styles */
.hos-loop-add-to-cart-btn.loading {
    opacity: 0.85 !important;
    position: relative !important;
    pointer-events: none !important;
}

.hos-loop-add-to-cart-btn.loading::after {
    content: "" !important;
    display: inline-block !important;
    width: 12px !important;
    height: 12px !important;
    border: 2px solid var(--hos-ivory) !important;
    border-top-color: transparent !important;
    border-radius: 50% !important;
    margin-left: 8px !important;
    animation: hos-spin 0.6s linear infinite !important;
    vertical-align: middle !important;
}

.woocommerce a.added_to_cart {
    display: block !important;
    text-align: center !important;
    font-size: 11px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    color: var(--hos-gold) !important;
    margin-top: 8px !important;
    letter-spacing: 0.1em !important;
    font-family: 'Outfit', sans-serif !important;
}

@keyframes hos-spin {
    to { transform: rotate(360deg); }
}

/* Controls responsive styles for tablet & mobile */
@media (max-width: 639px) {
    .hos-woocommerce-wrapper > .woocommerce-result-count {
        float: none !important;
        display: block !important;
        text-align: center !important;
        margin-bottom: 0.75rem !important;
        line-height: normal !important;
    }
    .hos-woocommerce-wrapper > .woocommerce-ordering {
        float: none !important;
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
    .woocommerce-ordering select {
        width: 100% !important;
        text-align: center !important;
    }
}

/* ==========================================================================
   WooCommerce Category Archive Banner & Grid Styling
   ========================================================================== */

/* WooCommerce Default Headers Hiding */
.woocommerce-products-header,
.woocommerce-products-header__title,
.woocommerce-archive-description {
    display: none !important;
}

/* Category Listing Header Typography & Banner Adjustments */
.hos-woocommerce-archive-header {
    margin-top: calc(-1 * var(--hos-header-height-offset, 126px)) !important;
    padding-top: calc(var(--hos-header-height-offset, 126px) + 2rem) !important;
    background-color: var(--hos-sand) !important;
    font-family: var(--hos-font-serif) !important;
}

.hos-woocommerce-archive-header h1 {
    font-family: 'Cinzel', serif !important;
    color: var(--hos-maroon) !important;
}

.hos-woocommerce-archive-header .hos-archive-description {
    font-family: 'Outfit', sans-serif !important;
    color: #666666 !important;
}

/* Hover Image Swap Smooth Transition Fallbacks */
.hos-product-card img {
    will-change: transform, opacity !important;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Ensure the secondary gallery image is positioned exactly on top and transitions smoothly */
.hos-product-card .absolute.inset-0 {
    z-index: 10 !important;
}

/* Add support for custom smooth scaling on hover */
.hos-product-card:hover img {
    transform: scale(1.04) !important;
}

.hos-product-card:hover img.absolute {
    opacity: 1 !important;
}

/* Atelier Concierge Grid Card Specific Styling */
.hos-atelier-banner-card {
    background-color: #FAF8F5 !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.hos-atelier-banner-card h3 {
    font-family: 'Cinzel', serif !important;
    color: var(--hos-maroon) !important;
}

.hos-atelier-banner-card p {
    font-family: 'Outfit', sans-serif !important;
    color: #666666 !important;
}

/* ==========================================================================
   Navigation & Pagination Styling (WooCommerce & WordPress Archives)
   ========================================================================== */

/* Pagination container alignment and margins */
.woocommerce-pagination,
.navigation.pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 4rem 0 2rem 0 !important;
    padding: 0 !important;
    clear: both !important;
}

/* Reset nested list formatting for WooCommerce pagination */
.woocommerce-pagination ul.page-numbers,
.navigation.pagination .nav-links {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important; /* Proper spacing between buttons */
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-pagination ul.page-numbers li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
}

/* Style the page number items (links and active spans) */
.woocommerce-pagination .page-numbers,
.navigation.pagination .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 6px !important;
    border-radius: 50% !important; /* Elegant circles */
    border: 1px solid rgba(17, 17, 17, 0.1) !important;
    background-color: transparent !important;
    color: var(--hos-charcoal) !important;
    font-family: var(--hos-font-sans) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    cursor: pointer !important;
}

/* Hover and active states */
.woocommerce-pagination .page-numbers:hover,
.navigation.pagination .page-numbers:hover {
    border-color: var(--hos-gold) !important;
    color: var(--hos-gold) !important;
    background-color: rgba(212, 175, 55, 0.05) !important;
}

/* Active Page Style: Solid Sivana Maroon background with Ivory text */
.woocommerce-pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
    background-color: var(--hos-maroon) !important;
    border-color: var(--hos-maroon) !important;
    color: var(--hos-ivory) !important;
    cursor: default !important;
    box-shadow: 0 4px 10px rgba(92, 6, 28, 0.15) !important;
}

/* Style the Prev / Next links to be pill shaped */
.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next,
.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
    width: auto !important;
    min-width: auto !important;
    padding: 0 1.25rem !important;
    border-radius: 9999px !important; /* Pill style */
    text-transform: uppercase !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    font-weight: 600 !important;
}

/* Ellipsis / Dots Styling */
.woocommerce-pagination .page-numbers.dots,
.navigation.pagination .page-numbers.dots {
    border-color: transparent !important;
    background-color: transparent !important;
    color: #888888 !important;
    cursor: default !important;
    pointer-events: none !important;
}

/* Spacing adjustment for WooCommerce product loop list and pagination boundary */
.hos-woocommerce-wrapper ul.products {
    margin-bottom: 2rem !important;
}

/* ==========================================================================
   WooCommerce My Account Section UI Redesign
   ========================================================================== */

/* Main My Account container padding and layout */
.woocommerce-account .hos-woocommerce-wrapper,
.woocommerce-account .hos-page-article {
    width: 95% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    padding-top: 3rem !important;
    padding-bottom: 5rem !important;
}

/* Two-column layout for desktop screens (Flexbox & Float Fallbacks) */
@media (min-width: 992px) {
    .woocommerce-account .woocommerce,
    .woocommerce-account .woocommerce-MyAccount-wrapper,
    .woocommerce-account .e-my-account {
        display: flex !important;
        flex-direction: row !important;
        align-items: start !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    .woocommerce-MyAccount-navigation {
        width: 25% !important;
        min-width: 25% !important;
        max-width: 25% !important;
        flex: 0 0 25% !important;
        float: left !important;
        margin-bottom: 0 !important;
    }
    
    .woocommerce-MyAccount-content {
        width: 70% !important;
        min-width: 70% !important;
        max-width: 70% !important;
        flex: 0 0 70% !important;
        float: right !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }
    
    /* Clearfix safety for floated layout inside main pages */
    .woocommerce-account .woocommerce::after,
    .woocommerce-account .hos-page-content::after {
        content: "" !important;
        display: table !important;
        clear: both !important;
    }
}

/* Navigation Sidebar Container Styling */
.woocommerce-MyAccount-navigation {
    width: 100% !important;
    float: none !important;
    margin-bottom: 2rem !important;
    background-color: var(--hos-sand) !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding: 1.25rem !important;
    border-radius: 4px !important;
}

/* Mobile Collapsible Navigation Menu Styling */
@media (max-width: 991px) {
    /* Style the navigation container as a dropdown trigger */
    .woocommerce-MyAccount-navigation {
        position: relative !important;
        cursor: pointer !important;
        padding: 0 !important; /* Reset padding to align active element */
        background-color: var(--hos-sand) !important;
        border: 1px solid rgba(212, 175, 55, 0.25) !important;
        border-radius: 4px !important;
        overflow: hidden !important;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    /* Add Down Chevron Icon in CSS */
    .woocommerce-MyAccount-navigation::after {
        content: "" !important;
        position: absolute !important;
        top: 24px !important; /* Centered in the 48px header item height */
        right: 1.5rem !important;
        width: 8px !important;
        height: 8px !important;
        border-right: 2px solid var(--hos-maroon) !important;
        border-bottom: 2px solid var(--hos-maroon) !important;
        transform: translateY(-60%) rotate(45deg) !important;
        transition: transform 0.3s ease !important;
        pointer-events: none !important;
    }

    /* Hide non-active links by default when closed */
    .woocommerce-MyAccount-navigation ul li {
        display: none !important;
    }

    /* Only show the active link when closed */
    .woocommerce-MyAccount-navigation ul li.is-active {
        display: block !important;
    }

    /* Adjust active menu link styling in closed state */
    .woocommerce-MyAccount-navigation ul li.is-active a {
        background-color: transparent !important;
        border-left: none !important;
        color: var(--hos-maroon) !important;
        font-weight: 600 !important;
        padding: 1rem 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    /* Open State styling */
    .woocommerce-MyAccount-navigation.is-open {
        overflow: visible !important;
        border-color: var(--hos-gold) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
    }

    /* Rotate arrow when open */
    .woocommerce-MyAccount-navigation.is-open::after {
        transform: translateY(-20%) rotate(-135deg) !important;
    }

    /* Show all items when open */
    .woocommerce-MyAccount-navigation.is-open ul li {
        display: block !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
    }

    .woocommerce-MyAccount-navigation.is-open ul li:last-child {
        border-bottom: none !important;
    }

    /* Style active item and links in open state */
    .woocommerce-MyAccount-navigation.is-open ul li a {
        padding: 0.9rem 1.5rem !important;
    }

    .woocommerce-MyAccount-navigation.is-open ul li.is-active a {
        background-color: #ffffff !important;
        border-left: 3px solid var(--hos-gold) !important;
        color: var(--hos-maroon) !important;
    }
}

/* Reset navigation list formatting */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
}

.woocommerce-MyAccount-navigation li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Individual Navigation Menu Links */
.woocommerce-MyAccount-navigation-link a {
    display: block !important;
    padding: 0.75rem 1.25rem !important;
    color: var(--hos-charcoal) !important;
    font-family: var(--hos-font-sans) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    border-left: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.woocommerce-MyAccount-navigation-link:hover a {
    color: var(--hos-gold) !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    padding-left: 1.5rem !important; /* Elegant slide on hover */
}

/* Active Navigation Menu Link */
.woocommerce-MyAccount-navigation-link.is-active a {
    color: var(--hos-maroon) !important;
    background-color: #ffffff !important;
    border-left: 2px solid var(--hos-gold) !important;
    font-weight: 600 !important;
    padding-left: 1.5rem !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
}

/* Content Area Panel Styling */
.woocommerce-MyAccount-content {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Custom spacing inside forms and dashboard blocks */
.woocommerce-MyAccount-content > p {
    font-family: var(--hos-font-sans) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555555 !important;
}

/* My Account Titles */
.woocommerce-MyAccount-content h3 {
    font-family: var(--hos-font-serif) !important;
    color: var(--hos-maroon) !important;
    font-size: 1.25rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
}

/* ==========================================
   Order & Download History Tables
   ========================================== */
.woocommerce-orders-table,
.woocommerce-MyAccount-downloads {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
    margin-bottom: 2rem !important;
}

.woocommerce-orders-table th,
.woocommerce-MyAccount-downloads th {
    font-family: var(--hos-font-serif) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    color: var(--hos-maroon) !important;
    background-color: var(--hos-sand) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding: 1rem !important;
    text-align: left !important;
}

.woocommerce-orders-table td,
.woocommerce-MyAccount-downloads td {
    font-family: var(--hos-font-sans) !important;
    font-size: 13px !important;
    padding: 1.25rem 1rem !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.05) !important;
    color: var(--hos-charcoal) !important;
    vertical-align: middle !important;
}

.woocommerce-orders-table tr:hover td,
.woocommerce-MyAccount-downloads tr:hover td {
    background-color: rgba(250, 248, 245, 0.5) !important;
}

/* Orders Table Action Button styling */
.woocommerce-orders-table .button.view,
.woocommerce-MyAccount-downloads .button {
    background-color: transparent !important;
    border: 1px solid var(--hos-maroon) !important;
    color: var(--hos-maroon) !important;
    font-family: var(--hos-font-sans) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    text-align: center !important;
}

.woocommerce-orders-table .button.view:hover,
.woocommerce-MyAccount-downloads .button:hover {
    background-color: var(--hos-maroon) !important;
    color: var(--hos-ivory) !important;
    box-shadow: 0 4px 8px rgba(92, 6, 28, 0.12) !important;
}

/* Order Status Badges Styling */
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status span {
    display: inline-block !important;
    font-family: var(--hos-font-sans) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 9999px !important;
}

/* Color definitions for different WooCommerce order statuses */
.woocommerce-orders-table__cell-order-status span.order-completed {
    background-color: #E2F0D9 !important;
    color: #385723 !important;
}

.woocommerce-orders-table__cell-order-status span.order-processing {
    background-color: #FFF2CC !important;
    color: #7F6000 !important;
}

.woocommerce-orders-table__cell-order-status span.order-pending,
.woocommerce-orders-table__cell-order-status span.order-on-hold {
    background-color: #FCE4D6 !important;
    color: #C65911 !important;
}

.woocommerce-orders-table__cell-order-status span.order-cancelled,
.woocommerce-orders-table__cell-order-status span.order-failed {
    background-color: #F8CBAD !important;
    color: #C00000 !important;
}

.woocommerce-orders-table__cell-order-status span.order-refunded {
    background-color: #EDEDED !important;
    color: #595959 !important;
}

/* ==========================================
   WooCommerce Forms, Inputs & Fieldsets
   ========================================== */
.woocommerce-account form.woocommerce-EditAccountForm,
.woocommerce-account form.woocommerce-address-fields__field-wrapper,
.woocommerce-account form.checkout {
    max-width: 700px !important;
}

.woocommerce-account .form-row {
    margin-bottom: 1.5rem !important;
}

.woocommerce-account .form-row label {
    display: block !important;
    font-family: var(--hos-font-sans) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #666666 !important;
    margin-bottom: 0.5rem !important;
}

/* Input boxes & dropdown selects styling */
.woocommerce-account .input-text,
.woocommerce-account select,
.woocommerce-account textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    background-color: #FAF8F5 !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding: 0.75rem 1rem !important;
    font-family: var(--hos-font-sans) !important;
    font-size: 13px !important;
    color: var(--hos-charcoal) !important;
    border-radius: 2px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.woocommerce-account .input-text:focus,
.woocommerce-account select:focus,
.woocommerce-account textarea:focus {
    border-color: var(--hos-gold) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08) !important;
}

/* Standard required asterisk styling */
.woocommerce-account .required {
    color: var(--hos-maroon) !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

/* Fieldset and legend */
.woocommerce-account fieldset {
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding: 1.5rem !important;
    margin-bottom: 2rem !important;
    border-radius: 4px !important;
    background-color: rgba(250, 248, 245, 0.3) !important;
}

.woocommerce-account fieldset legend {
    font-family: var(--hos-font-serif) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--hos-maroon) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding: 0 0.75rem !important;
}

/* Submit Buttons styling in forms */
.woocommerce-account form .button {
    background-color: var(--hos-maroon) !important;
    border: 1px solid var(--hos-maroon) !important;
    color: var(--hos-ivory) !important;
    font-family: var(--hos-font-serif) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    padding: 1rem 2.5rem !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 12px rgba(92, 6, 28, 0.15) !important;
}

.woocommerce-account form .button:hover {
    background-color: #ffffff !important;
    color: var(--hos-maroon) !important;
    box-shadow: 0 6px 16px rgba(92, 6, 28, 0.2) !important;
}

/* ==========================================
   Addresses Page Details
   ========================================== */
.woocommerce-Addresses {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-top: 1rem !important;
}

@media (min-width: 576px) {
    .woocommerce-Addresses {
        grid-template-columns: 1fr 1fr !important;
    }
}

.woocommerce-Address {
    background-color: #FAF8F5 !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding: 1.5rem !important;
    border-radius: 4px !important;
    position: relative !important;
}

.woocommerce-Address-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 1rem !important;
}

.woocommerce-Address-title h3 {
    margin: 0 !important;
}

.woocommerce-Address-title .edit {
    font-family: var(--hos-font-sans) !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 600 !important;
    color: var(--hos-maroon) !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
}

.woocommerce-Address-title .edit:hover {
    color: var(--hos-gold) !important;
}

.woocommerce-Address address {
    font-family: var(--hos-font-sans) !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
    color: #555555 !important;
    font-style: normal !important;
}

/* ==========================================
   Logged-out Customer Login & Registration forms
   ========================================== */
.woocommerce-account #customer_login {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 3.5rem !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

@media (min-width: 768px) {
    .woocommerce-account #customer_login {
        grid-template-columns: 1fr 1fr !important;
        position: relative !important;
    }
    
    /* Draw elegant vertical divider line between Login and Register columns */
    .woocommerce-account #customer_login::after {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 50% !important;
        width: 1px !important;
        background-color: rgba(212, 175, 55, 0.15) !important;
        transform: translateX(-50%) !important;
    }
}

.woocommerce-account #customer_login h2 {
    font-family: var(--hos-font-serif) !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--hos-maroon) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 2rem !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding-bottom: 0.75rem !important;
}

/* Keep remember-me checkbox and lost password aligned */
.woocommerce-form-login__rememberme {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-right: 2rem !important;
}

.woocommerce-form-login__rememberme label {
    display: inline !important;
    margin: 0 !important;
}

.woocommerce-LostPassword {
    margin-top: 1rem !important;
}

.woocommerce-LostPassword a {
    font-family: var(--hos-font-sans) !important;
    font-size: 12px !important;
    color: var(--hos-charcoal) !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
}

.woocommerce-LostPassword a:hover {
    color: var(--hos-gold) !important;
}

/* ==========================================================================
   Shopify-Style 3-Step Checkout Pages Redesign
   ========================================================================== */

/* Force all checkout fields and input containers to be full width */
.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-checkout .form-row-wide {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both !important;
}

/* Breadcrumbs navigation */
.hos-checkout-breadcrumbs span.step-nav-item {
    transition: color 0.3s ease;
}

.hos-checkout-breadcrumbs span.step-nav-item.active {
    font-weight: 700;
}

/* Steps wizard sections fade-in animation */
.hos-step-section {
    animation: hosFadeIn 0.4s ease-out;
}

@keyframes hosFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom error message labeling */
.hos-input-error {
    animation: hosSlideDown 0.25s ease-out;
}

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

/* Custom styled coupon notices */
#hos_coupon_error, #hos_coupon_success {
    animation: hosSlideDown 0.25s ease-out;
}

/* Input validation error highlight */
.woocommerce-invalid input,
.woocommerce-invalid select {
    border-color: #C00000 !important;
    background-color: #FFF5F5 !important;
}

/* Sticky summary custom scrollbar */
.hos-checkout-items-list::-webkit-scrollbar {
    width: 4px;
}
.hos-checkout-items-list::-webkit-scrollbar-track {
    background: transparent;
}
.hos-checkout-items-list::-webkit-scrollbar-thumb {
    background: rgba(17, 17, 17, 0.1);
    border-radius: 99px;
}

/* Hide native redundants */
#order_review_heading {
    display: none !important;
}

/* Payment gateway container refinements */
#payment {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    list-style: none !important;
    padding-left: 0 !important;
}

#payment ul.payment_methods li {
    background: #ffffff !important;
    border: 1.5px solid rgba(17, 17, 17, 0.05) !important;
    border-radius: 8px !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 0.75rem !important;
    transition: all 0.3s ease !important;
}

#payment ul.payment_methods li:hover {
    border-color: rgba(212, 175, 55, 0.2) !important;
}

#payment ul.payment_methods li input[type=radio] {
    float: left !important;
    margin-top: 4px !important;
    margin-right: 10px !important;
    accent-color: #5C061C !important;
}

#payment ul.payment_methods li label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    cursor: pointer !important;
}

#payment div.payment_box {
    background: #FAF8F5 !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    color: #555555 !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
    padding: 1rem !important;
    border-radius: 6px !important;
    margin-top: 10px !important;
    margin-bottom: 5px !important;
    box-shadow: none !important;
}

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

/* Style the native place order button inside step 3 */
#payment #place_order {
    width: 100% !important;
    display: block !important;
    background-color: #5C061C !important;
    border: 1px solid #5C061C !important;
    color: #ffffff !important;
    font-family: var(--hos-font-serif) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    padding: 1.15rem 2.5rem !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 15px rgba(92, 6, 28, 0.2) !important;
}

#payment #place_order:hover {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #5C061C !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
}

/* Shipping options container styling in step 2 */
#hos-shipping-methods-container ul#shipping_method {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

#hos-shipping-methods-container ul#shipping_method li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 12px !important;
    color: #111111 !important;
    background: #ffffff !important;
    border: 1px solid rgba(17, 17, 17, 0.05) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    cursor: pointer !important;
    transition: border-color 0.3s ease !important;
}

#hos-shipping-methods-container ul#shipping_method li:hover {
    border-color: rgba(212, 175, 55, 0.2) !important;
}

#hos-shipping-methods-container ul#shipping_method li input[type="radio"] {
    accent-color: #5C061C !important;
    margin: 0 !important;
}

#hos-shipping-methods-container ul#shipping_method li label {
    margin: 0 !important;
    cursor: pointer !important;
}




