/* ============================================
   GBM WOOCOMMERCE — Figma-Accurate Overrides
   Shop, Product, Cart, Checkout
   ============================================ */

/* === SHOP PAGE (Figma) === */
.gbm-shop {
  padding-top: 40px !important;
  margin-top: 0;
}

#content,
.site-content {
  padding-top: 20px;
}

/* Category Banner */
.gbm-category-banner {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gbm-category-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Breadcrumbs */
.gbm-breadcrumbs {
  padding: 0 0 8px;
  font-size: 13px;
  color: var(--gbm-gray);
}

.gbm-breadcrumbs a {
  color: var(--gbm-gray);
}

.gbm-breadcrumbs a:hover {
  color: var(--gbm-black);
}

.gbm-breadcrumb-sep {
  margin: 0 8px;
}

.gbm-breadcrumb-current {
  color: var(--gbm-black);
  font-weight: 500;
}

/* Page Title */
.gbm-shop-page-title {
  padding: 8px 0 24px;
}

.gbm-shop-page-title h1 {
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 4px;
}

.gbm-item-count {
  font-size: 14px;
  color: var(--gbm-gray);
}

/* Shop Layout */
.gbm-shop-layout.gbm-no-sidebar {
  display: block;
}

.gbm-shop-layout.gbm-has-sidebar {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

/* Sidebar Filters (Figma: checkbox style) */
.gbm-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .gbm-shop-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.gbm-filter-header h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.gbm-filter-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gbm-black);
  margin-bottom: 12px;
  display: block;
}

.gbm-filter-checkboxes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gbm-filter-checkboxes li {
  margin-bottom: 10px;
}

.gbm-filter-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--gbm-black);
}

.gbm-filter-checkboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  background: var(--gbm-white);
}

.gbm-filter-checkboxes input[type="checkbox"]:checked {
  background: var(--gbm-black);
  border-color: var(--gbm-black);
}

.gbm-filter-checkboxes input[type="checkbox"]:checked::after {
  content: '✓';
  color: var(--gbm-white);
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 2px;
}

.gbm-filter-checkboxes a {
  color: inherit;
  font-size: 15px;
}

.gbm-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: var(--space-md);
}

.gbm-filter-close {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* === SINGLE PRODUCT (Figma) === */
.gbm-single-product {
  padding-top: 40px;
}

.gbm-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 0 40px;
}

@media (max-width: 991px) {
  .gbm-product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gbm-product-gallery {
    position: static;
  }
}

/* Grids Responsiveness */
@media (max-width: 768px) {
  .gbm-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .gbm-product-card-figma {
    padding: 15px;
  }
}

.gbm-product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

/* Announcement Bar Responsiveness */
@media (max-width: 768px) {
  .gbm-announcement-inner {
    gap: 10px;
    padding: 0 10px;
  }

  .gbm-announcement-arrow {
    display: none;
  }

  .gbm-announcement-text {
    font-size: 10px;
    line-height: 1.2;
  }
}

.gbm-product-action-bar {
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.gbm-product-price-single {
  font-size: 32px;
  font-weight: 600;
}

.gbm-product-actions-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .gbm-product-action-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
  }

  .gbm-product-actions-btns {
    width: 100%;
    justify-content: center;
  }

  .gbm-product-description-section {
    text-align: center;
  }

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

  /* Hide gallery arrows on mobile if they cause overflow */
  .gbm-gallery-thumbs-wrap span {
    display: none;
  }
}

.gbm-shop-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.gbm-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gbm-gallery-main-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.gbm-gallery-main-img:hover {
  transform: scale(1.05);
}

.gbm-gallery-thumbs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gbm-gallery-thumb {
  width: 80px;
  height: 100px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #eee;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gbm-gallery-thumb.active {
  border-color: var(--gbm-black);
}

.gbm-gallery-thumb:hover {
  border-color: var(--gbm-gold);
}

.gbm-gallery-thumb img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.gbm-product-detail-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gbm-product-detail-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--gbm-black);
}

.gbm-product-divider {
  height: 1px;
  background: #eee;
  margin: 16px 0;
}

/* Single Product Redesign (Figma) */
.gbm-product-card-simple .name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.gbm-product-card-simple .price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.gbm-quantity-control input::-webkit-outer-spin-button,
.gbm-quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gbm-quantity-control input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 768px) {
  .gbm-product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

/* === SHOPPING BAG / CART (Figma) === */
.gbm-cart-page {
  padding-top: 0;
}

.gbm-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  padding: var(--space-md) 0 var(--space-xl);
}

/* Cart Items */
.gbm-cart-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gbm-cart-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 12px;
}

.gbm-cart-item-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gbm-cart-item-img img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.gbm-cart-item-details {
  flex: 1;
}

