/* ============================================
   GBM MOBILE REDESIGN — Premium Mobile Experience
   All styles scoped to max-width: 991px
   Desktop remains 100% untouched
   ============================================ */

/* ============================================
   GLOBAL MOBILE OVERRIDES
   ============================================ */
@media (max-width: 991px) {

  /* --- Mobile Design Tokens --- */
  :root {
    --m-radius-sm: 10px;
    --m-radius-md: 16px;
    --m-radius-lg: 20px;
    --m-radius-xl: 28px;
    --m-radius-pill: 50px;
    --m-space-xs: 6px;
    --m-space-sm: 12px;
    --m-space-md: 16px;
    --m-space-lg: 24px;
    --m-space-xl: 32px;
    --m-space-2xl: 48px;
    --m-shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.06);
    --m-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
    --m-shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.10);
    --m-sticky-height: 72px;
    --m-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* --- Body & Container --- */
  html,
  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100% !important;
    position: relative !important;
    -webkit-text-size-adjust: 100%;
  }

  .gbm-container {
    padding: 0 var(--m-space-md) !important;
  }

  /* --- Hide desktop-only elements on mobile --- */
  .gbm-mobile-desktop-only {
    display: none !important;
  }

  /* --- Show mobile-only elements --- */
  .gbm-mobile-only {
    display: block !important;
  }

  /* ============================================
     ANNOUNCEMENT BAR — MOBILE
     ============================================ */
  .gbm-announcement-bar {
    height: 28px !important;
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #F0F0F0 !important;
  }

  .gbm-announcement-inner {
    padding: 0 var(--m-space-sm) !important;
    gap: 8px !important;
  }

  .gbm-announcement-text {
    font-size: 9px !important;
    font-weight: 500 !important;
    color: #333 !important;
    letter-spacing: 0.3px !important;
  }

  .gbm-announcement-arrow {
    color: #999 !important;
    font-size: 14px !important;
    padding: 0 2px !important;
  }

  /* Black background & white text on mobile only, except on home page */
  body:not(.home) .gbm-announcement-bar {
    background-color: #000000 !important;
    border-bottom: 1px solid #000000 !important;
  }

  body:not(.home) .gbm-announcement-text {
    color: #FFFFFF !important;
  }

  body:not(.home) .gbm-announcement-arrow {
    color: #FFFFFF !important;
  }


  /* ============================================
     HEADER — MOBILE (Already handled, refinements)
     ============================================ */
  .gbm-header {
    box-shadow: none !important;
  }

  .gbm-mobile-mode-toggle a {
    color: #000000 !important;
    opacity: 1 !important;
  }

  .gbm-mobile-mode-toggle a.active {
    color: #FFFFFF !important;
    opacity: 1 !important;
  }

  .gbm-header.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06) !important;
  }

  /* ============================================
     FOOTER — MOBILE REFINEMENTS
     ============================================ */
  .gbm-footer {
    padding: 40px 0 0 !important;
  }

  .gbm-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding-bottom: 32px !important;
  }

  .gbm-footer-brand {
    text-align: center !important;
  }

  .gbm-footer-brand p {
    margin: 0 auto 24px !important;
    max-width: 100% !important;
  }

  .gbm-footer-social {
    justify-content: center !important;
    gap: 16px !important;
  }

  .gbm-footer-logo-wrap img {
    margin: 0 auto !important;
  }

  .gbm-footer-col h4 {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }

  .gbm-footer-col ul {
    font-size: 13px !important;
  }

  /* ============================================
     PRODUCT CARDS — MOBILE GLOBAL
     ============================================ */
  .gbm-product-card-figma {
    border: 1px solid #E5E5E5 !important;
    box-shadow: var(--m-shadow-card) !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    border-radius: var(--m-radius-md) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .gbm-product-card-figma:hover {
    transform: none !important;
    box-shadow: var(--m-shadow-card) !important;
  }

  .gbm-product-wishlist-btn {
    top: 8px !important;
    right: 8px !important;
    width: 30px !important;
    height: 30px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }

  .gbm-product-wishlist-btn img {
    width: 14px !important;
    height: 14px !important;
  }

  .gbm-product-image {
    background: #FFFFFF !important;
    border-radius: 0 !important;
    padding: 12px !important;
    margin-bottom: 0 !important;
    aspect-ratio: 1/1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .gbm-product-image img {
    max-width: 88% !important;
    max-height: 88% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: auto !important;
  }

  .gbm-product-card-info {
    text-align: left !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
  }

  .gbm-product-card-info .name {
    font-weight: 500 !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
    height: auto !important;
    line-height: 1.25 !important;
  }

  .gbm-product-card-info .price {
    font-weight: 600 !important;
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }

  .gbm-product-stars {
    justify-content: flex-start !important;
    margin-bottom: 8px !important;
    gap: 3px !important;
  }

  .gbm-product-stars .stars {
    font-size: 10px !important;
  }

  .gbm-product-stars .rating-text {
    font-size: 9px !important;
  }

  /* Revert text-align to center as requested */
  .gbm-products-grid .gbm-product-card-info {
    text-align: center !important;
  }

  .gbm-products-grid .gbm-product-stars {
    justify-content: center !important;
  }

  .gbm-buy-now-btn,
  .gbm-product-card-figma button[class*="buy"] {
    width: 100% !important;
    background: #000 !important;
    color: #FFF !important;
    border-radius: 4px !important;
    padding: 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border: none !important;
    letter-spacing: normal !important;
    min-height: 42px !important;
  }

  /* ============================================
     PRODUCTS GRID — MOBILE (2 columns)
     ============================================ */
  .gbm-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* ============================================
     BREADCRUMBS — MOBILE
     ============================================ */
  .gbm-breadcrumbs {
    font-size: 12px !important;
    padding: 12px 0 !important;
    margin-bottom: 0 !important;
    color: #999 !important;
    border-bottom: none !important;
  }

  .gbm-breadcrumb-sep {
    margin: 0 6px !important;
    opacity: 0.4 !important;
  }

  .gbm-breadcrumb-current {
    font-weight: 600 !important;
    color: #1A1A1A !important;
  }

  /* ============================================
     PAGE TITLES — MOBILE
     ============================================ */
  .gbm-shop-page-title {
    margin-bottom: 20px !important;
    margin-top: 8px !important;
  }

  .gbm-shop-page-title h1 {
    font-size: 28px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 4px !important;
  }

  .gbm-item-count {
    font-size: 14px !important;
    color: #999 !important;
  }

}

/* ============================================
   HOME PAGE — MOBILE
   ============================================ */
@media (max-width: 991px) {

  /* --- Hero Section --- */
  .gbm-hero {
    min-height: 100vh !important;
    max-height: none !important;
  }

  .gbm-hero-bg img {
    object-position: center center !important;
  }

  /* --- New Arrivals Section --- */
  #gbm-new-arrivals {
    padding: var(--m-space-xl) 0 !important;
  }

  #gbm-new-arrivals .gbm-section-header {
    margin-bottom: var(--m-space-lg) !important;
  }

  #gbm-new-arrivals .gbm-section-header h2 {
    font-size: 22px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
  }

  .gbm-products-grid.gbm-carousel-mode {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding-bottom: 4px !important;
    scroll-padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    /* Hide scrollbar Firefox */
    touch-action: auto !important;
    /* Enable horizontal swipe gesture */
    scroll-snap-type: x mandatory !important;
  }

  .gbm-products-grid.gbm-carousel-mode::-webkit-scrollbar {
    display: none !important;
    /* Hide scrollbar WebKit */
  }

  .gbm-products-grid.gbm-carousel-mode .gbm-product-card-figma {
    flex: 0 0 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: var(--m-radius-md) !important;
    background-color: #FFFFFF !important;
    box-sizing: border-box !important;
    padding: 12px 10px !important;
  }

  .gbm-products-grid.gbm-carousel-mode .gbm-product-card-figma .gbm-product-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Carousel controls styling adjustments for mobile */
  #gbm-new-arrivals .gbm-carousel-controls-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 16px !important;
    padding: 0 !important;
    gap: 16px !important;
  }

  #gbm-new-arrivals .gbm-carousel-controls-container .gbm-carousel-nav {
    display: flex !important;
    margin-bottom: 0 !important;
    gap: 8px !important;
    order: 2 !important;
  }

  #gbm-new-arrivals .gbm-carousel-controls-container .gbm-carousel-progress {
    order: 1 !important;
    flex: 1 !important;
  }

  /* Hide original layout if needed, though overriding should work */
  /* --- Decorative Divider --- */
  #gbm-new-arrivals+.gbm-container {
    padding: 0 var(--m-space-md) !important;
    margin-bottom: 0 !important;
  }

  /* --- Made to Be Worn Section (HIDDEN ON MOBILE) --- */
  .gbm-made-to-be-worn {
    display: none !important;
  }

  /* --- Mobile Promos Stacked --- */
  .gbm-mobile-promos {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .gbm-mobile-promo-card {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .gbm-mobile-promo-bg {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .gbm-mobile-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 32% var(--m-space-lg) var(--m-space-lg);
    color: #fff;
  }

  .gbm-mobile-promo-overlay .gbm-promo-subtitle {
    font-size: 20px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    margin-bottom: 4px !important;
    color: #fff !important;
    margin-top: 15px;
    font-family: var(--font-body) !important;
  }

  .gbm-mobile-promo-overlay .gbm-promo-title {
    font-size: 35px !important;
    text-transform: none !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
    color: #fff !important;
    font-family: var(--font-heading) !important;
    font-weight: bold;
    letter-spacing: 0.0px !important;
  }

  .gbm-mobile-promo-overlay .gbm-promo-text {
    font-size: 10px !important;
    line-height: 1.4 !important;
    margin-bottom: 24px !important;
    color: #fff !important;
    font-family: var(--font-body) !important;
  }

  .gbm-promo-btn-glass {
    display: inline-block;
    background: rgba(255, 255, 255, 0.65) !important;
    color: #333 !important;
    font-weight: 800 !important;
    font-size: 20px !important;
    padding: 14px 36px !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
  }

  .gbm-btn-pill-gray {
    font-size: 13px !important;
    padding: 14px 40px !important;
    border-radius: var(--m-radius-sm) !important;
  }

  /* --- Find Your Finish Categories --- */
  #gbm-find-finish {
    padding: var(--m-space-xl) 0 !important;
  }

  #gbm-find-finish h2 {
    font-size: 24px !important;
    margin-bottom: var(--m-space-lg) !important;
  }

  .gbm-categories-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 10px !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch;
  }

  .gbm-categories-grid::-webkit-scrollbar {
    display: none;
  }

  .gbm-category-card {
    flex: 0 0 42% !important;
    min-width: 150px !important;
    aspect-ratio: 3/4 !important;
    border-radius: var(--m-radius-md) !important;
    scroll-snap-align: start !important;
  }

  .gbm-category-card img {
    border-radius: var(--m-radius-md) !important;
  }

  .gbm-category-label {
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px !important;
    border-radius: 0 0 var(--m-radius-md) var(--m-radius-md) !important;
  }

  /* --- Trending Now Section --- */
  #gbm-trending-now {
    padding: var(--m-space-xl) 0 !important;
  }

  #gbm-trending-now h2 {
    font-size: 22px !important;
  }

  /* Hide top/bottom carousel nav on mobile */
  #gbm-trending-now .gbm-carousel-nav {
    display: none !important;
  }

  .gbm-trending-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding: 16px 0 !important;
    scroll-padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    scroll-snap-type: x mandatory !important;
  }

  .gbm-trending-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .gbm-trending-carousel .gbm-product-card-figma {
    flex: 0 0 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .gbm-trending-carousel .gbm-product-card-figma h3 {
    font-size: 12px !important;
    height: 30px !important;
  }

  .gbm-trending-carousel .gbm-product-card-figma .gbm-buy-now-btn,
  .gbm-trending-carousel .gbm-product-card-figma button[class*="buy"] {
    font-size: 12px !important;
    padding: 10px !important;
    border-radius: var(--m-radius-sm) !important;
  }

  /* --- Our Story Section --- */
  #gbm-our-story {
    padding: var(--m-space-xl) 0 !important;
  }

  .gbm-story-grid {
    grid-template-columns: 1fr !important;
    gap: var(--m-space-lg) !important;
  }

  .gbm-story-image-wrap {
    border-radius: var(--m-radius-md) !important;
    overflow: hidden !important;
  }

  .gbm-story-image-wrap .gbm-btn-pill-outline {
    font-size: 16px !important;
    padding: 10px 32px !important;
  }

  .gbm-story-content {
    padding: 0 !important;
    text-align: center !important;
  }

  .gbm-story-content h2 {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }

  .gbm-story-content p:first-of-type {
    font-size: 22px !important;
  }

  .gbm-story-content p:last-of-type {
    font-size: 14px !important;
  }

  /* Trust Badges — horizontal scroll */
  .gbm-trust-row {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    gap: 10px !important;
    margin-top: 24px !important;
    padding-bottom: 8px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gbm-trust-row::-webkit-scrollbar {
    display: none;
  }

  .gbm-trust-row>div {
    flex: 0 0 75% !important;
    min-width: 240px !important;
    border-radius: var(--m-radius-md) !important;
    padding: 16px !important;
    scroll-snap-align: start !important;
  }

  .gbm-trust-row h3 {
    font-size: 14px !important;
  }

  .gbm-trust-row p {
    font-size: 12px !important;
  }

  .gbm-trust-row svg {
    width: 32px !important;
    height: 32px !important;
  }
}

