/* =====================================================
   RESPONSIVE CSS - Royal Thread Empire
   Mobile-First Comprehensive Responsive Design
   ===================================================== */

/* ---- BASE: Prevent Overflow ---- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ---- Responsive Images ---- */
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---- Touch Targets (min 44px per A11y) ---- */
.action-btn,
.nav-link,
.mobile-toggle,
.qty-btn,
.prod-size-btn,
.prod-color-swatch,
.faq-cat-btn,
.form-tab-btn {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* ============================================
   TABLET (≤1024px)
   ============================================ */
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  .container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .shop-layout-grid {
    gap: 1.5rem;
  }

  /* Header search shrinks */
  .header-search-bar {
    max-width: 340px !important;
    margin: 0 1rem !important;
  }

  /* Product grid: 3 columns */
  .products-grid,
  #products-catalog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .home-features-layout {
    grid-template-columns: 1fr !important;
  }

  .home-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem 1rem !important;
  }

  .home-new-arrivals-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* ============================================
   SHOP SIDEBAR (≤991px)
   ============================================ */
@media screen and (max-width: 991px) {
  .shop-layout-grid {
    grid-template-columns: 1fr !important;
  }

  .desktop-filters-sidebar {
    display: none !important;
  }

  #mobile-filter-drawer-open {
    display: inline-block !important;
  }

  .layout-controls {
    display: none !important;
  }

  .recent-view-link,
  .search-category-select {
    display: none !important;
  }

  /* Homepage hero section stacks */
  .crochet-hero-section .container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  .crochet-hero-section h1 {
    font-size: 3rem !important;
  }

  .crochet-cat-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media screen and (min-width: 992px) {
  #mobile-filter-drawer-open {
    display: none !important;
  }
}

/* ============================================
   MOBILE LANDSCAPE / TABLET (≤768px)
   ============================================ */
