/* Mobile-specific styles - Snowcrest Naturals Public Website */
/* Applied only on mobile devices (max-width: 991.98px) */

/* Mobile Media Query - applies to tablets and mobile devices */
@media (max-width: 991.98px) {

  /* Hide desktop header on mobile */
  .desktop-header-wrapper {
    display: none !important;
  }

  /* Mobile Top Bar */
  .mobile-topbar {
    background-color: #FFDDD3 !important;
  }

  .mobile-topbar-text {
    color: #000;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 18px;
  }

  /* Mobile Header */
  .mobile-header {
    background-color: #91B6BF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  /* Mobile Menu Button */
  .mobile-menu-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }

  .mobile-menu-btn:active {
    transform: scale(0.95);
  }

  /* Mobile Logo */
  .mobile-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
  }

  .mobile-logo-link {
    display: inline-block;
  }

  /* Mobile Action Icons Container */
  .mobile-action-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  /* Mobile Search Toggle Button */
  .mobile-search-toggle-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.95;
  }

  .mobile-search-toggle-btn:hover {
    opacity: 1;
  }

  .mobile-search-toggle-btn:active {
    transform: scale(0.95);
  }

  /* Mobile Cart Button */
  .mobile-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.95;
    position: relative;
  }

  .mobile-cart-btn:hover {
    opacity: 1;
  }

  .mobile-cart-btn:active {
    transform: scale(0.95);
  }

  .mobile-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #fff;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }

  /* Mobile Search Container - Collapsible */
  .mobile-search-container {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
  }

  .mobile-search-container.open {
    max-height: 100px;
    opacity: 1;
    margin-top: 16px;
  }

  /* Mobile Search Form */
  .mobile-search-form {
    position: relative;
    width: 100%;
  }

  .mobile-search-input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 25px;
    padding: 12px 50px 12px 20px;
    font-size: 14px;
    color: #202020;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
  }

  .mobile-search-input::placeholder {
    color: #999;
  }

  .mobile-search-input:focus {
    outline: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  }

  .mobile-search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }

  .mobile-search-btn:active {
    opacity: 0.7;
  }

  /* Mobile Drawer Overlay */
  .mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Drawer */
  .mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background-color: #fff;
    z-index: 1999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
  }

  .mobile-drawer.open {
    left: 0;
  }

  /* Mobile Drawer Header */
  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #91B6BF;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .mobile-drawer-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
  }

  .mobile-drawer-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }

  .mobile-drawer-close:active {
    transform: scale(0.95);
  }

  /* Mobile Drawer Content */
  .mobile-drawer-content {
    padding: 0;
  }

  /* Mobile User Actions */
  .mobile-user-actions {
    padding: 20px 0;
    background-color: #f9f9f9;
  }

  .mobile-action-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    position: relative;
  }

  .mobile-action-item:hover {
    background-color: #f0f0f0;
    color: #286169;
  }

  .mobile-action-item svg {
    margin-right: 15px;
    flex-shrink: 0;
  }

  .mobile-action-item span {
    flex: 1;
  }

  .mobile-action-badge {
    background-color: var(--orgref-to);
    background-image: var(--orgref-bg);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
  }

  /* Mobile Drawer Divider */
  .mobile-drawer-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 20px;
  }

  /* Mobile Navigation */
  .mobile-nav {
    padding: 20px 0;
  }

  .mobile-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 20px;
    margin-bottom: 10px;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-nav-item:last-child {
    border-bottom: none;
  }

  .mobile-nav-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
  }

  .mobile-nav-link:hover {
    background-color: #FFFBE9;
    color: #286169;
    padding-left: 30px;
  }

  .mobile-nav-link::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .mobile-nav-link:hover::after {
    opacity: 1;
  }

  /* Mobile Navigation Bar - Hide on Mobile */
  .navigationBar {
    display: none !important;
  }
}

/* Hide mobile header on desktop */
@media (min-width: 992px) {
  .mobile-header,
  .mobile-topbar,
  .mobile-drawer,
  .mobile-drawer-overlay {
    display: none !important;
  }
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}

/* Smooth scrolling for mobile drawer */
.mobile-drawer {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #91B6BF #f0f0f0;
}

.mobile-drawer::-webkit-scrollbar {
  width: 6px;
}

.mobile-drawer::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.mobile-drawer::-webkit-scrollbar-thumb {
  background-color: #91B6BF;
  border-radius: 3px;
}