/* ============================================
   CART PAGE — MOBILE
   ============================================ */
@media (max-width: 991px) {

  .gbm-cart-page {
    padding-top: 0 !important;
    padding-bottom: 100px !important;
  }

  /* Cart title */
  .gbm-cart-page .gbm-shop-page-title h1 {
    font-size: 24px !important;
    font-weight: 800 !important;
  }

  .gbm-cart-page .gbm-shop-page-title {
    margin-bottom: 20px !important;
    margin-top: 8px !important;
  }

  /* Cart layout — single column */
  .gbm-cart-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
    padding: 0 !important;
  }

  /* Cart item rows — compact horizontal */
  .gbm-cart-item-row {
    border-radius: var(--m-radius-md) !important;
    padding: 14px !important;
    gap: 12px !important;
    border: 1px solid #F0F0F0 !important;
    box-shadow: var(--m-shadow-soft) !important;
  }

  .gbm-cart-item-image-box {
    width: 72px !important;
    height: 72px !important;
    border-radius: var(--m-radius-sm) !important;
    background: #FFFFFF !important;
    border: 1px solid #F0F0F0 !important;
  }

  .gbm-cart-item-image-box img {
    max-width: 90% !important;
    max-height: 90% !important;
  }

  .gbm-cart-item-main {
    width: calc(100% - 88px) !important;
    flex: none !important;
  }

  .gbm-cart-item-main h3 {
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }

  .gbm-cart-item-main>p {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
  }

  /* Qty + Price row */
  .gbm-cart-item-qty-price {
    width: 100% !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px solid #F5F5F5 !important;
    padding-top: 12px !important;
    min-width: 0 !important;
    gap: 12px !important;
  }

  .gbm-cart-qty-selector {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: var(--m-radius-sm) !important;
    height: 40px !important;
    border: 1px solid #E8E8E8 !important;
    background: #FFFFFF !important;
    box-sizing: border-box !important;
  }

  .gbm-qty-btn-minus,
  .gbm-qty-btn-plus {
    width: 40px !important;
    height: 100% !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    background: transparent !important;
    color: #000000 !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
  }

  .gbm-qty-input {
    width: 40px !important;
    height: 100% !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 38px !important;
    box-sizing: border-box !important;
    color: #000000 !important;
    -webkit-appearance: none !important;
  }

  /* Subtotal display */
  .gbm-cart-item-qty-price>div {
    gap: 16px !important;
  }

  .gbm-cart-item-qty-price>div>span {
    font-size: 16px !important;
    font-weight: 700 !important;
  }

  /* Delete icon */
  .gbm-cart-item-qty-price>div>a svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* Cart sidebar */
  .gbm-cart-sidebar {
    border-radius: var(--m-radius-lg) !important;
    padding: 20px !important;
    border: 1px solid #F0F0F0 !important;
    box-shadow: var(--m-shadow-soft) !important;
  }

  .gbm-cart-sidebar h2 {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }

  .gbm-cart-sidebar input[type="text"] {
    padding: 14px !important;
    border-radius: var(--m-radius-sm) !important;
    font-size: 14px !important;
  }

  .gbm-cart-sidebar label {
    padding: 8px 0 !important;
  }

  .gbm-cart-sidebar label span {
    font-size: 14px !important;
  }

  .gbm-cart-sidebar h3 {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Continue shopping link */
  .gbm-cart-items-wrap>div:last-child {
    margin-top: 20px !important;
  }

  .gbm-cart-items-wrap>div:last-child a {
    font-size: 14px !important;
  }

  /* --- Sticky Mobile Bottom Bar (Cart) --- */
  .gbm-mobile-sticky-cart {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #FFFFFF;
    border-top: 1px solid #F0F0F0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px var(--m-space-md);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .gbm-mobile-sticky-cart .gbm-sticky-total {
    display: flex;
    flex-direction: column;
  }

  .gbm-mobile-sticky-cart .gbm-sticky-total-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  .gbm-mobile-sticky-cart .gbm-sticky-total-amount {
    font-size: 20px;
    font-weight: 800;
    color: #1A1A1A;
  }

  .gbm-mobile-sticky-cart .gbm-sticky-checkout-btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 24px;
    background: #1A1A1A;
    color: #FFF;
    border: none;
    border-radius: var(--m-radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--m-transition);
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .gbm-mobile-sticky-cart .gbm-sticky-checkout-btn:hover {
    background: #333;
  }

  /* --- Mobile Trust Badges (Cart) --- */
  .gbm-mobile-trust-badges {
    display: flex !important;
    justify-content: center;
    gap: 20px;
    padding: 16px 0;
    margin-top: 16px;
    border-top: 1px solid #F5F5F5;
  }

  .gbm-mobile-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .gbm-mobile-trust-badge svg {
    width: 24px;
    height: 24px;
    color: #888;
  }

  .gbm-mobile-trust-badge span {
    font-size: 10px;
    color: #888;
    font-weight: 500;
    line-height: 1.2;
  }

  /* Cart "You May Also Like" section - Exact image match */
  .gbm-cart-page section:last-of-type {
    padding: 40px 0 !important;
  }

  .gbm-cart-page section:last-of-type h2 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #555 !important;
    margin-bottom: 24px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
  }

  .gbm-cart-page section:last-of-type .gbm-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 0 16px !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    flex-wrap: wrap !important;
    flex-direction: unset !important;
  }

  .gbm-cart-page section:last-of-type .gbm-product-card-figma {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 20px !important;
    background: #FFF !important;
    padding: 16px !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .gbm-cart-page section:last-of-type .gbm-product-card-figma .gbm-product-image {
    margin-bottom: 16px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 140px !important;
    background: none !important;
    overflow: visible !important;
    /* Allow the product shadow/bottle to show clearly */
  }

  .gbm-cart-page section:last-of-type .gbm-product-card-figma .gbm-product-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transform: none !important;
    /* No zoom to keep the full bottle visible with natural shadow */
  }

  .gbm-cart-page section:last-of-type .gbm-product-card-info {
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .gbm-cart-page section:last-of-type .gbm-product-card-info .name {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #444 !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .gbm-cart-page section:last-of-type .gbm-product-card-info .name a {
    color: #444 !important;
    text-decoration: none !important;
  }

  .gbm-cart-page section:last-of-type .gbm-product-card-info .price {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 0 !important;
    text-align: center !important;
  }

  .gbm-cart-page section:last-of-type .gbm-product-wishlist-btn,
  .gbm-cart-page section:last-of-type .gbm-buy-now-btn,
  .gbm-cart-page section:last-of-type .gbm-product-card-info .gbm-desktop-only {
    display: none !important;
  }
}

