/* ================================================
   MOBILE RESPONSIVE FIXES
   ================================================ */

/* ============================================
   1. HAMBURGER MENU FIX - Make it always visible and working on mobile
   ============================================ */

/* Ensure hamburger is visible on mobile */
@media (max-width: 960px) {

  /* Show mobile basket button - matching PC btn-tertiary btn-icon theme */
  .site-header .actions .mobile-basket-btn {
    display: flex !important;
    position: fixed !important;
    top: 15px !important;
    right: 70px !important;
    /* Position to the left of hamburger */
    z-index: 9999 !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    background-color: transparent !important;
    background: transparent !important;
    color: var(--color-tertiary-text, var(--color-text)) !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.15s ease-in-out !important;
  }

  .site-header .actions .mobile-basket-btn:hover,
  .site-header .actions .mobile-basket-btn:focus {
    color: var(--color-tertiary-text-hover, var(--color-text)) !important;
    background-color: transparent !important;
    background: transparent !important;
  }

  .site-header .actions .mobile-basket-btn:active {
    transform: translateY(0) !important;
  }

  /* Basket icon - improved for mobile visibility */
  .site-header .actions .mobile-basket-btn .cart-icon {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
    color: inherit !important;
    display: block !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease !important;
  }

  /* Improve icon visibility on mobile */
  .site-header .actions .mobile-basket-btn:hover .cart-icon,
  .site-header .actions .mobile-basket-btn:active .cart-icon {
    transform: scale(1.1) !important;
  }

  /* Ensure SVG path is visible */
  .site-header .actions .mobile-basket-btn .cart-icon path,
  .site-header .actions .mobile-basket-btn .cart-icon g {
    fill: currentColor !important;
    stroke: none !important;
  }

  /* Basket count badge - transparent background */
  .site-header .actions .mobile-basket-btn .basket-count {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    min-width: 20px !important;
    height: 20px !important;
    padding: 0 5px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    background: transparent !important;
    color: currentColor !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
  }

  /* Hide basket when navigation is open */
  body.show-navigation .site-header .actions .mobile-basket-btn {
    display: none !important;
  }

  /* Toggle navigation - matching PC btn-tertiary btn-icon theme */
  .site-header .actions .toggle-navigation {
    display: flex !important;
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 9999 !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    background-color: var(--color-tertiary, var(--color-bg)) !important;
    color: var(--color-tertiary-text, var(--color-text)) !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.15s ease-in-out !important;
  }

  .site-header .actions .toggle-navigation:hover,
  .site-header .actions .toggle-navigation:focus {
    color: var(--color-tertiary-text-hover, var(--color-text)) !important;
    background-color: var(--color-tertiary-hover, var(--color-bg)) !important;
  }

  .site-header .actions .toggle-navigation:active {
    transform: translateY(0) !important;
  }

  /* Ensure hamburger icon is properly sized */
  .toggle-navigation .hamburger-icon {
    width: 26px !important;
    height: 22px !important;
  }

  /* Make lines thicker for better visibility - use currentColor to match theme */
  .toggle-navigation .hamburger-icon .line {
    height: 3px !important;
    background-color: currentColor !important;
  }
}

/* ============================================
   2. MOBILE NAVIGATION MENU - CLEAN & LIGHTWEIGHT
   ============================================ */