/* Mobile-specific animations */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Touch feedback for mobile */
@media (max-width: 991.98px) {
  .mobile-menu-btn:active,
  .mobile-cart-btn:active,
  .mobile-search-btn:active,
  .mobile-drawer-close:active {
    opacity: 0.7;
  }

  .mobile-action-item:active,
  .mobile-nav-link:active {
    background-color: #e8f4f8;
  }

  /* ============================================
     MOBILE HORIZONTAL SCROLL STYLES
     ============================================ */

  /* Mobile Section Container */
  .mobile-section {
    overflow: hidden;
  }

  .mobile-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  /* Horizontal Scroll Wrapper */
  .mobile-horizontal-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .mobile-horizontal-scroll::-webkit-scrollbar {
    display: none;
  }

  /* Scroll Container */
  .mobile-scroll-container {
    display: flex;
    gap: 16px;
    padding: 0 16px 20px 16px;
    width: max-content;
  }

  /* Scroll Items - Products */
  .mobile-scroll-item {
    flex: 0 0 280px;
    width: 280px;
    scroll-snap-align: start;
  }

  /* Product Cards in Mobile View */
  .mobile-scroll-item .product-card {
    height: 100%;
  }

  .mobile-scroll-item .product-card .card-img-top,
  .mobile-scroll-item .product-card .card a img {
        height: 375px;
        object-fit: contain;
        min-width: 250px !important;
  }

  .mobile-scroll-item .card {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-scroll-item .card:active {
    transform: scale(0.98);
  }

  /* Categories Scroll */
  .mobile-categories-scroll {
    gap: 12px;
  }

  .mobile-category-item {
    flex: 0 0 calc(50% - 6px);
    width: calc(50% - 6px);
    max-width: 200px;
  }

  .mobile-category-item .categories-panel-bg-white {
    background-color: #ffffff;
    border: solid 1px #E9DBB9;
    border-radius: 10px;
    padding: 20px 15px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .mobile-category-item .categories-panel-bg-white:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-category-item .categories-title {
    margin: 12px 0;
    color: #000;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
  }

  /* Testimonials Scroll */
  .mobile-testimonials-scroll {
    gap: 16px;
  }

  .mobile-testimonial-item {
    flex: 0 0 300px;
    width: 300px;
  }

  .mobile-testimonial-item .testimonial-card {
    background-color: #F4EDDB;
    border: solid 1px #cccccc !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    transition: transform 0.2s ease;
  }

  .mobile-testimonial-item .testimonial-card:active {
    transform: scale(0.98);
  }

  /* Blog Scroll */
  .mobile-blog-scroll {
    gap: 16px;
  }

  .mobile-blog-item {
    flex: 0 0 280px;
    width: 280px;
  }

  .mobile-blog-item .card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.2s ease;
  }

  .mobile-blog-item .card:active {
    transform: scale(0.98);
  }

  .mobile-blog-item .card img {
    height: 180px;
    object-fit: cover;
  }

  .mobile-blog-item .blog-card-body {
    padding: 16px;
  }

  .mobile-blog-item .blog-card-body h5.card-title {
    font-size: 16px !important;
    font-weight: 600;
    min-height: auto;
    margin-bottom: 10px;
  }

  .mobile-blog-item .blog-card-body p.card-text {
    font-size: 13px;
    line-height: 20px;
    min-height: auto;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Section Headings for Mobile */
  .mobile-section h2 {
    font-size: 32px !important;
    margin-bottom: 20px !important;
    padding: 0 16px;
  }

  .mobile-section .small-paragraph {
    padding: 0 16px;
    font-size: 14px;
  }

  /* Section padding overrides for mobile */
  .featured-product-section {
    padding: 60px 0 !important;
  }

  .best-seller-section {
    padding: 60px 0 !important;
  }

  .product-categories-section {
    padding: 60px 0 !important;
  }

  .testimonials-section {
    padding: 60px 0 !important;
  }

  .blogs-sections {
    padding: 0 0 60px !important;
  }

  .snowcrest-mission-section {
    padding: 60px 0 !important;
  }

  .newsletter-section {
    padding: 60px 0 !important;
  }

  /* Touch feedback improvements */
  .mobile-scroll-item .btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* Smooth momentum scrolling */
  .mobile-horizontal-scroll {
    scroll-snap-type: x proximity;
    scroll-padding: 16px;
  }

  /* Loading state for mobile */
  .mobile-section .spinner-border {
    margin: 40px auto;
  }
}

/* Smaller mobile devices */
@media (max-width: 767.98px) {
  .mobile-scroll-item {
    flex: 0 0 260px;
    width: 260px;
  }

  .mobile-category-item {
    flex: 0 0 calc(50% - 6px);
    width: calc(50% - 6px);
    max-width: 180px;
  }

  .mobile-testimonial-item {
    flex: 0 0 280px;
    width: 280px;
  }

  .mobile-blog-item {
    flex: 0 0 260px;
    width: 260px;
  }

  .mobile-section h2 {
    font-size: 28px !important;
  }

  .mobile-product-item .card-img-top {
    height: 140px !important;
  }
}

/* Extra small devices */
@media (max-width: 575.98px) {
  .mobile-scroll-item {
    flex: 0 0 240px;
    width: 240px;
  }

  .mobile-category-item {
    flex: 0 0 calc(50% - 6px);
    width: calc(50% - 6px);
    max-width: 170px;
  }

  .mobile-category-item .categories-panel-bg-white {
    padding: 20px 15px;
    min-height: 120px;
  }

  .mobile-category-item .categories-panel-bg-white img {
    max-height: 80px !important;
  }

  .mobile-category-item .categories-title {
    font-size: 13px;
  }

  .mobile-testimonial-item {
    flex: 0 0 260px;
    width: 260px;
  }

  .mobile-blog-item {
    flex: 0 0 240px;
    width: 240px;
  }

  .mobile-section h2 {
    font-size: 24px !important;
  }

  .mobile-scroll-container {
    gap: 12px;
    padding: 0 12px 16px 12px;
  }

  .mobile-product-item .card-img-top {
    height: 130px !important;
  }

  .mobile-product-item .card-title {
    font-size: 13px !important;
  }
}

/* ============================================
   MOBILE FOOTER STYLES
   ============================================ */

@media (max-width: 991.98px) {
  /* Mobile Footer Container */
  .mobile-footer {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    padding-top: 0;
    margin-top: 40px;
  }

  /* Newsletter CTA Section */
  .mobile-newsletter-cta {
    background: linear-gradient(135deg, #286169 0%, #3a8469 100%);
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .mobile-newsletter-cta:active {
    transform: scale(0.98);
  }

  .newsletter-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
  }

  .newsletter-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
  }

  .newsletter-cta-text {
    flex: 1;
  }

  .newsletter-cta-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
  }

  .newsletter-cta-text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
  }

  .newsletter-cta-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Footer Content */
  .mobile-footer-content {
    padding: 24px 16px;
  }

  /* Footer Logo */
  .mobile-footer-logo {
    text-align: center;
    margin-bottom: 24px;
  }

  .mobile-footer-logo img {
    max-width: 180px;
    height: auto;
  }

  /* Accordion Sections */
  .mobile-footer-accordion {
    margin-bottom: 24px;
  }

  .accordion-item {
    border-bottom: 1px solid #e0e0e0;
  }

  .accordion-item:last-child {
    border-bottom: none;
  }

  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .accordion-header:active {
    background-color: #f5f5f5;
  }

  .accordion-header h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
  }

  .accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .accordion-icon.rotate {
    transform: rotate(180deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .accordion-content.expanded {
    max-height: 500px;
    padding-bottom: 16px;
  }

  .accordion-content ul {
    margin: 0;
    padding: 0;
  }

  .accordion-content ul li {
    margin-bottom: 12px;
  }

  .accordion-content ul li:last-child {
    margin-bottom: 0;
  }

  .accordion-content ul li a {
    color: #686868;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    padding: 4px 0;
  }

  .accordion-content ul li a:hover {
    color: #286169;
  }

  /* Copyright */
  .mobile-footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
  }

  .mobile-footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: #686868;
  }

  .mobile-footer-copyright strong {
    font-weight: 600;
    color: #333;
  }
}