.gbm-cart-item-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.gbm-cart-item-price {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.gbm-cart-item-rating {
  font-size: 11px;
  color: var(--gbm-gold);
  margin-bottom: 0;
}

.gbm-cart-item-qty {
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.gbm-cart-item-qty button {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--gbm-white);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gbm-cart-item-qty input {
  width: 36px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 14px;
  font-weight: 500;
}

.gbm-cart-item-total {
  font-weight: 600;
  font-size: 15px;
  min-width: 70px;
  text-align: right;
}

.gbm-cart-item-remove {
  background: none;
  border: none;
  color: var(--gbm-gray);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color 0.2s;
}

.gbm-cart-item-remove:hover {
  color: var(--gbm-red);
}

/* Delivery Info Sidebar */
.gbm-delivery-sidebar {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: var(--space-md);
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.gbm-delivery-sidebar h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.gbm-delivery-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.gbm-delivery-field:focus {
  border-color: var(--gbm-black);
  outline: none;
}

.gbm-delivery-options {
  margin: 16px 0;
}

.gbm-delivery-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.gbm-delivery-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.gbm-delivery-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.gbm-delivery-option .price {
  font-size: 13px;
  color: var(--gbm-gray);
}

.gbm-order-summary {
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: 8px;
}

.gbm-order-summary h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.gbm-order-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.gbm-order-row .label {
  color: var(--gbm-gray);
}

.gbm-order-row .value {
  font-weight: 600;
}

.gbm-order-total .value {
  font-size: 18px;
}

.gbm-checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 16px;
  background: var(--gbm-black);
  color: var(--gbm-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.gbm-checkout-btn:hover {
  background: var(--gbm-gold);
  color: var(--gbm-black);
}

.gbm-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gbm-gray);
  margin-top: var(--space-md);
  padding: 8px 0;
}

.gbm-continue-shopping:hover {
  color: var(--gbm-black);
}

/* === FAVORITES / WISHLIST (Figma) === */
.gbm-favorites-page {
  padding-top: 0;
}

.gbm-favorites-empty {
  background: var(--gbm-gray-light);
  border-radius: 8px;
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.gbm-favorites-empty-img {
  width: 200px;
  flex-shrink: 0;
}

.gbm-favorites-empty h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gbm-favorites-empty p {
  font-size: 14px;
  color: var(--gbm-gray);
  margin-bottom: 16px;
}

.gbm-fav-remove-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--gbm-white);
  color: var(--gbm-black);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}

.gbm-fav-remove-btn:hover {
  border-color: var(--gbm-red);
  color: var(--gbm-red);
}

/* === RESPONSIVE === */
/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .gbm-cart-layout {
    grid-template-columns: 1fr;
  }

  .gbm-product-detail {
    grid-template-columns: 1fr;
  }

  .gbm-shop-layout.gbm-has-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gbm-shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--gbm-white);
    z-index: 9999;
    padding: 24px;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  }

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

  .gbm-filter-toggle {
    display: flex;
  }

  .gbm-filter-close {
    display: block;
  }

  .gbm-category-banner {
    height: 160px;
  }

  .gbm-shop-page-title h1 {
    font-size: 28px;
  }

  .gbm-cart-item {
    padding: 12px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .gbm-cart-item-img {
    width: 70px;
    height: 70px;
  }

  .gbm-cart-item-details {
    width: calc(100% - 90px);
  }

  .gbm-cart-item-total {
    width: 100%;
    text-align: left;
    margin-top: 8px;
    border-top: 1px dashed #EEE;
    padding-top: 8px;
  }

  .gbm-delivery-sidebar {
    position: static;
    margin-top: 20px;
  }

  .gbm-favorites-empty {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .gbm-favorites-empty-img {
    width: 140px;
  }

  .gbm-product-gallery {
    position: static;
    margin-bottom: 24px;
  }

  .gbm-gallery-thumbs {
    overflow-x: auto;
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .gbm-products-grid {
    grid-template-columns: 1fr !important;
  }

  .gbm-product-card-figma {
    padding: 16px;
  }

  .gbm-account-header h1 {
    font-size: 28px;
  }

  .gbm-btn-account {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* Hide Default WooCommerce Account Titles */
.woocommerce-account .entry-title,
.woocommerce-account .page-title,
.woocommerce-account .astra-shop-summary-wrap .page-title {
  display: none !important;
}

/* Hide My Account Breadcrumb label if needed */
.woocommerce-account .gbm-breadcrumbs .gbm-breadcrumb-current {
  display: none;
}

/* === MY ACCOUNT (Figma Login/Register/Verify) === */
.gbm-account-page {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.gbm-account-header {
  text-align: left;
  margin-bottom: 40px;
}

.gbm-account-header h1 {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gbm-account-header p {
  font-size: 18px;
  color: var(--gbm-gray);
}

.gbm-account-header a {
  color: var(--gbm-gray);
  text-decoration: underline;
  font-weight: 500;
}

.gbm-account-status-bar {
  background: #333;
  color: #fff;
  padding: 16px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 40px;
}

.gbm-account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.gbm-account-field input {
  width: 100%;
  padding: 20px 24px;
  border: 1px solid #333;
  font-family: var(--font-body);
  font-size: 16px;
  color: #000;
  background: #fff;
}

.gbm-account-field input::placeholder {
  color: #999;
}

.gbm-account-forgot {
  text-align: left;
  margin-top: -16px;
  margin-bottom: 32px;
}

.gbm-account-forgot a {
  font-size: 13px;
  color: #999;
  text-decoration: none;
}

.gbm-account-actions {
  text-align: center;
  margin-top: 40px;
}

.gbm-btn-account {
  display: inline-block;
  min-width: 240px;
  padding: 14px 48px;
  background: #2A2A2A;
  color: #fff;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.gbm-btn-account:hover {
  background: #000;
  transform: translateY(-2px);
}

.gbm-account-checkboxes {
  margin: 32px 0;
  text-align: left;
}

.gbm-account-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #000;
}

.gbm-account-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #333;
}

.gbm-account-checkbox.required {
  color: #ff5e5e;
}

/* Verification Code Field */
.gbm-account-field.verify-field input {
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.gbm-account-otp-meta {
  text-align: center;
  margin-top: 16px;
  color: #000;
}

.gbm-account-otp-meta a {
  color: #ff5e5e;
  text-decoration: none;
}

@media (max-width: 768px) {
  .gbm-account-page {
    padding: 40px 0;
  }

  .gbm-account-form-grid {
    grid-template-columns: 1fr;
  }

  .gbm-account-header h1 {
    font-size: 32px;
    text-align: center;
  }

  .gbm-account-header p {
    text-align: center;
  }

  .gbm-btn-account {
    font-size: 18px;
    width: 100%;
    padding: 20px 30px;
    margin-bottom: 20px;
  }

  /* Logged in Dashboard responsiveness */
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100% !important;
    float: none !important;
    margin-bottom: 30px !important;
  }

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

  .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    background: #F5F5F5;
    border-radius: 4px;
    margin: 0 !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 10px 15px;
    display: block;
    font-size: 13px;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100% !important;
    float: none !important;
  }
}

/* === GLOBAL PRODUCT CARD (Figma-Accurate) === */
.gbm-product-card-figma {
  background: #fff;
  border: 1px solid #EEE;
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gbm-product-card-figma:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.gbm-product-wishlist-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #fff;
  border: none !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.gbm-product-wishlist-btn img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
}

.gbm-product-image {
  margin-bottom: 20px;
  aspect-ratio: 1/1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px !important;
  width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.gbm-product-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.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;
  transition: transform 0.6s ease !important;
}

.gbm-product-card-info {
  padding: 0 24px 24px 24px;
  flex-grow: 1;
}

.gbm-product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  color: #D4AF37;
  font-size: 12px;
}

.gbm-product-stars .rating-text {
  color: #888;
  font-size: 11px;
}

.gbm-product-card-figma .name {
  font-size: 17px;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
  height: 34px;
  overflow: hidden;
  line-height: 1.3;
}

.gbm-product-card-figma .name a {
  color: inherit;
  text-decoration: none;
}

.gbm-product-card-figma .price {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  color: #1A1A1A;
}

.gbm-product-card-figma .price del {
  font-size: 14px;
  color: #999;
  margin-right: 8px;
  font-weight: 400;
}

.gbm-product-card-figma .price ins {
  text-decoration: none;
}

.gbm-buy-now-btn {
  width: 100%;
  font-size: 18px;
  padding: 12px;
  border-radius: 30px;
  background: #1A1A1A;
  color: #FFF;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.gbm-buy-now-btn:hover {
  background: #000;
}

.gbm-fav-remove-btn {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  border-radius: 30px;
  background: #FFF;
  color: #555;
  font-weight: 400;
  border: 1px solid #AAA !important;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.gbm-fav-remove-btn:hover {
  border-color: #000 !important;
  color: #000 !important;
}

/* Favorites Empty State */
.gbm-favorites-empty {
  text-align: center;
  padding: 100px 20px;
  background: #F9F9F9;
  border-radius: 30px;
  margin-top: 40px;
}

.gbm-favorites-empty img {
  width: 280px;
  margin-bottom: 30px;
}

.gbm-favorites-empty h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1A1A1A;
}

.gbm-favorites-empty p {
  font-size: 16px;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.gbm-quantity-control-figma {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
}

.gbm-qty-minus-figma,
.gbm-qty-plus-figma {
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 24px;
  font-weight: 900;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gbm-qty-input-box {
  width: 54px;
  height: 44px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gbm-qty-input {
  width: 100%;
  border: none;
  background: none;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  -moz-appearance: textfield;
}

.gbm-qty-input::-webkit-outer-spin-button,
.gbm-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}