@media (max-width: 960px) {

  /* Make navigation slide from right - 50% width */
  .site-navigation {
    position: fixed !important;
    top: 0 !important;
    left: auto !important;
    /* Force remove left positioning */
    right: 0 !important;
    bottom: 0 !important;
    width: 50% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #1a1a1f 0%, #15151a 100%) !important;
    border-left: 1px solid rgba(153, 50, 204, 0.2) !important;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5) !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateX(100%) !important;
    /* Slide from right */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    /* Smooth spring-like animation */
    padding: 20px 16px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Show navigation when open - slide to visible position */
  body.show-navigation .site-navigation {
    transform: translateX(0) !important;
  }

  /* Hide logo in mobile menu */
  .site-navigation .nav-logo-container {
    display: none !important;
  }

  /* Navigation list styling */
  .site-navigation .navigation-list {
    flex-direction: column !important;
    gap: 2px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  /* Navigation items */
  .site-navigation .navigation-list>li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Main menu links - Clean single line design */
  .site-navigation .navigation-list>li>a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    background: transparent !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    color: #b8b8b8 !important;
    position: relative !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
  }

  .site-navigation .navigation-list>li>a:hover,
  .site-navigation .navigation-list>li>a:active {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
  }

  /* Active state */
  .site-navigation .navigation-list>li.active>a,
  .site-navigation .navigation-list>li>a.link-active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }

  /* Icon container */
  .site-navigation .navigation-list>li>a svg,
  .site-navigation .navigation-list>li>a i:not(.fa-chevron-down) {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    color: #808080 !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Icon color on hover/active */
  .site-navigation .navigation-list>li>a:hover svg,
  .site-navigation .navigation-list>li>a:hover i:not(.fa-chevron-down),
  .site-navigation .navigation-list>li.active>a svg,
  .site-navigation .navigation-list>li.active>a i:not(.fa-chevron-down) {
    color: #ffffff !important;
  }

  /* Mobile Brand Divider */
  .site-navigation .mobile-brand-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 16px 0 !important;
    padding: 16px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .site-navigation .mobile-brand-content {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .site-navigation .mobile-brand-logo {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    object-fit: contain !important;
  }

  .site-navigation .mobile-brand-name {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    letter-spacing: 0.3px !important;
  }

  /* Hide on desktop */
  @media (min-width: 961px) {
    .mobile-brand-divider {
      display: none !important;
    }
  }

  /* User dropdown - convert to flat list in mobile */
  .site-navigation .user-nav-item {
    position: static !important;
    display: block !important;
    padding-top: 12px !important;
    margin-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .site-navigation .user-nav-item .user-profile-nav {
    display: none !important;
  }

  /* Show dropdown items as flat list */
  .site-navigation .user-nav-item .user-dropdown-menu {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
  }

  .site-navigation .user-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    background: transparent !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    color: #b8b8b8 !important;
  }

  .site-navigation .user-dropdown-item:hover,
  .site-navigation .user-dropdown-item:active {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
  }

  .site-navigation .user-dropdown-item i {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    color: #808080 !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-navigation .user-dropdown-item:hover i {
    color: #ffffff !important;
  }

  /* Hide desktop subtitle, show only title */
  .site-navigation .user-dropdown-item-content {
    display: block !important;
  }

  .site-navigation .user-dropdown-item-subtitle {
    display: none !important;
  }

  .site-navigation .user-dropdown-item-title {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: inherit !important;
  }

  /* Logout - red color */
  .site-navigation .user-dropdown-item.logout {
    color: #ff4757 !important;
  }

  .site-navigation .user-dropdown-item.logout:hover {
    background: rgba(255, 71, 87, 0.1) !important;
    color: #ff4757 !important;
  }

  .site-navigation .user-dropdown-item.logout i {
    color: #ff4757 !important;
  }

  /* Discord icon blue */
  .site-navigation .user-dropdown-item i.fa-discord {
    color: #5865F2 !important;
  }

  .site-navigation .user-dropdown-item:has(i.fa-discord):hover {
    background: rgba(88, 101, 242, 0.1) !important;
  }

  /* Hide toggle button on mobile - subcategories always visible */
  .site-navigation .toggle {
    display: none !important;
  }

  /* Subcategories container - beautiful styling */
  .site-navigation .navigation-list>li.has-children>ul {
    display: block !important;
    padding: 8px 0 8px 16px !important;
    margin-top: 6px !important;
    margin-left: 12px !important;
    border-left: 2px solid rgba(153, 50, 204, 0.3) !important;
    background: rgba(153, 50, 204, 0.05) !important;
    border-radius: 0 6px 6px 0 !important;
  }

  /* Subcategory items */
  .site-navigation .navigation-list>li.has-children>ul>li {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Subcategory links - beautiful styling */
  .site-navigation .navigation-list>li.has-children>ul>li>a {
    display: flex !important;
    align-items: center !important;
    padding: 8px 12px !important;
    color: #b8b8b8 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    position: relative !important;
  }

  /* Add subtle indicator before subcategory links */
  .site-navigation .navigation-list>li.has-children>ul>li>a::before {
    content: '→' !important;
    margin-right: 8px !important;
    opacity: 0.5 !important;
    font-size: 12px !important;
    transition: all 0.2s ease !important;
  }

  /* Hover state for subcategory links */
  .site-navigation .navigation-list>li.has-children>ul>li>a:hover {
    background: rgba(153, 50, 204, 0.15) !important;
    color: #ffffff !important;
    padding-left: 16px !important;
  }

  .site-navigation .navigation-list>li.has-children>ul>li>a:hover::before {
    opacity: 1 !important;
    color: #9932CC !important;
    transform: translateX(2px) !important;
  }

  /* Active subcategory */
  .site-navigation .navigation-list>li.has-children>ul>li>a.link-active {
    background: rgba(153, 50, 204, 0.2) !important;
    color: #9932CC !important;
    font-weight: 600 !important;
  }

  .site-navigation .navigation-list>li.has-children>ul>li>a.link-active::before {
    color: #9932CC !important;
    opacity: 1 !important;
  }


  /* Basket button - hide from menu, show as floating */
  .site-navigation .basket-nav-item {
    display: none !important;
  }

  /* Close button */
  .site-navigation .close-navigation {
    display: none !important;
  }

  /* Smooth scrolling for mobile menu */
  .site-navigation {
    scroll-behavior: smooth !important;
  }

  /* Better touch feedback */
  .site-navigation .navigation-list>li>a,
  .site-navigation .user-dropdown-item {
    -webkit-tap-highlight-color: transparent !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
  }

  /* Active touch state */
  .site-navigation .navigation-list>li>a:active,
  .site-navigation .user-dropdown-item:active {
    transform: scale(0.98) !important;
  }

  /* Login button styling */
  .site-navigation .login-nav-item {
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .site-navigation .btn-fivem-login {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 8px !important;
    color: #b8b8b8 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    text-align: left !important;
  }

  .site-navigation .btn-fivem-login:hover,
  .site-navigation .btn-fivem-login:active {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
  }

  .site-navigation .btn-fivem-login .fivem-logo svg {
    width: 20px !important;
    height: 20px !important;
    color: #808080 !important;
  }

  .site-navigation .btn-fivem-login:hover .fivem-logo svg {
    color: #ffffff !important;
  }

  .site-navigation .btn-fivem-login .login-text {
    flex: 1 !important;
  }
}

/* ============================================
   DESKTOP SUBCATEGORY DROPDOWN STYLING
   ============================================ */
@media (min-width: 961px) {

  /* Keep toggle button visible on desktop */
  .navigation-horizontal .has-children .toggle {
    display: flex !important;
    transition: transform 0.2s ease !important;
  }

  /* Rotate toggle when open */
  .navigation-horizontal .has-children.open .toggle {
    transform: rotate(180deg) !important;
  }

  /* Ensure dropdown positioning */
  .navigation-horizontal .has-children {
    position: relative !important;
  }

  /* Subcategory dropdown - clean minimal design matching store theme */
  .navigation-horizontal .has-children>ul {
    /* Positioning */
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 200px !important;

    /* Visual styling - matching purple theme */
    background: linear-gradient(135deg, #1a1a1f 0%, #15151a 100%) !important;
    border: 1px solid rgba(153, 50, 204, 0.3) !important;
    border-radius: 8px !important;
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(153, 50, 204, 0.1) inset !important;

    /* Spacing */
    padding: 8px !important;
    margin-top: 8px !important;

    /* Hidden by default */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-12px) scale(0.95) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;

    /* Z-index */
    z-index: 1000 !important;
  }

  /* Show dropdown when open class is added */
  .navigation-horizontal .has-children.open>ul {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    display: block !important;
  }

  /* Subcategory list items */
  .navigation-horizontal .has-children>ul>li {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Subcategory link styling - matching theme */
  .navigation-horizontal li li a {
    /* Layout */
    display: inline-flex !important;
    align-items: center !important;
    width: 100% !important;
    padding: 10px 14px !important;

    /* Typography */
    color: #b8b8b8 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    white-space: nowrap !important;

    /* Border radius */
    border-radius: 6px !important;

    /* Transition */
    transition: all 0.2s ease !important;
  }

  /* Hover state - purple theme */
  .navigation-horizontal li li a:hover {
    background: linear-gradient(90deg,
        rgba(153, 50, 204, 0.15) 0%,
        rgba(153, 50, 204, 0.08) 100%) !important;
    color: #ffffff !important;
    transform: translateX(4px) !important;
  }

  /* Active/selected state - purple accent */
  .navigation-horizontal li li a.link-active {
    background: linear-gradient(90deg,
        rgba(153, 50, 204, 0.25) 0%,
        rgba(153, 50, 204, 0.15) 100%) !important;
    color: #9932CC !important;
    font-weight: 600 !important;
    border-left: 3px solid #9932CC !important;
    padding-left: 11px !important;
  }
}

/* Dark overlay when mobile menu is open */
@media (max-width: 960px) {
  .navigation-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }

  body.show-navigation .navigation-backdrop {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Prevent body scroll when menu is open */
body.show-navigation {
  overflow: hidden !important;
}

/* ============================================
   3. HEADER MOBILE FIX
   ============================================ */

@media (max-width: 960px) {
  .site-header {
    padding: 10px 15px !important;
  }

  .site-header-inner {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .site-header-inner .actions {
    order: 3 !important;
    position: static !important;
  }

  .site-title {
    order: 1 !important;
    flex: 1 !important;
  }

  .site-title img {
    max-height: 40px !important;
  }

  /* Hide server/discord info on very small screens */
  .site-header-inner .info {
    display: none !important;
  }
}

@media (min-width: 480px) and (max-width: 960px) {
  .site-header-inner .info {
    display: flex !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}

/* ============================================
   4. PRODUCT CARDS MOBILE
   ============================================ */

@media (max-width: 768px) {

  /* Product grid */
  .store-products-images,
  .store-products-list {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 15px !important;
  }

  /* Product cards */
  .store-product {
    padding: 15px !important;
  }

  .store-product .product-title {
    font-size: 18px !important;
  }

  .store-product .product-actions {
    flex-wrap: wrap !important;
  }

  .store-product .product-actions button,
  .store-product .product-actions a {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ============================================
   5. BASKET/CART BUTTON MOBILE
   ============================================ */

@media (max-width: 960px) {
  .basket-nav-item .nav-basket-btn {
    width: 50px !important;
    height: 50px !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9997 !important;
    border-radius: 50% !important;
    background: var(--color-primary, #a0a0a0) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
  }

  .basket-nav-item .basket-count {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 6px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 11px !important;
    background: #ff4444 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Hide basket in navigation, show floating button instead */
  .site-navigation .basket-nav-item {
    position: static !important;
  }
}

/* ============================================
   6. USER DROPDOWN MOBILE
   ============================================ */

@media (max-width: 960px) {
  .user-profile-nav .user-dropdown-menu {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: 70vh !important;
    border-radius: 20px 20px 0 0 !important;
    transform: translateY(100%) !important;
    transition: transform 0.3s ease !important;
  }

  .user-profile-nav.open .user-dropdown-menu {
    transform: translateY(0) !important;
  }

  .user-dropdown-item {
    padding: 16px 20px !important;
    font-size: 16px !important;
  }
}

/* ============================================
   7. FORMS & INPUTS MOBILE
   ============================================ */

@media (max-width: 768px) {

  input[type="text"],
  input[type="email"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important;
    /* Prevents iOS zoom on focus */
    padding: 12px 16px !important;
  }

  button,
  .btn-primary,
  .btn-secondary {
    min-height: 44px !important;
    /* Touch-friendly size */
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
}

/* ============================================
   8. DISCOUNT TOAST MOBILE (our new banner)
   ============================================ */

@media (max-width: 768px) {
  .discount-toast {
    position: fixed !important;
    bottom: 80px !important;
    /* Above floating cart button */
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: calc(100% - 24px) !important;
    transform: translateY(150%) !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.98) 0%, rgba(15, 15, 20, 0.95) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(153, 50, 204, 0.3) !important;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(153, 50, 204, 0.1) inset,
      0 0 40px rgba(153, 50, 204, 0.15) !important;
    opacity: 0 !important;
    z-index: 1000 !important;
  }

  .discount-toast.is-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  /* Icon - smaller on mobile */
  .discount-toast__icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, rgba(153, 50, 204, 0.2) 0%, rgba(153, 50, 204, 0.15) 100%) !important;
    border: 1px solid rgba(153, 50, 204, 0.3) !important;
    border-radius: 8px !important;
  }

  .discount-toast__icon svg {
    width: 18px !important;
    height: 18px !important;
    color: #9932CC !important;
  }

  /* Content - compact */
  .discount-toast__content {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .discount-toast__title {
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    margin: 0 0 4px 0 !important;
  }

  .discount-toast__desc {
    font-size: 11px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    margin: 0 !important;
  }

  .discount-toast__desc strong {
    color: #9932CC !important;
    font-weight: 700 !important;
  }

  /* Actions - compact */
  .discount-toast__actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }

  .discount-toast__btn {
    padding: 8px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    min-height: 36px !important;
    white-space: nowrap !important;
    background: linear-gradient(135deg, #9932CC 0%, #7B2CBF 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(153, 50, 204, 0.4) !important;
  }

  .discount-toast__btn:hover {
    background: linear-gradient(135deg, #BA55D3 0%, #9932CC 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(153, 50, 204, 0.5) !important;
  }

  .discount-toast__btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(153, 50, 204, 0.4) !important;
  }

  .discount-toast__close {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 9px !important;
    flex-shrink: 0 !important;
    background: rgba(153, 50, 204, 0.2) !important;
    border: 1.5px solid rgba(153, 50, 204, 0.4) !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  }

  .discount-toast__close:hover {
    background: rgba(153, 50, 204, 0.35) !important;
    border-color: rgba(153, 50, 204, 0.6) !important;
    color: #ffffff !important;
    transform: scale(1.08) !important;
    box-shadow: 0 4px 12px rgba(153, 50, 204, 0.4) !important;
  }

  .discount-toast__close:active {
    transform: scale(0.95) !important;
    box-shadow: 0 2px 6px rgba(153, 50, 204, 0.3) !important;
  }
}

@media (max-width: 480px) {
  .discount-toast {
    bottom: 70px !important;
    left: 10px !important;
    right: 10px !important;
    padding: 10px 12px !important;
    gap: 8px !important;
    border-radius: 10px !important;
  }

  .discount-toast.is-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  .discount-toast__icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
  }

  .discount-toast__icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .discount-toast__title {
    font-size: 12px !important;
    margin-bottom: 3px !important;
  }

  .discount-toast__desc {
    font-size: 10px !important;
  }

  .discount-toast__btn {
    padding: 7px 12px !important;
    font-size: 11px !important;
    min-height: 34px !important;
  }

  .discount-toast__close {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    border-width: 1.5px !important;
  }
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce) {
  @media (max-width: 768px) {
    .discount-toast {
      transition: opacity 0.2s ease !important;
    }

    .discount-toast.is-visible {
      transform: translateY(0) !important;
    }
  }
}

/* ============================================
   9. MODAL/POPUP MOBILE
   ============================================ */

@media (max-width: 768px) {
  .popup {
    padding: 0 !important;
  }

  .popup-content {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  .basket-popup .popup-content {
    padding: 80px 20px 20px !important;
  }
}

/* ============================================
   10. TOUCH IMPROVEMENTS
   ============================================ */

@media (pointer: coarse) {

  /* Increase tap target sizes */
  a,
  button,
  [role="button"] {
    min-width: 44px !important;
    min-height: 44px !important;
  }

  /* Better hover states for touch */
  a:active,
  button:active,
  [role="button"]:active {
    opacity: 0.7 !important;
  }

  /* Remove hover effects on touch devices */
  @media (hover: none) {
    *:hover {
      /* Disable hover on touch devices */
    }
  }
}

/* ============================================
   11. LANDSCAPE ORIENTATION FIX
   ============================================ */

@media (max-width: 960px) and (orientation: landscape) {
  .site-navigation {
    padding: 60px 20px 20px !important;
  }

  .discount-toast {
    bottom: 10px !important;
  }
}

/* ============================================
   12. SAFE AREA FOR NOTCH DEVICES (iPhone X+)
   ============================================ */

@supports (padding: max(0px)) {
  @media (max-width: 960px) {
    .site-header {
      padding-left: max(15px, env(safe-area-inset-left)) !important;
      padding-right: max(15px, env(safe-area-inset-right)) !important;
      padding-top: max(10px, env(safe-area-inset-top)) !important;
    }

    .site-navigation {
      padding-left: max(20px, env(safe-area-inset-left)) !important;
      padding-right: max(20px, env(safe-area-inset-right)) !important;
      padding-bottom: max(40px, env(safe-area-inset-bottom)) !important;
    }

    .basket-nav-item .nav-basket-btn {
      bottom: max(20px, env(safe-area-inset-bottom)) !important;
      right: max(20px, env(safe-area-inset-right)) !important;
    }
  }
}

/* ============================================
   13. LOADING STATES (prevent layout shift)
   ============================================ */

@media (max-width: 768px) {

  .store-product,
  .widget {
    contain: layout style !important;
  }
}

/* ============================================
   14. PERFORMANCE OPTIMIZATIONS
   ============================================ */

@media (max-width: 960px) {

  /* Enable GPU acceleration for smooth animations */
  .toggle-navigation,
  .site-navigation,
  .discount-toast,
  .user-dropdown-menu {
    will-change: transform !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
  }

  /* Reduce motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}

/* ============================================
   11. HERO SECTION MOBILE IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {

  /* Site Title (Logo) - Position on top left */
  .site-header-inner .site-title {
    position: absolute !important;
    top: 12px !important;
    left: 16px !important;
    right: auto !important;
    margin: 0 !important;
    width: auto !important;
    flex: none !important;
    order: 0 !important;
    text-align: left !important;
  }

  .site-header-inner .site-title img {
    max-height: 36px !important;
    margin: 0 !important;
  }

  /* Hero Section - Reduce top padding to bring content closer to top */
  .hero-section {
    padding-top: 20px !important;
  }

  /* Hero Content - Center alignment */
  .hero-content {
    text-align: center !important;
  }

  /* Hero Headline - Move closer to top and center */
  .hero-headline {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    font-size: clamp(28px, 6vw, 40px) !important;
    padding-top: 0 !important;
  }

  /* Remove Hero Subcopy on mobile */
  .hero-subcopy {
    display: none !important;
  }

  /* Hero Buttons - Make smaller and position one left, one right */
  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 24px !important;
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
  }

  .hero-cta {
    flex: 1 !important;
    height: 44px !important;
    padding: 0 20px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    min-width: 0 !important;
    max-width: none !important;
    position: relative !important;
    z-index: 11 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(153, 50, 204, 0.3) !important;
  }

  .hero-cta i {
    font-size: 14px !important;
    pointer-events: none !important;
  }
}

@media (max-width: 480px) {

  /* Extra small screens - even smaller buttons */
  .hero-cta {
    height: 40px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  .hero-headline {
    font-size: clamp(24px, 7vw, 32px) !important;
    padding-top: 16px !important;
  }
}

/* ============================================
   12. HERO LOGO & VISUAL MOBILE CHANGES
   ============================================ */

@media (max-width: 768px) {

  /* Hero container - single column */
  .hero-container {
    grid-template-columns: 1fr !important;
    position: relative !important;
  }

  /* Position hero-visual at top center, above hero-content */
  .hero-visual {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 200px !important;
    max-width: 80% !important;
    height: auto !important;
    display: block !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .hero-visual .hero-logo {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    opacity: 1 !important;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2)) !important;
    animation: none !important;
    display: block !important;
  }

  /* Move hero-logo to top center of hero-content */
  .hero-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-top: 0 !important;
    margin-top: 200px !important;
    z-index: 2 !important;
    pointer-events: auto !important;
  }

  /* Adjust hero-headline margin after logo */
  .hero-content .hero-headline {
    margin-top: 0 !important;
  }
}

/* ============================================
   13. FEATURES SECTION MOBILE - REMOVE
   ============================================ */

@media (max-width: 768px) {
  .features-section {
    display: none !important;
  }
}

/* ============================================
   14. FOOTER MOBILE - LIST STYLE
   ============================================ */

@media (max-width: 768px) {
  .footer-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .footer-col {
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .footer-col:not(:last-child) {
    margin-bottom: 0 !important;
    padding-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}

/* ============================================
   15. MAIN CONTENT CLOSE TO HEADER MOBILE
   ============================================ */

@media (max-width: 768px) {
  #main-content {
    margin-top: -100px !important;
    padding-top: 0 !important;
  }

  .hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Remove any spacing from site wrapper */
  .site {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* Remove spacing from hero-content */
  .hero-content {
    margin-top: 180px !important;
    padding-top: 0 !important;
  }
}

/* ============================================
   16. MEDIA NAVIGATION BUTTONS - MOBILE CLICKABLE
   ============================================ */

@media (max-width: 768px) {

  /* Make media navigation buttons always visible and clickable on mobile */
  .store-product.store-product-full .product-media .media-viewport-wrapper {
    position: relative !important;
  }

  .store-product.store-product-full .product-media .media-nav,
  .store-product.store-product-full .product-media .media-nav-prev,
  .store-product.store-product-full .product-media .media-nav-next {
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    z-index: 100 !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2) !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Ensure no parent elements block pointer events */
  .store-product.store-product-full .product-media .media-viewport-wrapper,
  .store-product.store-product-full .product-media .image-display,
  .store-product.store-product-full .product-media .screen {
    pointer-events: auto !important;
  }

  /* Ensure media-viewport doesn't block clicks on buttons - but allow slides to be interactive */
  .store-product.store-product-full .product-media .media-viewport {
    pointer-events: auto !important;
  }

  .store-product.store-product-full .product-media .media-viewport .media-slide {
    pointer-events: auto !important;
  }

  /* Ensure buttons are above everything and clickable */
  .store-product.store-product-full .product-media .media-nav-prev,
  .store-product.store-product-full .product-media .media-nav-next {
    z-index: 1000 !important;
    pointer-events: auto !important;
  }

  .store-product.store-product-full .product-media .media-viewport-wrapper:hover .media-nav {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .store-product.store-product-full .product-media .media-nav:active,
  .store-product.store-product-full .product-media .media-nav-prev:active,
  .store-product.store-product-full .product-media .media-nav-next:active {
    background: rgba(153, 50, 204, 0.4) !important;
    transform: translateY(-50%) scale(0.95) !important;
  }

  .store-product.store-product-full .product-media .media-nav-prev {
    left: 8px !important;
    right: auto !important;
  }

  .store-product.store-product-full .product-media .media-nav-next {
    right: 8px !important;
    left: auto !important;
  }

  /* Ensure buttons are large enough for touch */
  .store-product.store-product-full .product-media .media-nav i,
  .store-product.store-product-full .product-media .media-nav svg,
  .store-product.store-product-full .product-media .media-nav-prev i,
  .store-product.store-product-full .product-media .media-nav-prev svg,
  .store-product.store-product-full .product-media .media-nav-next i,
  .store-product.store-product-full .product-media .media-nav-next svg {
    width: 24px !important;
    height: 24px !important;
    font-size: 20px !important;
    pointer-events: none !important;
  }
}

/* Make buttons visible on touch devices */
@media (hover: none) and (pointer: coarse) {

  .store-product.store-product-full .product-media .media-nav,
  .store-product.store-product-full .product-media .media-nav-prev,
  .store-product.store-product-full .product-media .media-nav-next {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* ============================================
   17. PRODUCT INFO PANEL - MOBILE SMALLER CONTENT
   ============================================ */

@media (max-width: 768px) {

  /* Reduce padding and gaps */
  .store-product.store-product-full .product-info-panel {
    padding: 14px !important;
    gap: 10px !important;
  }

  /* Smaller product title */
  .store-product.store-product-full .product-info-panel .product-title {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }

  /* Smaller price */
  .store-product.store-product-full .product-info-panel .price-value {
    font-size: 1rem !important;
  }

  /* Smaller product description */
  .store-product.store-product-full .product-info-panel .product-description {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* Smaller product header */
  .store-product.store-product-full .product-header {
    padding-bottom: 8px !important;
    gap: 6px !important;
    margin-bottom: 8px !important;
  }

  /* Smaller price section */
  .store-product.store-product-full .product-price-section {
    padding: 10px !important;
    gap: 8px !important;
  }

  /* Smaller trust indicators */
  .store-product.store-product-full .product-trust-indicators {
    gap: 10px !important;
    padding: 8px 0 !important;
  }

  .store-product.store-product-full .product-trust-indicators .trust-item {
    font-size: 0.75rem !important;
    gap: 6px !important;
  }

  .store-product.store-product-full .product-trust-indicators .trust-item i {
    font-size: 0.875rem !important;
  }

  /* Smaller action buttons */
  .store-product.store-product-full .product-info-panel .actions {
    gap: 10px !important;
  }

  .store-product.store-product-full .product-info-panel .actions .btn {
    padding: 10px 16px !important;
    font-size: 0.875rem !important;
    min-height: 40px !important;
  }

  /* Smaller form elements */
  .store-product.store-product-full .product-info-panel .store-form {
    gap: 10px !important;
  }

  .store-product.store-product-full .product-info-panel .store-form label {
    font-size: 0.875rem !important;
    margin-bottom: 6px !important;
  }

  .store-product.store-product-full .product-info-panel .store-form input,
  .store-product.store-product-full .product-info-panel .store-form select,
  .store-product.store-product-full .product-info-panel .store-form textarea {
    padding: 8px 12px !important;
    font-size: 0.875rem !important;
    min-height: 38px !important;
  }
}

@media (max-width: 480px) {

  /* Even smaller on very small screens */
  .store-product.store-product-full .product-info-panel {
    padding: 12px !important;
    gap: 8px !important;
  }

  .store-product.store-product-full .product-info-panel .product-title {
    font-size: 0.9375rem !important;
  }

  .store-product.store-product-full .product-info-panel .price-value {
    font-size: 0.9375rem !important;
  }

  .store-product.store-product-full .product-info-panel .product-description {
    font-size: 0.8125rem !important;
  }

  .store-product.store-product-full .product-info-panel .actions .btn {
    padding: 9px 14px !important;
    font-size: 0.8125rem !important;
    min-height: 38px !important;
  }
}

/* ============================================
   18. PRODUCT ACTIONS - MOBILE REDESIGN
   ============================================ */

@media (max-width: 768px) {

  /* Actions wrapper - compact design */
  .store-product.store-product-full .product-actions-wrapper {
    margin: 0 !important;
    padding: 0 !important;
  }

  .store-product.store-product-full .product-actions-wrapper .actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* Button group - horizontal layout on mobile */
  .store-product.store-product-full .product-actions-wrapper .actions .button-group {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 100% !important;
  }

  /* Primary action buttons - compact */
  .store-product.store-product-full .product-actions-wrapper .actions .btn-primary,
  .store-product.store-product-full .product-actions-wrapper .actions .add,
  .store-product.store-product-full .product-actions-wrapper .actions .subscribe {
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 10px 16px !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    gap: 8px !important;
    box-shadow: 0 2px 8px rgba(153, 50, 204, 0.3) !important;
  }

  .store-product.store-product-full .product-actions-wrapper .actions .btn-primary:hover,
  .store-product.store-product-full .product-actions-wrapper .actions .add:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(153, 50, 204, 0.4) !important;
  }

  .store-product.store-product-full .product-actions-wrapper .actions .btn-primary:active,
  .store-product.store-product-full .product-actions-wrapper .actions .add:active {
    transform: translateY(0) !important;
  }

  /* Secondary button (gift button) - smaller */
  .store-product.store-product-full .product-actions-wrapper .actions .btn-secondary,
  .store-product.store-product-full .product-actions-wrapper .actions .btn-icon,
  .store-product.store-product-full .product-actions-wrapper .actions .gift {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
  }

  .store-product.store-product-full .product-actions-wrapper .actions .btn-secondary i,
  .store-product.store-product-full .product-actions-wrapper .actions .btn-icon i,
  .store-product.store-product-full .product-actions-wrapper .actions .gift i {
    font-size: 1rem !important;
    margin: 0 !important;
  }
}

/* ============================================
   19. PRODUCT TRUST INDICATORS - MOBILE REDESIGN
   ============================================ */

@media (max-width: 768px) {

  /* Trust indicators - compact horizontal layout */
  .store-product.store-product-full .product-trust-indicators {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    background: rgba(153, 50, 204, 0.06) !important;
    border: 1px solid rgba(153, 50, 204, 0.15) !important;
    border-radius: 12px !important;
    margin: 0 !important;
  }

  /* Trust items - compact design */
  .store-product.store-product-full .product-trust-indicators .trust-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    text-align: left !important;
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .store-product.store-product-full .product-trust-indicators .trust-item i {
    color: #9932CC !important;
    font-size: 0.875rem !important;
    width: 16px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  .store-product.store-product-full .product-trust-indicators .trust-item span {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
}

@media (max-width: 480px) {

  /* Even more compact on very small screens */
  .store-product.store-product-full .product-trust-indicators {
    padding: 8px 10px !important;
    gap: 6px !important;
  }

  .store-product.store-product-full .product-trust-indicators .trust-item {
    font-size: 0.65rem !important;
    gap: 4px !important;
  }

  .store-product.store-product-full .product-trust-indicators .trust-item i {
    font-size: 0.75rem !important;
    width: 14px !important;
  }
}

/* ============================================
   20. PRODUCT DESCRIPTION INNER - MOBILE REDESIGN
   ============================================ */

@media (max-width: 768px) {

  /* Description section - compact */
  .store-product.store-product-full .product-description-inner {
    padding-top: 12px !important;
    border-top: 1px solid rgba(153, 50, 204, 0.15) !important;
    margin-top: 0 !important;
  }

  /* Description title - smaller */
  .store-product.store-product-full .product-description-inner .description-title {
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 10px 0 !important;
    padding-bottom: 6px !important;
    border-bottom: 1px solid rgba(153, 50, 204, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .store-product.store-product-full .product-description-inner .description-title i {
    color: #9932CC !important;
    font-size: 0.9375rem !important;
  }

  /* Description content - smaller text */
  .store-product.store-product-full .product-description-inner .description-content {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.5 !important;
    font-size: 0.8125rem !important;
  }

  .store-product.store-product-full .product-description-inner .description-content p {
    margin: 0 0 8px 0 !important;
  }

  .store-product.store-product-full .product-description-inner .description-content p:last-child {
    margin-bottom: 0 !important;
  }

  /* Headings in description */
  .store-product.store-product-full .product-description-inner .description-content h1 {
    font-size: 1.125rem !important;
    margin-top: 16px !important;
    margin-bottom: 10px !important;
  }

  .store-product.store-product-full .product-description-inner .description-content h2 {
    font-size: 1rem !important;
    margin-top: 14px !important;
    margin-bottom: 8px !important;
  }

  .store-product.store-product-full .product-description-inner .description-content h3 {
    font-size: 0.9375rem !important;
    margin-top: 12px !important;
    margin-bottom: 8px !important;
  }

  /* Lists in description */
  .store-product.store-product-full .product-description-inner .description-content ul,
  .store-product.store-product-full .product-description-inner .description-content ol {
    margin: 12px 0 !important;
    padding-left: 20px !important;
  }

  .store-product.store-product-full .product-description-inner .description-content li {
    margin: 6px 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  /* Code blocks */
  .store-product.store-product-full .product-description-inner .description-content code {
    background: rgba(153, 50, 204, 0.15) !important;
    padding: 2px 5px !important;
    border-radius: 4px !important;
    font-size: 0.85em !important;
  }

  /* Blockquotes */
  .store-product.store-product-full .product-description-inner .description-content blockquote {
    border-left: 2px solid rgba(153, 50, 204, 0.4) !important;
    padding-left: 12px !important;
    margin: 12px 0 !important;
    color: rgba(255, 255, 255, 0.65) !important;
  }
}

@media (max-width: 480px) {

  /* Even smaller on very small screens */
  .store-product.store-product-full .product-description-inner .description-title {
    font-size: 0.875rem !important;
    margin-bottom: 8px !important;
  }

  .store-product.store-product-full .product-description-inner .description-content {
    font-size: 0.75rem !important;
  }
}

/* ===== CAROUSEL SUBSCRIBE BUTTON FIX ===== */
/* Ensure subscribe buttons are visible and match Add to Basket button style */
.products-carousel-track article.product .product-actions .subscribe {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Add calendar icon before Subscribe text */
.products-carousel-track article.product .product-actions .subscribe::before {
  content: '\f073';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 8px;
  font-size: 16px;
}