/* ============================================
   BOTTOM SHEET STYLES
   ============================================ */

@media (max-width: 991.98px) {
  /* Bottom Sheet Overlay */
  .mobile-bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
  }

  .mobile-bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Bottom Sheet */
  .mobile-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    z-index: 2999;
    max-height: 90vh;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
  }

  .mobile-bottom-sheet.open {
    transform: translateY(0);
  }

  /* Handle Bar */
  .bottom-sheet-handle {
    padding: 12px 0 8px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  .handle-bar {
    width: 40px;
    height: 4px;
    background-color: #d0d0d0;
    border-radius: 2px;
    margin: 0 auto;
    transition: background-color 0.2s ease;
  }

  .bottom-sheet-handle:active .handle-bar {
    background-color: #a0a0a0;
  }

  /* Bottom Sheet Header */
  .bottom-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .bottom-sheet-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #286169;
    font-family: "Marcellus", serif;
  }

  .bottom-sheet-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
  }

  .bottom-sheet-close:active {
    background-color: #f0f0f0;
  }

  /* Bottom Sheet Content */
  .bottom-sheet-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
  }

  /* Prevent body scroll when bottom sheet is open */
  body.bottom-sheet-open {
    overflow: hidden;
  }
}

/* ============================================
   MOBILE PRODUCT LISTING STYLES
   ============================================ */

@media (max-width: 991.98px) {
  /* Product Listing Container */
  .mobile-product-listing {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding-bottom: 20px;
  }

  /* Header Section */
  .mobile-listing-header {
    background: linear-gradient(135deg, #286169 0%, #3a8469 100%);
    padding: 24px 16px;
    color: #fff;
    margin-bottom: 12px;
  }

  .listing-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.2;
  }

  /* Filter Bar */
  .mobile-filter-bar {
    background-color: #fff;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 12px;
  }

  .filter-bar-content {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    border: 1.5px solid #286169;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #286169;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
  }

  .filter-btn:active {
    transform: scale(0.96);
    background-color: #f0f0f0;
  }

  /* Products Container */
  .mobile-products-container {
    padding: 0 8px;
  }

  /* Products Grid - 2x2 */
  .mobile-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mobile-product-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-product-item:active {
    transform: scale(0.98);
  }

  .mobile-product-item .product-card {
    height: 100%;
  }

  .mobile-product-item .card {
    border: none;
    height: 100%;
  }

  .mobile-product-item .card-img-top {
    height: 250px !important;
    object-fit: contain;
  }

  .mobile-product-item .card-body {
    padding: 12px;
  }

  .mobile-product-item .card-title {
    font-size: 14px !important;
    line-height: 1.3;
    margin-bottom: 8px !important;
  }

  .mobile-product-item .text-muted.small {
    font-size: 11px !important;
  }

  .mobile-product-item .btn {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* ============================================
   MOBILE CHECKOUT STYLES
   ============================================ */

@media (max-width: 991.98px) {
  /* Main Container */
  .mobile-checkout {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding-bottom: 200px;
  }

  /* Header */
  .mobile-checkout-header {
    background: linear-gradient(135deg, #91b6bf 0%, #286169 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-checkout-header .checkout-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
  }

  /* Progress Indicator */
  .mobile-checkout-progress {
    background: white;
    padding: 24px 16px;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
  }

  .progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 4px;
  }

  .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
  }

  .progress-step .step-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .progress-step.active .step-circle {
    background-color: #286169;
    color: white;
  }

  .progress-step.completed .step-circle {
    background-color: #286169;
    color: white;
  }

  .progress-step .step-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
  }

  .progress-step.active .step-label {
    color: #286169;
    font-weight: 600;
  }

  /* Content Area */
  .mobile-checkout-content {
    padding: 20px 16px;
  }

  .checkout-step {
    animation: slideIn 0.3s ease;
    padding-bottom: 200px; /* Space for sticky bottom */
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Hide inline step navigation on mobile */
  .checkout-step .d-flex.justify-content-between {
    display: none !important;
  }

  /* Step Content Styling */
  .checkout-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
  }

  /* Address Cards */
  .address-card {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
  }

  .address-card:hover {
    border-color: #91B6BF;
  }

  .address-card.selected {
    border-color: #286169;
    background: rgba(40, 97, 105, 0.02);
  }

  .address-card .card-body {
    padding: 16px;
  }

  .new-address-card {
    min-height: 120px;
  }

  .new-address-card .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Form Styling */
  .checkout-step .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
  }

  .checkout-step .form-control {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
  }

  .checkout-step .form-control:focus {
    border-color: #286169;
    box-shadow: 0 0 0 3px rgba(40, 97, 105, 0.1);
  }

  .checkout-step .form-control.is-invalid {
    border-color: #EF4444;
  }

  .checkout-step .invalid-feedback {
    font-size: 13px;
    color: #EF4444;
    margin-top: 6px;
  }

  .checkout-step .form-check {
    padding-left: 0;
  }

  .checkout-step .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid #D1D5DB;
    cursor: pointer;
  }

  .checkout-step .form-check-input:checked {
    background-color: #286169;
    border-color: #286169;
  }

  .checkout-step .form-check-label {
    font-size: 14px;
    color: #374151;
    cursor: pointer;
  }

  /* Payment Method Cards */
  .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .payment-method-card {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
  }

  .payment-method-card:hover {
    border-color: #91B6BF;
  }

  .payment-method-card.selected {
    border-color: #286169;
    background: rgba(40, 97, 105, 0.02);
  }

  .payment-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .payment-card-label {
    display: block;
    padding: 16px;
    margin: 0;
    cursor: pointer;
  }

  .payment-card-content {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .payment-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 97, 105, 0.08);
    border-radius: 8px;
    color: #286169;
    flex-shrink: 0;
  }

  .payment-details {
    flex: 1;
  }

  .payment-title {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 2px;
  }

  .payment-subtitle {
    font-size: 13px;
    color: #6B7280;
  }

  .payment-checkmark {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E5E7EB;
    border-radius: 50%;
    color: transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .payment-method-card.selected .payment-checkmark {
    background: #286169;
    color: white;
  }

  /* Payment Info Alerts */
  .checkout-step .alert {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid;
  }

  .checkout-step .alert-info {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1E40AF;
  }

  .checkout-step .alert-success {
    background: #F0FDF4;
    border-color: #BBF7D0;
    color: #15803D;
  }

  .checkout-step .alert svg {
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* Coupon Form */
  .coupon-form h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
  }

  .coupon-form .input-group {
    border-radius: 8px;
    overflow: hidden;
  }

  .coupon-form .form-control {
    border: 2px solid #E5E7EB;
    border-right: none;
    border-radius: 8px 0 0 8px;
  }

  .coupon-form .btn {
    border-radius: 0 8px 8px 0;
    padding: 12px 20px;
    font-weight: 600;
  }

  .coupon-form .btn-outline-success {
    border: 2px solid #286169;
    color: #286169;
  }

  .coupon-form .btn-outline-success:hover {
    background: var(--orgref-bg);
    border-color: transparent;
    color: white;
  }

  /* Review Order - Step 3 */
  .checkout-step h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
  }

  .checkout-step .card {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .checkout-step .card-body {
    padding: 16px;
  }

  .checkout-step .btn-sm {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
  }

  .checkout-step .btn-outline-secondary {
    border: 2px solid #286169;
    color: #286169;
  }

  .checkout-step .btn-outline-secondary:hover {
    background: var(--orgref-bg);
    border-color: transparent;
    color: white;
  }

  /* Order Items */
  .order-items .d-flex {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
  }

  .order-items .d-flex:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .order-items img {
    width: 60px !important;
    height: 90px !important;
    object-fit: cover;
    border-radius: 8px;
  }

  .order-items h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
  }

  .order-items .text-muted {
    font-size: 12px;
    color: #6B7280;
  }

  .order-items .text-end {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    white-space: nowrap;
  }

  /* Error Alert */
  .checkout-step .alert-danger {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #991B1B;
  }

  /* Section Spacing */
  .checkout-step hr {
    border-color: #E5E7EB;
    margin: 24px 0;
  }

  .checkout-step .mb-3 {
    margin-bottom: 16px !important;
  }

  .checkout-step .mb-4 {
    margin-bottom: 20px !important;
  }

  /* Bottom Action Bar */
  .mobile-checkout-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 18px 20px 20px 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 100;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    max-width: 100vw;
  }

  .checkout-next-btn,
  .checkout-place-order-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #91b6bf 0%, #286169 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
  }

  .checkout-next-btn:active,
  .checkout-place-order-btn:active {
    transform: scale(0.98);
  }
}