/* ============================================
   WISHLIST / FAVORITES PAGE — MOBILE
   ============================================ */
@media (max-width: 991px) {

  .gbm-favorites-page {
    padding-bottom: 60px !important;
  }

  .gbm-favorites-page .gbm-container {
    padding-top: 20px !important;
  }

  /* Title area */
  .gbm-favorites-page .gbm-shop-page-title {
    margin-bottom: 24px !important;
    border-bottom: 1px solid #F0F0F0 !important;
    padding-bottom: 16px !important;
  }

  .gbm-favorites-page .gbm-shop-page-title h1 {
    font-size: 24px !important;
    margin-bottom: 4px !important;
  }

  .gbm-favorites-page .gbm-shop-page-title p {
    font-size: 14px !important;
  }

  /* Wishlist grid — list-style horizontal cards */
  .gbm-favorites-page .gbm-products-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 40px !important;
  }

  .gbm-favorites-page .gbm-product-card-figma {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 12px !important;
    border-radius: var(--m-radius-md) !important;
    gap: 14px !important;
    min-height: auto !important;
  }

  .gbm-favorites-page .gbm-product-card-figma .gbm-product-wishlist-btn {
    display: none !important;
  }

  .gbm-favorites-page .gbm-product-card-figma .gbm-product-image {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
    aspect-ratio: auto !important;
    border-radius: var(--m-radius-sm) !important;
    background: #F8F8F8 !important;
    padding: 6px !important;
  }

  .gbm-favorites-page .gbm-product-card-figma .gbm-product-image a {
    width: 100% !important;
    height: 100% !important;
  }

  .gbm-favorites-page .gbm-product-card-figma .gbm-product-card-info {
    flex: 1 !important;
    padding: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .gbm-favorites-page .gbm-product-card-info .name {
    height: auto !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
  }

  .gbm-favorites-page .gbm-product-card-info .price {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }

  .gbm-favorites-page .gbm-product-card-info .gbm-product-stars {
    margin-bottom: 4px !important;
    justify-content: flex-start !important;
  }

  /* Action buttons — column layout stacked vertically */
  .gbm-favorites-page .gbm-product-card-info>div:last-child {
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 12px !important;
    width: 100% !important;
  }

  .gbm-favorites-page .gbm-buy-now-btn {
    width: 100% !important;
    flex: none !important;
    font-size: 12px !important;
    padding: 10px 12px !important;
    border-radius: 30px !important;
    min-height: 38px !important;
    box-sizing: border-box !important;
    text-transform: uppercase !important;
  }

  .gbm-favorites-page .gbm-fav-remove-btn {
    width: 100% !important;
    flex: none !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
    border-radius: 30px !important;
    margin-top: 0 !important;
    min-height: 36px !important;
    box-sizing: border-box !important;
    border: 1px solid #DDD !important;
    background: transparent !important;
    color: #666 !important;
  }

  /* --- Empty State --- */
  .gbm-favorites-empty {
    padding: 48px 24px !important;
    border-radius: var(--m-radius-lg) !important;
    margin-top: 20px !important;
    text-align: center !important;
    flex-direction: column !important;
  }

  .gbm-favorites-empty>div {
    flex-direction: column !important;
    gap: 24px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .gbm-favorites-empty>div>div:first-child {
    flex: none !important;
  }

  .gbm-favorites-empty>div>div:first-child svg {
    width: 200px !important;
    height: 160px !important;
  }

  .gbm-favorites-empty>div>div:last-child {
    min-width: auto !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .gbm-favorites-empty h3 {
    font-size: 24px !important;
    margin-bottom: 12px !important;
  }

  .gbm-favorites-empty p {
    font-size: 14px !important;
    margin-bottom: 24px !important;
    line-height: 1.5 !important;
  }

  .gbm-favorites-empty .gbm-buy-now-btn {
    width: auto !important;
    padding: 14px 48px !important;
    font-size: 14px !important;
    border-radius: var(--m-radius-pill) !important;
  }
}

/* ============================================
   SHOP / ARCHIVE PAGE — MOBILE
   ============================================ */
@media (max-width: 991px) {

  .gbm-shop {
    padding-top: 20px !important;
  }

  /* Shop layout — single column */
  .gbm-shop-layout,
  .gbm-shop-layout.gbm-has-sidebar {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 0 !important;
  }

  /* --- Mobile Filter Bar (sticky) --- */
  .gbm-mobile-filter-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-bottom: 12px;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: #FFF;
    border-bottom: 1px solid #F0F0F0;
  }

  .gbm-mobile-filter-bar .gbm-filter-label-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #F5F5F5;
    border: none;
    border-radius: var(--m-radius-pill);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .gbm-mobile-filter-bar .gbm-filter-label-btn svg {
    width: 16px;
    height: 16px;
  }

  .gbm-sort-select-wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .gbm-sort-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 8px 30px 8px 16px !important;
    background: #FFFFFF !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: var(--m-radius-pill) !important;
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555 !important;
    cursor: pointer !important;
    outline: none !important;
    width: auto !important;
  }

  .gbm-sort-select-wrap::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    right: 14px !important;
    top: 52% !important;
    transform: translateY(-50%) !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 5px solid #555 !important;
    pointer-events: none !important;
  }

  /* --- Category Pills (horizontal scroll) --- */
  .gbm-mobile-category-pills {
    display: flex !important;
    overflow-x: auto;
    gap: 8px;
    padding: 0 0 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .gbm-mobile-category-pills::-webkit-scrollbar {
    display: none;
  }

  .gbm-mobile-category-pills .gbm-cat-pill {
    flex-shrink: 0;
    padding: 8px 17px;
    border-radius: var(--m-radius-pill);
    border: 1px solid #E0E0E0;
    background: #FFF;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--m-transition);
    scroll-snap-align: start;
  }

  .gbm-mobile-category-pills .gbm-cat-pill.active,
  .gbm-mobile-category-pills .gbm-cat-pill:active {
    background: #1A1A1A;
    color: #FFF;
    border-color: #1A1A1A;
  }

  /* Desktop sidebar — hidden on mobile */
  .gbm-shop-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 300px !important;
    height: 100vh !important;
    background: #FFF !important;
    z-index: 10000 !important;
    padding: 24px !important;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.12) !important;
    border-right: none !important;
  }

  .gbm-shop-sidebar.open {
    left: 0 !important;
  }

  /* Filter toggle button */
  .gbm-filter-toggle {
    display: none !important;
  }

  /* Shop products grid — single centered card on mobile */
  .gbm-shop-content .gbm-products-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    justify-items: center !important;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .gbm-shop-content .gbm-products-grid .gbm-product-card-figma {
    width: 100% !important;
    max-width: 340px !important;
    border: 1px solid #D0D0D0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  /* --- Gold Pagination --- */
  .gbm-gold-pagination {
    border-radius: var(--m-radius-md) !important;
    margin: 20px 10px !important;
    padding: 10px 16px !important;
    box-sizing: border-box !important;
    width: calc(100% - 32px) !important;
    max-width: 340px !important;
    display: block !important;
  }

  .gbm-gold-pagination-inner {
    font-size: 13px !important;
    gap: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  /* Category banner */
  .gbm-category-banner {
    height: 140px !important;
    border-radius: var(--m-radius-md) !important;
    overflow: hidden !important;
    margin-bottom: 16px !important;
  }
}

/* ============================================
   SINGLE PRODUCT PAGE — MOBILE
   ============================================ */
@media (max-width: 991px) {

  .gbm-single-product {
    padding-top: 16px !important;
    padding-bottom: 100px !important;
  }

  /* Product detail grid — single column */
  .gbm-product-detail {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 0 24px !important;
    margin-top: 0 !important;
    border-bottom: none !important;
  }

  /* Gallery */
  .gbm-product-gallery {
    position: static !important;
  }

  .gbm-gallery-carousel {
    border-radius: var(--m-radius-md) !important;
    margin-bottom: 12px !important;
    background: #FFFFFF !important;
    aspect-ratio: 3 / 4 !important;
  }

  .gbm-carousel-slide img {
    border-radius: var(--m-radius-sm) !important;
  }

  /* Thumbnail strip */
  .gbm-gallery-thumbs-wrap {
    gap: 8px !important;
  }

  .gbm-gallery-thumbs {
    overflow-x: auto !important;
    gap: 8px !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .gbm-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gbm-gallery-thumb {
    width: 64px !important;
    height: 64px !important;
    border-radius: var(--m-radius-sm) !important;
    flex-shrink: 0 !important;
  }

  /* Hide arrow next to thumbnails */
  .gbm-gallery-thumbs-wrap>span {
    display: none !important;
  }

  /* Product info */
  .gbm-product-detail-info {
    padding-top: 0 !important;
    text-align: center !important;
  }

  .gbm-product-detail-info h2 {
    font-size: 26px !important;
    margin-bottom: 2px !important;
    text-align: center !important;
  }

  .gbm-product-detail-info>p {
    font-size: 16px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }

  /* Action bar */
  .gbm-product-action-bar {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 0 !important;
    gap: 16px !important;
  }

  .gbm-product-price-single {
    font-size: 28px !important;
    font-weight: 700 !important;
  }

  .gbm-product-actions-btns {
    width: 100% !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .gbm-product-actions-btns .gbm-btn-account {
    flex: 1 !important;
    font-size: 14px !important;
    padding: 14px 24px !important;
    border-radius: var(--m-radius-sm) !important;
  }

  .gbm-product-actions-btns .gbm-product-wishlist-btn {
    position: static !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: var(--m-radius-sm) !important;
    box-shadow: none !important;
    border: 1px solid #DDD !important;
  }

  /* Description */
  .gbm-product-description-section {
    text-align: left !important;
    padding: 0 4px !important;
  }

  .gbm-product-description-section h3 {
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }

  .gbm-product-description-section div {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  /* Quantity section */
  .gbm-product-quantity-section {
    display: flex !important;
    justify-content: center !important;
    padding-top: 20px !important;
    border-top: 1px solid #F0F0F0 !important;
  }

  .gbm-quantity-control-figma {
    gap: 8px !important;
  }

  .gbm-qty-minus-figma,
  .gbm-qty-plus-figma {
    width: 40px !important;
    height: 40px !important;
    border-radius: var(--m-radius-sm) !important;
    font-size: 20px !important;
  }

  .gbm-qty-input-box {
    width: 48px !important;
    height: 40px !important;
    border-radius: var(--m-radius-sm) !important;
  }

  .gbm-qty-input-box .gbm-qty-input {
    font-size: 18px !important;
    height: 100% !important;
    width: 100% !important;
    line-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-weight: 700 !important;
    box-sizing: border-box !important;
  }

  /* --- Sticky Mobile Bottom Bar (Product) --- */
  .gbm-mobile-sticky-product {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #FFFFFF;
    border-top: 1px solid #F0F0F0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px var(--m-space-md);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .gbm-mobile-sticky-product .gbm-sticky-price {
    font-size: 22px;
    font-weight: 800;
    color: #1A1A1A;
    white-space: nowrap;
  }

  .gbm-mobile-sticky-product .gbm-sticky-add-btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 24px;
    background: #1A1A1A;
    color: #FFF;
    border: none;
    border-radius: var(--m-radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--m-transition);
    text-align: center;
  }

  .gbm-mobile-sticky-product .gbm-sticky-add-btn:hover {
    background: #333;
  }

  /* Related products ("You May Also Like") */
  .gbm-single-product section:last-of-type {
    padding: 32px 0 !important;
  }

  .gbm-single-product section:last-of-type h2 {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }

  .gbm-single-product section:last-of-type .gbm-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Hide gold pagination bar on single product */
  .gbm-single-product+div[style*="background:#D4AF7A"] {
    display: none !important;
  }
}

/* ============================================
   HIDE MOBILE-ONLY ELEMENTS ON DESKTOP
   ============================================ */
.gbm-mobile-sticky-cart,
.gbm-mobile-sticky-product,
.gbm-mobile-trust-badges,
.gbm-mobile-filter-bar,
.gbm-mobile-category-pills {
  display: none;
}

/* ============================================
   SMOOTH SCROLL BEHAVIOR FOR CAROUSELS
   ============================================ */
@media (max-width: 991px) {

  .gbm-categories-grid,
  .gbm-trending-carousel,
  .gbm-products-grid.gbm-carousel-mode,
  .gbm-trust-row,
  .gbm-mobile-category-pills {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
}

/* ============================================
   ADDITIONAL MOBILE POLISH
   ============================================ */
@media (max-width: 991px) {

  /* Smooth hover/active states for touch */
  .gbm-buy-now-btn:active,
  .gbm-cat-pill:active,
  .gbm-product-card-figma:active {
    opacity: 0.85;
    transform: scale(0.98);
  }

  /* Better input focus states */
  input[type="text"]:focus,
  input[type="search"]:focus,
  input[type="number"]:focus {
    outline: none !important;
    border-color: #1A1A1A !important;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08) !important;
  }

  /* Prevent horizontal overflow */
  .gbm-container,
  .gbm-shop,
  .gbm-single-product,
  .gbm-cart-page,
  .gbm-favorites-page {
    overflow-x: hidden;
  }

  /* Consistent section spacing */
  section[class*="gbm-"] {
    overflow-x: hidden;
  }

  /* Mobile search bar on non-home pages */
  .gbm-header.scrolled .gbm-mobile-search-input-wrap {
    background: rgba(245, 245, 245, 0.95) !important;
    border: 1px solid #E0E0E0 !important;
  }

  .gbm-header.scrolled .gbm-mobile-search-input-wrap svg {
    color: #666 !important;
  }

  .gbm-header.scrolled .gbm-mobile-search-input-wrap input {
    color: #333 !important;
  }

  .gbm-header.scrolled .gbm-mobile-search-input-wrap input::placeholder {
    color: #999 !important;
  }

  /* Non-home pages: search bar styling */
  body:not(.home) .gbm-mobile-search-input-wrap {
    background: transparent !important;
    border: 1px solid #E0E0E0 !important;
  }

  body:not(.home) .gbm-mobile-search-input-wrap input {
    color: #1A1A1A !important;
  }

  body:not(.home) .gbm-mobile-search-input-wrap svg {
    stroke: #1A1A1A !important;
  }

  body:not(.home) .gbm-mobile-search-input-wrap input::placeholder {
    color: #999 !important;
  }

  /* --- Find Your Finish (Mobile Re-design) --- */
  .gbm-categories-section {
    display: none !important;
  }

  .gbm-mobile-find-finish {
    display: block !important;
    padding: 40px 16px 32px !important;
    background: #F5F5F5;
    text-align: center;
  }

  .gbm-mobile-finish-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 5px !important;
    color: #1A1A1A !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    font-family: var(--font-heading) !important;
  }

  .gbm-mobile-finish-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .gbm-mobile-finish-card {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
  }

  .gbm-mobile-finish-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .gbm-mobile-finish-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.92);
    color: #1A1A1A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: var(--font-body);
  }

  .gbm-mobile-finish-footer {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    font-style: italic !important;
    font-weight: 400 !important;
    margin-top: 8px !important;
  }

  /* --- Shop The Look (Mobile Re-design) --- */
  .gbm-trending-section {
    display: none !important;
  }

  .gbm-mobile-shop-look {
    display: block !important;
    background: #fff;
    padding-bottom: 32px;
  }

  .gbm-mobile-shop-look-image {
    padding: 0 16px;
    margin-bottom: 16px;
  }

  .gbm-mobile-shop-look-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
  }

  .gbm-mobile-shop-look-text {
    padding: 0 24px;
    margin-bottom: 24px;
  }

  .gbm-mobile-shop-look-text p {
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #888 !important;
    text-align: center;
    margin: 0;
  }

  .gbm-mobile-shop-look-banner {
    background: #EEEEEE;
    padding: 16px 0;
    text-align: center;
    margin-bottom: 24px;
  }

  .gbm-mobile-shop-look-banner h2 {
    margin: 0;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #444 !important;
  }

  .gbm-mobile-shop-look-perks {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .gbm-mobile-perk-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    background: #fff;
  }

  .gbm-mobile-perk-icon {
    flex: 0 0 40px;
    margin-right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gbm-mobile-perk-icon img {
    width: 32px;
    height: auto;
    display: block;
  }

  .gbm-mobile-perk-content h3 {
    margin: 0 0 4px 0 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #555 !important;
    letter-spacing: 0.5px;
  }

  .gbm-mobile-perk-content p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #777 !important;
    font-style: italic;
  }

  /* --- Hide Elements on Mobile --- */
  .gbm-story-section,
  .gbm-footer {
    display: none !important;
  }

  /* --- Mobile Footer (Re-design) --- */
  .gbm-mobile-footer {
    display: block !important;
    background: #737373;
    /* Match the gray background */
    color: #fff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 32px 20px;
    font-family: var(--font-body);
    overflow: hidden;
  }

  .gbm-mobile-footer-top {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
  }

  .gbm-mobile-footer-logo {
    flex: 0 0 35%;
  }

  .gbm-mobile-footer-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .gbm-mobile-footer-info {
    flex: 1;
  }

  .gbm-mobile-newsletter {
    position: relative;
    margin-bottom: 16px;
  }

  .gbm-mobile-newsletter input {
    width: 100%;
    padding: 10px 60px 10px 12px;
    border-radius: 8px;
    border: none;
    font-size: 12px;
    color: #333;
  }

  .gbm-mobile-newsletter button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    padding: 0;
    cursor: pointer;
  }

  .gbm-mobile-subscribe-text {
    font-size: 10px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 24px !important;
  }

  .gbm-mobile-contact-social {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .gbm-mobile-contact-col {
    font-size: 10px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
  }

  .gbm-mobile-contact-col strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
  }

  .gbm-mobile-social-col {
    font-size: 10px;
    text-align: right;
  }

  .gbm-mobile-social-col strong {
    color: #fff;
    display: block;
    margin-bottom: 8px;
  }

  .gbm-mobile-social-icons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
  }

  .gbm-mobile-social-icons a {
    color: #fff;
  }

  .gbm-mobile-footer-accordions {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
  }

  .gbm-mobile-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .gbm-mobile-accordion-header {
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .gbm-mobile-accordion-header .arrow {
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
  }

  .gbm-mobile-footer-watermark {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    color: rgba(255, 255, 255, 0.15);
    text-transform: capitalize;
    margin-bottom: 24px;
    font-family: var(--font-heading);
  }

  .gbm-mobile-footer-copyright {
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
  }

  /* --- Mobile Cart Redesign --- */
  .gbm-desktop-only {
    display: none !important;
  }

  .gbm-mobile-only {
    display: flex !important;
  }

  .gbm-mobile-only.gbm-trust-badges,
  .gbm-mobile-trust-badges {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding: 16px 8px !important;
    border: 1px solid #EAEAEA !important;
    border-radius: 12px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: visible !important;
    background: #FFF !important;
    text-align: center !important;
  }

  .gbm-mobile-trust-badges>div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
  }

  /* Masquer les barres de séparation verticales sur mobile */
  .gbm-mobile-trust-badges>div[style*="width:1px"] {
    display: none !important;
  }

  .gbm-mobile-trust-badges svg {
    width: 22px !important;
    height: 22px !important;
    color: #333 !important;
    margin-bottom: 2px !important;
    flex-shrink: 0 !important;
  }

  .gbm-mobile-trust-badges div>div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .gbm-mobile-trust-badges div>div>div:first-child {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #000 !important;
    line-height: 1.2 !important;
    margin-bottom: 2px !important;
    white-space: normal !important;
  }

  .gbm-mobile-trust-badges div>div>div:last-child {
    font-size: 8px !important;
    color: #666 !important;
    line-height: 1.2 !important;
  }

  .gbm-mobile-only.gbm-summary-line {
    display: flex !important;
  }

  .gbm-mobile-only.gbm-promo-wrap {
    display: flex !important;
  }

  .gbm-mobile-only.gbm-continue-shopping-btn {
    display: block !important;
  }

  .gbm-mobile-only.gbm-sticky-checkout {
    display: flex !important;
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 16px 20px;
    z-index: 9999;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .gbm-cart-page {
    padding-bottom: 100px !important;
    /* Space for sticky footer */
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  h1.gbm-cart-main-title {
    font-size: 28px !important;
  }

  p.gbm-item-count {
    font-size: 16px !important;
    margin-top: 4px !important;
  }

  /* Convert cart item row to card */
  .gbm-cart-item-row {
    display: grid !important;
    grid-template-columns: 80px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 16px !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    background: #FFF !important;
    position: relative !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .gbm-cart-item-image-box {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 3 !important;
    width: 80px !important;
    height: 80px !important;
    background: #F9F9F9 !important;
    border-radius: 8px !important;
  }

  .gbm-cart-item-main {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
    padding-right: 30px !important;
    /* space for trash */
    min-width: 0 !important;
  }

  .gbm-cart-item-main h3 {
    font-size: 14px !important;
    margin-bottom: 4px !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .gbm-cart-item-main p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
    font-weight: 500 !important;
  }

  .gbm-cart-item-main .gbm-cart-item-ref {
    font-size: 11px !important;
    color: #999 !important;
    margin-bottom: 6px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
  }

  .gbm-cart-item-main>div {
    /* hide rating on mobile cart */
    display: none !important;
  }

  .gbm-cart-item-qty-price {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-width: 0 !important;
  }

  .gbm-cart-item-qty-price>div {
    gap: 0 !important;
    flex-wrap: wrap !important;
  }

  .gbm-cart-trash-icon {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    font-size: 20px !important;
    color: #000 !important;
  }

  .gbm-cart-qty-selector {
    border: 1px solid #EEE !important;
    border-radius: 20px !important;
    padding: 2px 8px !important;
  }

  /* You may also like 2 columns */
  .gbm-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .gbm-products-grid .gbm-product-card-figma {
    padding: 16px 12px !important;
    border-radius: 16px !important;
    text-align: center !important;
  }

  .gbm-products-grid .gbm-product-card-figma .gbm-cross-info {
    text-align: center !important;
  }

  .gbm-products-grid .gbm-product-card-figma h3.gbm-cross-title {
    font-size: 13px !important;
    height: auto !important;
    margin-bottom: 8px !important;
    color: #555 !important;
  }

  .gbm-products-grid .gbm-product-card-figma p.gbm-cross-price {
    font-size: 16px !important;
    margin-bottom: 0 !important;
  }

  .gbm-products-grid .gbm-product-card-figma button.gbm-ajax-add-to-cart {
    font-size: 12px !important;
    padding: 8px !important;
  }

  .gbm-products-grid .gbm-product-wishlist-btn {
    top: 10px !important;
    right: 10px !important;
    width: 28px !important;
    height: 28px !important;
  }

  .gbm-products-grid .gbm-product-wishlist-btn img {
    width: 14px !important;
    height: 14px !important;
  }

  /* Order Summary styling */
  .gbm-order-summary-block {
    margin-bottom: 20px !important;
  }

  @media (max-width: 991px) {

    /* Stack checkout columns */
    .gbm-checkout-layout {
      grid-template-columns: 1fr !important;
      gap: 30px !important;
    }

    /* Remove sticky on mobile */
    .gbm-checkout-summary-inner {
      position: static !important;
      top: auto !important;
    }

    /* Reduce page title size */
    .gbm-checkout-page .gbm-page-title {
      font-size: 32px !important;
    }

    /* Steps adapt to vertical layout */
    .gbm-checkout-steps {
      flex-wrap: wrap;
      gap: 10px;
    }

    .gbm-step {
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .gbm-step-num {
      width: 28px !important;
      height: 28px !important;
      font-size: 12px !important;
    }

    .gbm-step-label {
      font-size: 12px !important;
    }

    /* Order items vertical */
    .gbm-order-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .gbm-order-item-image {
      margin-bottom: 8px;
    }

    .gbm-order-item-info {
      width: 100%;
    }

    .gbm-order-item-price {
      margin-top: 4px;
    }

    /* Full-width button */
    .gbm-place-order .gbm-btn {
      width: 100% !important;
      display: block;
    }
  }


  .gbm-checkout-btn span {
    display: block !important;
  }

  .gbm-continue-shopping-btn {
    display: block !important;
    border-radius: 8px !important;
    padding: 16px !important;
    font-size: 16px !important;
  }

  hr.gbm-mobile-only {
    display: block !important;
  }
}

/* =========================================================================
   IMMÉDIAT FIX: GLOBAL MOBILE PRODUCT CAROUSEL (HOME, SHOP, CATEGORIES)
   ========================================================================= */
@media (max-width: 991px) {

  /* 1. Conteneur global des produits (Force Flex Row) */
  .woocommerce ul.products,
  body .gbm-products-grid,
  body .gbm-trending-carousel {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    /* Force la ligne horizontale unique */
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 16px 20px 16px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    align-items: stretch !important;
    box-sizing: border-box !important;
  }

  .woocommerce ul.products::-webkit-scrollbar,
  body .gbm-products-grid::-webkit-scrollbar,
  body .gbm-trending-carousel::-webkit-scrollbar {
    display: none !important;
  }

  /* 2. STRICTEMENT 2 PRODUITS VISIBLES (50% de largeur) */
  .woocommerce ul.products li.product,
  body .gbm-products-grid .gbm-product-card-figma,
  body .gbm-trending-carousel .gbm-product-card-figma {
    flex: 0 0 calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    min-width: calc(50% - 8px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
  }

  /* 3. Centrage absolu du contenu interne de la carte */
  .woocommerce ul.products li.product img,
  body .gbm-products-grid .gbm-product-card-figma .gbm-product-image,
  body .gbm-trending-carousel .gbm-product-card-figma .gbm-product-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  body .gbm-products-grid .gbm-product-card-info,
  body .gbm-trending-carousel .gbm-product-card-info {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* ============================================
   GLOBAL STYLE FORCING: HIDE RATINGS EVERYWHERE
   ============================================ */
.gbm-product-stars,
.star-rating,
.woocommerce-product-rating,
.gbm-product-stars-container,
.gbm-product-stars-figma,
.gbm-stars-wrapper,
.stars {
  display: none !important;
}

/* ============================================
   MOBILE CARD CONTENT ZOOM (Premium Close-up)
   ============================================ */
@media (max-width: 991px) {

  /* Zoom the image content inside each card for a premium close-up view */
  .gbm-product-card-figma .gbm-product-image img,
  .products li.product img,
  .gbm-trending-carousel .gbm-product-card-figma .gbm-product-image img,
  .gbm-products-grid .gbm-product-card-figma .gbm-product-image img,
  .gbm-carousel-mode .gbm-product-card-figma .gbm-product-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    transform: scale(1.22) !important;
    transition: transform 0.3s ease !important;
  }

  /* Ensure the image container hides any overflow from the zoom and stays clean */
  .gbm-product-card-figma .gbm-product-image,
  .gbm-products-grid .gbm-product-card-figma .gbm-product-image,
  .gbm-trending-carousel .gbm-product-card-figma .gbm-product-image,
  .gbm-carousel-mode .gbm-product-card-figma .gbm-product-image {
    overflow: hidden !important;
  }

  /* Scale up titles slightly for balance */
  .gbm-product-card-figma .gbm-product-card-info .name,
  .gbm-products-grid .gbm-product-card-info .name {
    font-size: 15px !important;
    font-weight: 600 !important;
  }

  .gbm-product-card-figma .gbm-product-card-info .price,
  .gbm-products-grid .gbm-product-card-info .price {
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  /* Compact variant color dots on mobile */
  .gbm-card-color-dot {
    width: 12px !important;
    height: 12px !important;
  }

  /* Shop and Category pages 2-column layout (Non-carousel mobile grid) */
  .gbm-shop-content .gbm-products-grid,
  .archive.tax-product_cat .gbm-products-grid,
  .tax-product_cat .gbm-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: visible !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  .gbm-shop-content .gbm-products-grid .gbm-product-card-figma,
  .archive.tax-product_cat .gbm-products-grid .gbm-product-card-figma,
  .tax-product_cat .gbm-products-grid .gbm-product-card-figma {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: var(--m-radius-md) !important;
    background-color: #FFFFFF !important;
    padding: 12px 10px !important;
  }

  /* Single Product "You May Also Like" 2-column layout (Non-carousel mobile grid) */
  .gbm-single-product section:last-of-type .gbm-products-grid,
  body.single-product .gbm-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: visible !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  .gbm-single-product section:last-of-type .gbm-products-grid .gbm-product-card-figma,
  body.single-product .gbm-products-grid .gbm-product-card-figma {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: var(--m-radius-md) !important;
    background-color: #FFFFFF !important;
    padding: 12px 10px !important;
  }

  /* Mobile Wishlist Page: Responsive 2-column grid stacked vertically */
  .gbm-favorites-page .gbm-products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: visible !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  .gbm-favorites-page .gbm-products-grid .gbm-product-card-figma {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: var(--m-radius-md) !important;
    background-color: #FFFFFF !important;
    padding: 12px 10px !important;
  }

  .gbm-favorites-page .gbm-products-grid .gbm-product-card-figma .gbm-product-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 140px !important;
    background: none !important;
    overflow: visible !important;
  }

  .gbm-favorites-page .gbm-products-grid .gbm-product-card-figma .gbm-product-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transform: scale(1.22) !important;
    transition: transform 0.3s ease !important;
  }

  .gbm-favorites-page .gbm-products-grid .gbm-product-card-info {
    text-align: center !important;
    padding: 0 !important;
    margin-top: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .gbm-favorites-page .gbm-products-grid .gbm-product-stars {
    justify-content: center !important;
    margin-bottom: 8px !important;
  }

  .gbm-favorites-page .gbm-products-grid .name {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
    text-align: center !important;
  }

  .gbm-favorites-page .gbm-products-grid .price {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .gbm-favorites-page .gbm-products-grid .gbm-product-card-figma .gbm-buy-now-btn,
  .gbm-favorites-page .gbm-products-grid .gbm-product-card-figma button.gbm-ajax-add-to-cart {
    display: block !important;
    width: 100% !important;
    padding: 10px 6px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    background: #1A1A1A !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    margin-bottom: 8px !important;
  }

  .gbm-favorites-page .gbm-products-grid .gbm-product-card-figma .gbm-fav-remove-btn {
    display: block !important;
    width: 100% !important;
    padding: 8px 6px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    background: transparent !important;
    color: #666666 !important;
    border: 1px solid #DDD !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    margin-top: 0 !important;
  }

  .gbm-favorites-page .gbm-products-grid .gbm-product-card-figma .gbm-product-wishlist-btn {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    width: 32px !important;
    height: 32px !important;
  }

  /* === MY ACCOUNT LOGIN / REGISTER / VERIFY FORMS — Mobile === */
  .gbm-account-page {
    padding: 30px 16px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .gbm-account-header {
    text-align: center !important;
    margin-bottom: 24px !important;
  }

  .gbm-account-header h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  .gbm-account-header p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .gbm-account-header a {
    font-size: 14px !important;
  }

  .gbm-account-status-bar {
    font-size: 15px !important;
    padding: 12px 16px !important;
    margin-bottom: 24px !important;
    border-radius: 8px !important;
  }

  .gbm-account-form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-bottom: 16px !important;
  }

  .gbm-account-field input {
    padding: 16px 14px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }

  .gbm-account-forgot {
    text-align: center !important;
    margin-top: -8px !important;
    margin-bottom: 20px !important;
  }

  .gbm-account-forgot a {
    font-size: 13px !important;
  }

  .gbm-account-actions {
    margin-top: 24px !important;
  }

  .gbm-btn-account {
    width: 100% !important;
    min-width: unset !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    box-sizing: border-box !important;
  }

  .gbm-account-checkboxes {
    margin: 20px 0 !important;
  }

  .gbm-account-checkbox {
    font-size: 12px !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
    align-items: flex-start !important;
  }

  .gbm-account-checkbox input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
  }

  /* Verify OTP field */
  .gbm-account-field.verify-field input {
    font-size: 20px !important;
    letter-spacing: 3px !important;
    max-width: 100% !important;
    padding: 16px !important;
    border-radius: 8px !important;
  }

  .gbm-account-otp-meta {
    font-size: 14px !important;
    margin-top: 14px !important;
  }

  .gbm-account-otp-meta a {
    font-size: 14px !important;
  }

  /* === WOOCOMMERCE MY ACCOUNT RESPONSIVE === */
  .woocommerce-account .woocommerce {
    padding: 0 15px !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100% !important;
    float: none !important;
    margin-bottom: 25px !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 0 !important;
    list-style: none !important;
    justify-content: center !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    background: #F8F8F8 !important;
    border: 1px solid #EAEAEA !important;
    border-radius: 30px !important;
    margin: 0 !important;
    transition: all 0.2s ease !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active,
  .woocommerce-account .woocommerce-MyAccount-navigation ul li.active,
  .woocommerce-account .woocommerce-MyAccount-navigation ul li:hover {
    background: #1A1A1A !important;
    border-color: #1A1A1A !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
  .woocommerce-account .woocommerce-MyAccount-navigation ul li.active a,
  .woocommerce-account .woocommerce-MyAccount-navigation ul li:hover a {
    color: #FFF !important;
    background: transparent !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 10px 20px !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100% !important;
    float: none !important;
    background: #FFF !important;
    border: 1px solid #EAEAEA !important;
    border-radius: 20px !important;
    padding: 20px !important;
    box-sizing: border-box !important;
  }

  /* WooCommerce Tables on Mobile */
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table {
    display: block !important;
    width: 100% !important;
    border: none !important;
    background: transparent !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table thead {
    display: none !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody {
    display: block !important;
    width: 100% !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table tr {
    display: block !important;
    border: 1px solid #EAEAEA !important;
    border-radius: 16px !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
    background: #FAFAFA !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
    border: none !important;
    border-bottom: 1px dashed #EAEAEA !important;
    font-size: 14px !important;
    text-align: right !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td:last-child {
    border-bottom: none !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td::before {
    content: attr(data-title) !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
    float: left !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td .button {
    padding: 8px 16px !important;
    font-size: 12px !important;
    border-radius: 30px !important;
  }

  /* My Account Address responsive grid */
  .woocommerce-account .woocommerce-Addresses {
    display: block !important;
  }

  .woocommerce-account .woocommerce-Address {
    width: 100% !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
    float: none !important;
  }

  /* Forms inside My Account */
  .woocommerce-account form.woocommerce-EditAccountForm .form-row {
    width: 100% !important;
    float: none !important;
    margin-bottom: 15px !important;
  }

  .woocommerce-account form.woocommerce-EditAccountForm fieldset {
    margin-top: 25px !important;
    padding: 15px !important;
    border: 1px solid #EAEAEA !important;
    border-radius: 12px !important;
  }
}