@media screen and (max-width: 768px) {
  /* Space for sticky bottom nav */
  body {
    padding-bottom: 70px !important;
  }

  /* Container padding tighter */
  .container {
    padding: 0 1rem !important;
  }

  /* Section headings */
  .section-header h2 {
    font-size: 1.6rem !important;
  }

  /* ---- HEADER ---- */
  .main-header-row {
    width: 100% !important;
    min-width: 0 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    gap: 0.75rem !important;
    flex-wrap: nowrap !important;
  }

  .site-header .brand-logo-link {
    min-width: 0 !important;
    max-width: calc(100% - 108px) !important;
    overflow: hidden !important;
  }

  .site-header .brand-text-logo {
    min-width: 0 !important;
  }

  .site-header .brand-text-logo span:first-child {
    font-size: clamp(0.95rem, 3vw, 1.25rem) !important;
    letter-spacing: 0.04em !important;
  }

  /* Hide desktop search bar */
  .header-search-bar {
    display: none !important;
  }

  /* Keep only the menu trigger in the compact header. Cart stays in bottom nav. */
  .header-actions .header-action-wishlist,
  .header-actions .header-action-collection {
    display: none !important;
  }

  .header-actions .cart-trigger {
    display: none !important;
  }

  /* Header actions compact */
  .header-actions {
    gap: 0.75rem !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }

  /* Show hamburger */
  .mobile-toggle,
  .mobile-drawer-open {
    display: inline-flex !important;
    position: static !important;
    flex: 0 0 32px !important;
    z-index: 101;
  }

  .mobile-drawer-header {
    gap: 0.75rem !important;
  }

  .mobile-drawer-header .brand-logo-link {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 44px) !important;
    overflow: hidden !important;
  }

  .mobile-drawer-close {
    flex: 0 0 32px !important;
    width: 32px !important;
    height: 32px !important;
  }

  /* ---- Desktop nav hidden on mobile ---- */
  .navigation-row {
    display: none !important;
  }

  /* Cart badge sizing OK */
  .cart-badge {
    font-size: 0.6rem !important;
    width: 15px !important;
    height: 15px !important;
  }

  /* ---- MOBILE DRAWER NAV ---- */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    height: 100vh;
    background-color: var(--color-ivory, #FFFDF9);
    border-right: 1px solid var(--color-beige, #EAD8C7);
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 1.5rem 2rem;
    gap: 1rem;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1rem;
    width: 100%;
    height: auto;
    line-height: 1.4;
    border: none;
    border-bottom: 1px solid rgba(107, 31, 42, 0.08);
    padding: 0.75rem 0.5rem;
    justify-content: flex-start;
  }

  .nav-link::after {
    display: none !important;
  }

  /* ---- FOOTER ---- */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Footer inline grid (index.html style) */
  footer [style*="grid-template-columns: 1.5fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }

  /* ---- CART DRAWER ---- */
  .cart-drawer {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ---- HERO ---- */
  .hero-slide {
    height: 55vh !important;
    min-height: 280px !important;
  }

  .hero-content h1 {
    font-size: 2rem !important;
  }

  .hero-content p {
    font-size: 0.9rem !important;
  }

  /* ---- GRIDS: Stack to single column ---- */
  .shop-layout-grid,
  .cart-grid-columns,
  .checkout-layout-grid,
  .contact-layout-grid,
  .order-review-summary-row,
  .account-grid,
  .about-story-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Product cards: 2 per row */
  .products-grid,
  #products-catalog-grid,
  #grid-recently-viewed,
  #wishlist-grid,
  #compare-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  /* Product detail page stack */
  #product-container {
    grid-template-columns: 1fr !important;
  }

  /* ---- CART TABLE → Card Layout ---- */
  .royal-table thead {
    display: none !important;
  }
  .royal-table,
  .royal-table tbody,
  .royal-table tr,
  .royal-table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .royal-table tr {
    border: 1px solid var(--color-gray-light, #E5D9CC);
    border-radius: 8px;
    padding: 1rem !important;
    margin-bottom: 1.25rem !important;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .royal-table td {
    padding: 0.5rem 0 !important;
    border-bottom: 1px dashed rgba(36, 33, 36, 0.05);
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    text-align: left !important;
    font-size: 0.9rem;
  }
  .royal-table td:last-child {
    border-bottom: none;
    justify-content: center !important;
    padding-top: 0.75rem !important;
  }
  .royal-table td:nth-child(2)::before { content: "Unit Price:"; font-weight: 700; color: #6B7280; }
  .royal-table td:nth-child(3)::before { content: "Quantity:"; font-weight: 700; color: #6B7280; }
  .royal-table td:nth-child(4)::before { content: "Total Price:"; font-weight: 700; color: #6B7280; }
  .royal-table td:first-child {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1rem;
    border-bottom: 1px solid var(--color-gray-light, #E5D9CC);
    padding-bottom: 0.75rem !important;
  }
  .royal-table td:first-child::before { display: none !important; }
  .royal-table td:first-child img {
    width: 60px !important;
    height: 80px !important;
  }

  /* ---- COMPARE & WISHLIST TABLE ---- */
  .compare-table-wrapper,
  .compare-table-container,
  .table-responsive {
    overflow-x: auto !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }

  /* ---- MODAL ---- */
  .modal-content {
    width: 95% !important;
    padding: 1.5rem !important;
    margin: 1rem auto !important;
  }

  /* ---- PRODUCT BUTTONS STACK ---- */
  .product-cta-row,
  .prod-action-row {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  /* ---- CHECKOUT FORM ---- */
  .checkout-form-row {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  /* ---- CATEGORY CARDS ---- */
  .crochet-cat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  /* ---- INFO STRIP COMPACT ---- */
  .info-strip-row span:nth-child(2) {
    display: none !important;
  }

  .header-info-strip {
    padding: 0.55rem 0 !important;
  }

  .info-strip-row {
    flex-wrap: nowrap !important;
    gap: 0.75rem !important;
  }

  .info-strip-phone {
    font-size: 0.72rem !important;
    white-space: nowrap !important;
  }

  /* ---- SECTION PADDING REDUCE ---- */
  .section-padding {
    padding: 2.5rem 0 !important;
  }

  .home-features-section {
    padding: 2.75rem 0 !important;
  }

  .home-features-layout {
    gap: 2.25rem !important;
  }

  .home-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.75rem 1rem !important;
  }

  .home-features-grid > div {
    min-width: 0 !important;
    padding: 0 0.35rem !important;
  }

  .home-features-grid > div:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .home-features-grid h4 {
    font-size: 0.92rem !important;
  }

  .home-features-grid p {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }

  .home-new-arrivals-section {
    padding: 3rem 0 3.5rem !important;
  }

  .home-new-arrivals-heading {
    margin-bottom: 1.75rem !important;
  }

  .home-new-arrivals-heading h2 {
    font-size: 2.25rem !important;
  }

  .home-new-arrivals-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }

  .home-new-arrivals-grid > a {
    min-width: 0 !important;
  }

  .home-new-arrivals-grid > a > div:last-child {
    padding: 0.75rem !important;
  }

  .home-new-arrivals-grid h4 {
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere;
  }
}

@media screen and (max-width: 600px) {
  .home-features-grid,
  .home-new-arrivals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-features-grid > div:last-child {
    grid-column: 1 / -1;
    width: min(210px, 100%);
    justify-self: center;
  }
}

/* ============================================
   MOBILE PORTRAIT (≤480px)
   ============================================ */
@media screen and (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 0.875rem !important;
  }

  /* Typography scale down */
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.6rem !important; }
  h3 { font-size: 1.3rem !important; }

  .section-header h2 {
    font-size: 1.4rem !important;
  }

  /* Logo compact */
  .logo {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.4rem !important;
  }

  .brand-logo-img {
    height: 38px !important;
    width: auto !important;
  }

  .site-header .brand-text-logo {
    display: none !important;
  }

  .mobile-drawer .brand-text-logo {
    display: none !important;
  }

  .site-header .brand-logo-link {
    width: auto !important;
    max-width: none !important;
    margin-left: 0.4rem !important;
  }

  .announcement-bar {
    padding: 0.45rem 0 !important;
    letter-spacing: 0.08em !important;
  }

  .announcement-inner {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
  }

  .announcement-copy {
    flex-wrap: nowrap !important;
  }

  .announcement-actions {
    gap: 0 !important;
    flex: 0 0 auto !important;
  }

  .announcement-action-separator,
  .announcement-social {
    display: none !important;
  }

  .announcement-phone {
    font-size: 0.68rem !important;
    white-space: nowrap !important;
  }

  .info-strip-row {
    justify-content: center !important;
  }

  .info-strip-phone {
    display: none !important;
  }

  #contact-form > div[style*="grid-template-columns"],
  #wholesale-form > div[style*="grid-template-columns"],
  #checkout-form [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  #general-form-wrapper,
  #wholesale-form-wrapper,
  .checkout-step-pane {
    min-width: 0 !important;
  }

  #general-form-wrapper > form,
  #wholesale-form-wrapper > form {
    width: 100% !important;
  }

  .home-features-section {
    padding: 2.25rem 0 !important;
  }

  .home-features-grid {
    gap: 1.5rem 0.75rem !important;
  }

  .home-features-grid > div {
    padding: 0 0.2rem !important;
  }

  .home-custom-order-card {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .home-custom-order-copy {
    padding: 1.5rem 1.25rem !important;
  }

  .home-custom-order-copy h3 {
    font-size: 1.55rem !important;
  }

  .home-custom-order-image {
    width: 100% !important;
    height: 190px !important;
  }

  .home-new-arrivals-heading h2 {
    font-size: 1.9rem !important;
    white-space: nowrap;
  }

  .home-new-arrivals-grid {
    gap: 0.75rem !important;
  }

  .home-new-arrivals-grid > a > div:last-child {
    padding: 0.65rem !important;
  }

  /* Header height compact */
  .main-header-row {
    height: 60px !important;
    padding: 0.4rem 0 !important;
  }

  /* Product cards stay 2-col but smaller */
  .products-grid,
  #products-catalog-grid,
  #grid-recently-viewed {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  .product-card {
    padding: 0 !important;
  }

  .product-card h3,
  .product-title {
    font-size: 0.78rem !important;
    margin-top: 0.3rem !important;
  }

  .product-card .price,
  .product-price {
    font-size: 0.82rem !important;
  }

  .quick-add-btn {
    font-size: 0.72rem !important;
    padding: 0.4rem 0.5rem !important;
  }

  /* Curated cards: 1 column */
  .curated-cards-grid,
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .newsletter-input {
    border-radius: 8px !important;
    width: 100% !important;
  }

  .newsletter-btn {
    border-radius: 8px !important;
    width: 100% !important;
  }

  /* Toast compact */
  #toast-container {
    left: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 75px !important;
    max-width: calc(100% - 1rem) !important;
  }

  /* Hero very compact */
  .hero-slide {
    height: 45vh !important;
    min-height: 240px !important;
  }

  .hero-content h1 {
    font-size: 1.6rem !important;
  }

  .hero-content p {
    font-size: 0.82rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Footer col stacks */
  footer [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Cart page summary box */
  .cart-summary-box,
  .order-summary-box {
    padding: 1rem !important;
  }

  /* Category hero heading */
  .crochet-hero-section h1 {
    font-size: 2rem !important;
  }

  .crochet-cat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  /* Buttons full width on forms */
  .form-submit-btn,
  .checkout-place-order-btn {
    width: 100% !important;
    font-size: 0.9rem !important;
    padding: 0.85rem 1rem !important;
  }

  /* Qty selector compact */
  .qty-selector {
    transform: scale(0.9) !important;
    transform-origin: left center !important;
  }

  /* Size/Color selectors wrap */
  .prod-size-row,
  .prod-color-row {
    flex-wrap: wrap !important;
    gap: 0.4rem !important;
  }

  /* About page */
  .about-stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Hide second action icon in header */
  .action-btn:nth-child(2) {
    display: none !important;
  }
}

/* ============================================
   VERY SMALL PHONES (≤360px)
   ============================================ */
@media screen and (max-width: 360px) {
  .container {
    padding: 0 0.75rem !important;
  }

  .products-grid,
  #products-catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.4rem !important;
  }

  .product-card h3,
  .product-title {
    font-size: 0.72rem !important;
  }

  .hero-content h1 {
    font-size: 1.4rem !important;
  }

  .crochet-cat-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.4rem !important;
  }
}

/* ============================================
   MOBILE BOTTOM FLOATING NAVIGATION
   ============================================ */
.mobile-bottom-nav {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1.5px solid #EAD8C7;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.35rem 0;
    z-index: 998;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.07);
  }

  .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    gap: 0.2rem;
    flex: 1;
    height: 50px;
    transition: color 0.2s ease;
    letter-spacing: 0.03em;
  }

  .mob-nav-item svg {
    width: 21px;
    height: 21px;
  }

  .mob-nav-item:hover,
  .mob-nav-item.active {
    color: #3D120C;
  }

  .mob-nav-item.active svg {
    stroke: #3D120C;
  }
}