/* ============================================
   MOBILE SHOPPING CART STYLES
   ============================================ */

@media (max-width: 991.98px) {
  .cart-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding-bottom: 20px !important;
  }

  .cart-page .container {
    padding: 0;
  }

  .cart-page .LisitngHeading-center h1 {
    font-size: 24px;
    padding: 20px 16px;
    margin-bottom: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
  }

  .cart-page table thead {
    display: none;
  }

  .cart-page .productTr {
    display: block;
    background: white;
    border-radius: 12px;
    margin: 12px 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
  }

  .cart-page .productTd {
    display: block !important;
    border: none !important;
    padding: 0 !important;
  }

  .cart-page .productTd img {
    width: 80px !important;
    height: 110px !important;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .cart-page .product-name-cart h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
  }

  .cart-page .remove-productcart {
    display: inline-block;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
  }

  /* Total Summary */
  .cart-page .shopping-basket-total {
    background: white;
    border-radius: 12px;
    margin: 16px 16px 100px 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
  }

  .cart-page .shopping-basket-total h5.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
  }

  /* Fixed Checkout Button at Bottom */
  .cart-page .shopping-basket-total .d-grid {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    background: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    margin: 0 !important;
  }

  .cart-page .shopping-basket-total .btn-outline-success {
    width: 100% !important;
    background: linear-gradient(135deg, #91b6bf 0%, #286169 100%) !important;
    color: white !important;
    border: none !important;
    padding: 16px 20px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(40, 97, 105, 0.3) !important;
  }
}

/* ============================================
   MOBILE VIEW ALL LINK STYLING
   ============================================ */

@media (max-width: 991.98px) {

  /* Mobile Section Header */
  .mobile-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 16px;
  }

  .mobile-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
  }

  /* View All Link */
  .mobile-view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(40, 97, 105, 0.10);
    transition: all 0.2s;
  }

  .mobile-view-all:hover,
  .mobile-view-all:active {
    background: #bbf7d0;
    color: #059669;
    transform: scale(0.98);
  }

  .mobile-view-all::after {
    content: '→';
    font-size: 14px;
    margin-left: 2px;
    transition: transform 0.2s;
  }

  /* Hero Carousel */
  .hero-section {
    position: relative;
    overflow: hidden;
  }

  .hero-carousel-image {
    width: 100%;
    height: auto;
    min-height: 450px;
    max-height: 550px;
    object-fit: cover;
    object-position: center;
  }

  .hero-section .carousel-indicators {
    bottom: 20px;
  }

  .hero-section .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
  }
}

/* ============================================
   MOBILE PRODUCT DETAIL PAGE STYLES
   ============================================ */

@media (max-width: 991.98px) {

  /* Mobile Product Detail Container */
  .mobile-product-detail {
    background: #fff;
    min-height: 100vh;
    padding-bottom: 100px;
  }

  /* Fixed Header */
  .mobile-product-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .mobile-product-header .back-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.2s;
  }

  /* Image Gallery */
  .mobile-image-gallery {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f9fafb;
    margin-top: 64px;
  }

  .mobile-image-gallery .image-slide img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  /* Product Info Section */
  .mobile-product-info {
    padding: 20px 16px;
  }

  .mobile-product-info .product-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  /* Price */
  .mobile-product-info .product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .mobile-product-info .product-price .current-price {
    font-size: 28px;
    font-weight: 700;
  }

  .mobile-product-info .product-price .original-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
  }

  /* Sticky Bottom Bar */
  .mobile-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 1000;
  }

  .mobile-sticky-bottom .add-to-cart-btn {
    flex: 1;
    height: 48px;
    background-color: #91B6BF !important;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
  }
}

/* ============================================
   MOBILE CONTACT PAGE STYLES
   ============================================ */

@media (max-width: 991.98px) {

  .mobile-contact-page {
    background: #f9fafb;
    min-height: 100vh;
    padding-bottom: 40px;
  }

  .mobile-contact-hero {
    background: #91b6bf;
    padding: 40px 20px;
    text-align: center;
    color: white;
  }

  .mobile-contact-hero .mobile-page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .mobile-contact-hero .mobile-page-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
  }

  /* Contact Info Cards */
  .mobile-contact-info {
    padding: 20px 16px;
  }

  .mobile-contact-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
  }

  .mobile-contact-card:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }

  .mobile-contact-card .contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
  }

  .mobile-contact-card .contact-card-icon.instagram {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
    color: white;
  }

  .mobile-contact-card .contact-card-icon.email {
    background: #dbeafe;
    color: #3b82f6;
  }

  .mobile-contact-card .contact-card-icon.phone {
    background: rgba(40, 97, 105, 0.10);
    color: var(--orgref-edge);
  }

  .mobile-contact-card .contact-card-content {
    flex: 1;
  }

  .mobile-contact-card .contact-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
  }

  .mobile-contact-card .contact-card-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
  }

  .mobile-contact-card .contact-card-arrow {
    color: #d1d5db;
    flex-shrink: 0;
  }

  /* Contact Form Section */
  .mobile-contact-form-section {
    background: white;
    padding: 24px 16px;
    margin: 0 16px 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  /* Office Section */
  .mobile-office-section {
    padding: 0 16px;
  }

  .mobile-office-section .section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
  }

  /* Office Cards */
  .office-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .office-card .office-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }

  .office-card .office-icon {
    width: 40px;
    height: 40px;
    background: rgba(40, 97, 105, 0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
  }

  .office-card .office-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
  }

  .office-card .office-content {
    padding-left: 52px;
  }

  .office-card .office-name {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
  }

  .office-card .office-address {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
  }

  /* Business Hours Card */
  .business-hours-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .business-hours-card .hours-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .business-hours-card .hours-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
  }

  .business-hours-card .hours-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .business-hours-card .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #4b5563;
  }

  .business-hours-card .hours-row span:first-child {
    font-weight: 500;
  }

  .business-hours-card .hours-row span:last-child {
    color: var(--primary-color);
    font-weight: 600;
  }
}

/* ============================================
   MOBILE FAQ STYLES
   ============================================ */

@media (max-width: 991.98px) {
  .mobile-faqs-page {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding-bottom: 40px;
  }

  .mobile-faqs-header {
    background: linear-gradient(135deg, #91b6bf 0%, #286169 100%);
    padding: 24px 20px;
    text-align: center;
  }

  .faqs-page-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
  }

  .mobile-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-faq-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
  }
}

/* ============================================
   MOBILE CONTENT PAGE STYLES
   ============================================ */

@media (max-width: 991.98px) {
  .mobile-content-page {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding-bottom: 40px;
  }

  .mobile-content-header {
    background: linear-gradient(135deg, #91b6bf 0%, #286169 100%);
    padding: 24px 20px;
    text-align: center;
  }

  .content-page-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0;
  }

  .mobile-content-body {
    padding: 20px 16px;
  }

  .content-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}

/* ============================================
   MOBILE BLOG STYLES
   ============================================ */

@media (max-width: 991.98px) {
  .mobile-blogs-page {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding-bottom: 40px;
  }

  .mobile-blogs-header {
    background: linear-gradient(135deg, #91b6bf 0%, #286169 100%);
    padding: 24px 20px;
    text-align: center;
  }

  .blogs-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
  }

  .mobile-blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .mobile-blog-card:active {
    transform: scale(0.98);
  }

  .mobile-blog-image-wrapper {
    position: relative;
    height: 140px;
    overflow: hidden;
  }

  .mobile-blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-blog-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .mobile-blog-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mobile-blog-excerpt {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
  }

  .mobile-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: #9ca3af;
  }

  .mobile-blog-author,
  .mobile-blog-date {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .mobile-blog-author svg,
  .mobile-blog-date svg {
    color: #9ca3af;
  }

  /* Mobile Blog Item Scroll */
  .mobile-blog-item {
    min-width: 260px;
    max-width: 260px;
    scroll-snap-align: start;
  }

  .mobile-blog-scroll {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Mobile Blogs Page Styles */
  .blogs-page-mobile {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding-bottom: 80px;
  }

  .mobile-blogs-header {
    background: linear-gradient(135deg, #286169 0%, #3a8469 100%);
    padding: 24px 16px;
    text-align: center;
  }

  .mobile-blogs-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
  }

  .mobile-blogs-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
  }

  .mobile-blogs-container {
    padding: 16px;
  }

  .mobile-blogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mobile-blogs-grid-item {
    min-height: 280px;
  }

  .mobile-blogs-grid-item .mobile-blog-card {
    height: 100%;
  }

  .mobile-blogs-grid-item .mobile-blog-image-wrapper {
    height: 120px;
  }

  .mobile-blogs-grid-item .mobile-blog-title {
    font-size: 14px;
  }

  .mobile-blogs-grid-item .mobile-blog-excerpt {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .mobile-blogs-grid-item .mobile-blog-meta {
    font-size: 10px;
    gap: 6px;
  }
}

/* Coupon Styles for Mobile Checkout */
.coupon-applied-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #22c55e;
  border-radius: 12px;
  margin-top: 12px;
}