/* ============================================
   CATEGORY DROPDOWN (DESKTOP HOVER)
   ============================================ */
@media screen and (min-width: 769px) {
  .category-dropdown-trigger:hover .category-dropdown-menu {
    display: block !important;
  }
}

.category-dropdown-menu a:hover {
  background-color: #FAF0E6 !important;
  color: #3D120C !important;
}

/* ============================================
   PRODUCT CARD TOUCH IMPROVEMENTS
   ============================================ */
@media screen and (max-width: 768px) {
  .product-actions-overlay {
    opacity: 1 !important;
    transform: none !important;
  }

  .product-img-wrapper {
    overflow: hidden;
  }

  .product-img-hover {
    display: none !important;
  }
}

/* ============================================
   SEARCH BAR MOBILE
   ============================================ */
@media screen and (max-width: 768px) {
  /* Mobile drawer search styles already embedded */
  .mobile-search-wrapper input {
    font-size: 16px !important; /* Prevent iOS zoom on focus */
  }
}

@media screen and (max-width: 480px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important; /* Prevent iOS auto-zoom */
  }
}

/* ============================================
   CART & CHECKOUT RESPONSIVE
   ============================================ */
@media screen and (max-width: 768px) {
  /* Cart item image + info side-by-side */
  .cart-item-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .cart-item-img {
    width: 100% !important;
    height: 200px !important;
    border-radius: 8px !important;
  }

  /* Checkout address form */
  .checkout-two-col {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Order summary always on top on mobile */
  .checkout-layout-grid {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
}

/* ============================================
   PRODUCT DETAIL PAGE RESPONSIVE
   ============================================ */
@media screen and (max-width: 768px) {
  /* Image gallery full width */
  .product-gallery-col {
    width: 100% !important;
  }

  /* Thumbnail strip scrollable */
  .product-thumbnails {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .product-thumbnails img {
    width: 60px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
  }

  /* Product title size */
  .product-title-main {
    font-size: 1.5rem !important;
  }

  /* Size selector wrap */
  .size-selector-row {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }

  /* CTA buttons full width */
  .add-to-cart-btn,
  .buy-now-btn {
    width: 100% !important;
    padding: 0.9rem !important;
    font-size: 0.9rem !important;
  }

  /* WhatsApp button */
  .whatsapp-order-btn {
    width: 100% !important;
  }
}

/* ============================================
   ACCOUNT & ORDER PAGES
   ============================================ */
@media screen and (max-width: 768px) {
  .account-tabs {
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .account-tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
  }

  .order-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
}

/* ============================================
   GENERAL UTILITIES FOR MOBILE
   ============================================ */
@media screen and (max-width: 768px) {
  /* Hide on mobile */
  .hide-mobile {
    display: none !important;
  }

  /* Show only on mobile */
  .show-mobile {
    display: block !important;
  }

  /* Full width elements */
  .mobile-full {
    width: 100% !important;
  }

  /* Center text on mobile */
  .mobile-center {
    text-align: center !important;
  }

  /* Padding adjustments */
  .mobile-p-sm {
    padding: 1rem !important;
  }

  /* Button groups stack */
  .btn-group {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .btn-group .btn {
    width: 100% !important;
    text-align: center !important;
  }
}