.coupon-applied-details strong {
  display: block;
  color: #166534;
  font-size: 14px;
  margin-bottom: 4px;
}

.coupon-applied-details p {
  margin: 0;
  color: #22c55e;
  font-size: 13px;
  font-weight: 600;
}

.coupon-remove-btn {
  padding: 6px 12px;
  background: transparent;
  color: #ef4444;
  border: 1px solid #ef4444;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.coupon-remove-btn:hover {
  background: #ef4444;
  color: white;
}

/* ============================================
   MOBILE NEWSLETTER BOTTOM SHEET STYLES
   ============================================ */

@media (max-width: 991.98px) {
  /* Bottom Sheet Overlay */
  .mobile-newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
  }

  .mobile-newsletter-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Bottom Sheet */
  .mobile-newsletter-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    z-index: 2999;
    max-height: 90vh;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
  }

  .mobile-newsletter-sheet.open {
    transform: translateY(0);
  }

  /* Handle Bar */
  .mobile-newsletter-sheet .bottom-sheet-handle {
    padding: 12px 0 8px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-newsletter-sheet .handle-bar {
    width: 40px;
    height: 4px;
    background-color: #d0d0d0;
    border-radius: 2px;
    margin: 0 auto;
    transition: background-color 0.2s ease;
  }

  .mobile-newsletter-sheet .bottom-sheet-handle:active .handle-bar {
    background-color: #a0a0a0;
  }

  /* Bottom Sheet Header */
  .mobile-newsletter-sheet .bottom-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .mobile-newsletter-sheet .bottom-sheet-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #286169;
    font-family: "Marcellus", serif;
  }

  .mobile-newsletter-sheet .bottom-sheet-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
  }

  .mobile-newsletter-sheet .bottom-sheet-close:active {
    background-color: #f0f0f0;
  }

  /* Bottom Sheet Content */
  .mobile-newsletter-sheet .bottom-sheet-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-newsletter-sheet .bottom-sheet-content::-webkit-scrollbar {
    width: 6px;
  }

  .mobile-newsletter-sheet .bottom-sheet-content::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  .mobile-newsletter-sheet .bottom-sheet-content::-webkit-scrollbar-thumb {
    background-color: #91B6BF;
    border-radius: 3px;
  }

  /* Form Inputs in Bottom Sheet */
  .mobile-newsletter-sheet .mobile-input {
    height: 48px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-newsletter-sheet .mobile-input:focus {
    border-color: #91B6BF;
    box-shadow: 0 0 0 3px rgba(145, 182, 191, 0.1);
    outline: none;
  }

  /* Checkboxes in Bottom Sheet */
  .mobile-newsletter-sheet .form-check {
    padding-left: 1.8rem;
  }

  .mobile-newsletter-sheet .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    border-radius: 4px;
    border: 2px solid #d9d9d9;
    cursor: pointer;
  }

  .mobile-newsletter-sheet .form-check-input:checked {
    background-color: #91B6BF;
    border-color: #91B6BF;
  }

  .mobile-newsletter-sheet .form-check-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    line-height: 1.4;
  }

  /* Button in Bottom Sheet */
  .mobile-newsletter-sheet .btn-success {
    background-color: var(--orgref-to);
    background-image: var(--orgref-bg);
    border-color: transparent;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
  }

  .mobile-newsletter-sheet .btn-success:hover,
  .mobile-newsletter-sheet .btn-success:focus {
    background-color: var(--orgref-to);
    background-image: var(--orgref-bg);
    border-color: transparent;
    filter: brightness(0.94);
    box-shadow: 0 4px 12px rgba(40, 97, 105, 0.3);
  }

  .mobile-newsletter-sheet .btn-success:active {
    transform: scale(0.98);
  }

  .mobile-newsletter-sheet .btn-success:disabled {
    background-color: #91B6BF;
    border-color: #91B6BF;
    opacity: 0.7;
  }

  /* Alert in Bottom Sheet */
  .mobile-newsletter-sheet .alert {
    border-radius: 10px;
    font-size: 14px;
  }

  /* ============================================
     PRODUCT LISTING - CATEGORY HEADER BANNER
     ============================================ */
  .category-header-banner {
    background: linear-gradient(135deg, #286169 0%, #3a8469 100%);
    padding: 24px 16px;
    margin-bottom: 20px;
  }

  .category-banner-content {
    max-width: 100%;
  }

  .category-banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.2;
  }

  .category-banner-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
  }

  /* ============================================
     MOBILE FILTER BAR
     ============================================ */
  .mobile-filter-bar {
    padding: 12px 0;
  }

  .filter-btn {
    border: 1px solid #286169;
    color: #286169;
    background: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
  }

  .filter-btn:hover {
    background: var(--orgref-bg);
    border-color: transparent;
    color: #fff;
  }

  .sort-select-mobile {
    border: none;
    font-size: 14px;
    color: #333;
    padding: 4px 8px;
    background-color: transparent;
  }

  .product-count-badge {
    background-color: #f0f0f0;
    color: #333;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
  }

  /* ============================================
     MOBILE FILTER BOTTOM SHEET
     ============================================ */
  .mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-filter-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 80vh;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .mobile-filter-sheet.open {
    transform: translateY(0);
  }

  .filter-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
  }

  .filter-sheet-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
  }

  .filter-close-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
  }

  .filter-close-btn:hover {
    color: #333;
  }

  .filter-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }

  /* Filter Accordion */
  .filter-accordion-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
  }

  .filter-accordion-item:last-child {
    border-bottom: none;
  }

  .filter-accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: left;
  }

  .accordion-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .accordion-arrow.rotated {
    transform: rotate(180deg);
  }

  .filter-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }

  .filter-accordion-content.expanded {
    max-height: 500px;
    padding-bottom: 16px;
  }

  .filter-accordion-content .form-check {
    padding-left: 0;
  }

  .filter-accordion-content .form-check-input {
    margin-top: 0.2em;
  }

  .filter-accordion-content .form-check-label {
    font-size: 14px;
    color: #666;
    margin-left: 8px;
  }

  .filter-sheet-footer {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #e0e0e0;
    background-color: #fff;
  }

  .clear-filters-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .apply-filters-btn {
    flex: 2;
    padding: 12px;
    background-color: var(--orgref-to);
    background-image: var(--orgref-bg);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
  }

  .filter-count {
    font-size: 13px;
    color: #999;
  }

  /* ================================================
     PRODUCT DETAIL PAGE - MOBILE SPECIFIC STYLES
     ================================================ */

  /* Mobile Product Image Carousel */
  .mobile-product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }

  #productImageCarousel {
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f9fa;
  }

  #productImageCarousel .carousel-control-prev,
  #productImageCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
  }

  #productImageCarousel .carousel-control-prev {
    left: 10px;
  }

  #productImageCarousel .carousel-control-next {
    right: 10px;
  }

  #productImageCarousel .carousel-control-prev:hover,
  #productImageCarousel .carousel-control-next:hover {
    opacity: 1;
  }

  /* Product Detail Title and Info */
  .detailToptile {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
  }

  .productRating {
    font-size: 14px;
  }

  .ProductDetailprice h3 {
    font-size: 28px;
    font-weight: 700;
    color: #286169;
  }

  /* Product Accordions - Mobile */
  .product-accordions {
    margin-top: 24px;
  }

  .accordion-item {
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;
  }
  

  .accordion-header-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .accordion-header-product:active {
    background-color: #e9ecef;
  }

  .accordion-header-product h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
  }

  .accordion-arrow-product {
    transition: transform 0.3s ease;
    color: #666;
  }

  .accordion-arrow-product.rotated {
    transform: rotate(180deg);
  }

  .accordion-content-product {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
    background-color: #fff;
  }

  .accordion-content-product.expanded {
    max-height: 2000px;
    padding: 16px;
  }

  .accordion-content-product p,
  .accordion-content-product div {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
  }

  .accordion-content-product ul {
    list-style: none;
    padding-left: 0;
  }

  .accordion-content-product ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
  }

  /* Product Reviews - Mobile */
  .product-reviews {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
  }

  .product-reviews h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
  }

  .review-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .review-rating {
    font-size: 14px;
  }

  .review-item h6 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
  }

  .review-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
  }

  /* Write Review Form - Mobile */
  .write-review {
    margin-top: 32px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
  }

  .write-review h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
  }

  .rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 16px;
  }

  .rating-input input[type="radio"] {
    display: none;
  }

  .rating-input .star-label {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .rating-input input[type="radio"]:checked ~ .star-label,
  .rating-input .star-label:hover,
  .rating-input .star-label:hover ~ .star-label {
    color: #ffc107;
  }

  .write-review textarea {
    font-size: 14px;
  }

  .write-review .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
  }

  /* Related Products - Mobile */
  .related-products h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 24px;
  }

  /* ================================================
     STICKY BOTTOM BAR - MOBILE PRODUCT DETAIL
     ================================================ */

  .mobile-sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
  }

  .sticky-bar-content {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* Quantity Controls in Sticky Bar */
  .sticky-quantity-control {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 25px;
    padding: 4px;
    gap: 4px;
  }

  .btn-qty-decrease,
  .btn-qty-increase {
    width: 32px;
    height: 32px;
    border: none;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .btn-qty-decrease:active,
  .btn-qty-increase:active {
    transform: scale(0.95);
    background-color: #e9ecef;
  }

  .btn-qty-decrease svg,
  .btn-qty-increase svg {
    color: #286169;
  }

  .sticky-quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    color: #333;
  }

  /* Add to Cart Button in Sticky Bar */
  .btn-sticky-cart {
    flex: 1;
    background: linear-gradient(135deg, #91B6BF 0%, #286169 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40, 97, 105, 0.3);
  }

  .btn-sticky-cart:active {
    transform: scale(0.98);
  }

  .btn-sticky-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
  }

  .sticky-btn-text {
    font-weight: 600;
  }

  .sticky-btn-separator {
    font-weight: 300;
    opacity: 0.7;
  }

  .sticky-btn-price {
    font-weight: 700;
  }

  /* Add padding to bottom of page to prevent content being hidden by sticky bar */
  .mobile-view .product-detail {
    padding-bottom: 80px;
  }

  /* Subscribe Now Button - Mobile */
  .mobile-view .btn-primary.btn-lg {
    background-color: var(--orgref-to);
    background-image: var(--orgref-bg);
    border-color: transparent;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
  }

  .mobile-view .btn-primary.btn-lg:active {
    background-color: var(--orgref-to);
    background-image: var(--orgref-bg);
    border-color: transparent;
    filter: brightness(0.94);
  }

  /* ================================================
     CART PAGE - MOBILE STYLES
     ================================================ */

  .cart-page {
    padding-bottom: 100px;
  }

  .cart-heading {
    text-align: center;
    padding: 24px 0;
  }

  .cart-heading h1 {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin: 0;
    font-family: "Marcellus", serif;
  }

  .cart-content-wrapper {
    display: flex;
    flex-direction: column;
  }

  .cart-items-section {
    width: 100%;
  }

  /* Cart Item Card */
  .cart-item-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
  }

  .cart-item-image {
    flex-shrink: 0;
    width: 80px;
    height: 100px;
  }

  .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.4;
  }

  .cart-item-name a {
    color: #333;
    text-decoration: none;
  }

  .cart-item-description {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
  }

  .cart-item-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
  }

  .cart-item-meta strong {
    font-weight: 600;
  }

  .cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }

  .cart-item-price-display {
    font-size: 15px;
    font-weight: 700;
    color: #286169;
  }

  .cart-item-remove {
    background: none;
    border: none;
    color: #E74C3C;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
  }

  .cart-item-remove:active {
    opacity: 0.7;
  }

  /* Cart Item Quantity Controls */
  .cart-item-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .cart-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }

  .cart-qty-btn:active {
    background: #f5f5f5;
  }

  .cart-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .cart-qty-btn svg {
    color: #333;
  }

  .cart-qty-input {
    width: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    padding: 0;
  }

  /* Cart Action Buttons */
  .cart-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
  }

  .btn-cart-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border: 2px solid #286169;
    border-radius: 8px;
    background: #fff;
    color: #286169;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .btn-cart-action:active {
    background: #f0f8f9;
    transform: scale(0.98);
  }

  .btn-cart-action svg {
    color: #286169;
  }

  .btn-continue-shopping svg {
    margin-right: 8px;
  }

  .btn-clear-cart svg {
    margin-right: 8px;
  }

  /* Cart Total Summary - Mobile */
  .cart-total-summary {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .total-summary-heading {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px 0;
  }

  .total-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
  }

  .total-summary-row span:last-child {
    font-weight: 600;
    color: #333;
  }

  .total-summary-note {
    background: #E3F2FD;
    padding: 12px;
    border-radius: 6px;
    margin: 16px 0;
  }

  .total-summary-note p {
    margin: 0;
    font-size: 12px;
    color: #286169;
    line-height: 1.5;
  }

  .total-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
  }

  .total-summary-cod {
    text-align: center;
    padding-top: 12px;
  }

  .total-summary-cod p {
    margin: 0;
    font-size: 13px;
    color: #666;
  }

  /* Sticky Checkout Button - Mobile */
  .cart-sticky-checkout {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .btn-sticky-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #91B6BF 0%, #286169 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(40, 97, 105, 0.3);
    transition: all 0.3s ease;
  }

  .btn-sticky-checkout:active {
    transform: scale(0.98);
  }

  .btn-sticky-checkout svg {
    color: #fff;
  }

  /* Empty Cart */
  .cart-empty {
    text-align: center;
    padding: 60px 20px;
  }

  .cart-empty-icon {
    color: #ccc;
    margin-bottom: 24px;
  }

  .cart-empty h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
  }

  .cart-empty p {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
  }

  .btn-start-shopping {
    display: inline-block;
    padding: 12px 32px;
    background: var(--orgref-bg);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .btn-start-shopping:active {
    background: var(--orgref-bg);
    filter: brightness(0.94);
    transform: scale(0.98);
  }

  /* ================================================
     CHECKOUT PAGE - MOBILE STYLES
     ================================================ */

  /* Mobile Checkout Header */
  .checkout-mobile-header {
    background: linear-gradient(135deg, #286169 0%, #2a6a72 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .checkout-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    min-height: 60px;
  }

  .btn-back {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-back:active {
    opacity: 0.7;
  }

  .checkout-header-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    text-align: center;
  }

  .header-spacer {
    width: 36px;
  }

  /* Checkout Page */
  .checkout-page {
    padding-bottom: 100px;
  }

  /* Step Indicators - Mobile */
  .checkout-step-indicators {
    padding: 24px 16px;
    background: #fff;
  }

  .step-indicators-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }

  .step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D5D5D5;
    border: 2px solid #D5D5D5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }

  .step-number {
    font-size: 16px;
    font-weight: 700;
    color: #888;
    transition: color 0.3s ease;
  }

  .step-check {
    color: #fff;
  }

  .step-line {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #E0E0E0;
    z-index: 1;
  }

  .step-indicator:last-child .step-line {
    display: none;
  }

  .step-label {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-align: center;
    transition: color 0.3s ease;
  }

  /* Active Step */
  .step-indicator.active .step-circle {
    background: #286169;
    border-color: #286169;
  }

  .step-indicator.active .step-number {
    color: #fff;
  }

  .step-indicator.active .step-label {
    color: #286169;
    font-weight: 600;
  }

  /* Completed Step */
  .step-indicator.completed .step-circle {
    background: #286169;
    border-color: #286169;
  }

  .step-indicator.completed .step-number {
    display: none;
  }

  .step-indicator.completed .step-check {
    display: block !important;
  }

  .step-indicator.completed .step-label {
    color: #286169;
  }

  .step-indicator.completed .step-line {
    background: #286169;
  }

  /* Checkout Sticky Bottom Section - Mobile */
  .checkout-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 997;
  }

  /* Collapsible Order Total */
  .sticky-order-total-collapse {
    border-bottom: 1px solid #e0e0e0;
  }

  .order-total-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .order-total-toggle:active {
    background: #e9ecef;
  }

  .order-total-toggle > span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }

  .total-amount {
    font-size: 18px;
    font-weight: 700;
    color: #286169;
  }

  .toggle-arrow {
    transition: transform 0.3s ease;
    color: #666;
  }

  .toggle-arrow.rotated {
    transform: rotate(180deg);
  }

  .order-total-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .order-total-content.expanded {
    max-height: 200px;
  }

  .order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #f0f0f0;
  }

  .order-total-row span:last-child {
    font-weight: 600;
    color: #333;
  }

  /* Sticky Action Button */
  .sticky-action-button {
    padding: 12px 16px;
  }

  .btn-sticky-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #91B6BF 0%, #286169 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(40, 97, 105, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .btn-sticky-action:active {
    transform: scale(0.98);
  }

  .btn-sticky-action svg {
    color: #fff;
  }

  /* WhatsApp Floating Button - Global */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  .whatsapp-float:active {
    transform: scale(0.95);
  }

  .whatsapp-float svg {
    color: #fff;
  }

  /* Adjust WhatsApp button on mobile for pages with sticky bottom elements */
  @media (max-width: 991.98px) {
    /* Default position for most pages */
    body .whatsapp-float {
      bottom: 80px;
    }

    /* Higher position on cart/checkout pages to avoid sticky buttons */
    body.has-sticky-bottom .whatsapp-float {
      bottom: 180px;
    }
  }
}
