/* ========================================
   RESPONSIVE STYLES FOR TOP HEADER
   ======================================== */

@media (max-width: 1024px) {
  .header-container {
    max-width: 960px;
    padding: 0 1.25rem;
    gap: 18px;
  }

  .header-contact {
    gap: 20px;
  }

  .contact-link {
    font-size: 12px;
  }

  .contact-link span {
    font-size: 12px;
  }

  .user-login .login-link {
    font-size: 12px;
    padding: 6px 10px;
  }

  .user-registration .open-account-btn {
    padding: 9px 20px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .top-header {
    padding: 6px 0;
  }

  .header-container {
    padding: 0 1rem;
    gap: 12px;
  }

	
  .header-contact .contact-link:first-child {
    display: flex;
  }
  
  .header-contact .contact-link:last-child {
    display: none;
  }

  .header-contact {
    gap: 0;
  }

  .contact-link {
    font-size: 11px;
    padding: 4px 0;
  }

  .contact-link i {
    font-size: 12px;
  }

  .contact-link span {
    font-size: 11px;
  }
  .contact-link::after {
    display: none;
  }
	
  .user-login .login-link {
    padding: 4px 8px;
    font-size: 11px;
  }

  .user-login .login-link i {
    font-size: 11px;
  }

  .user-registration .open-account-btn {
    padding: 6px 16px;
    font-size: 11px;
  }

  .user-registration .open-account-btn i {
    font-size: 11px;
  }

	
  .user-registration .open-account-btn {
    animation: none;
  }
}


@media (max-width: 576px) {
  .header-container {
    padding: 0 0.875rem;
    gap: 8px;
  }
  .contact-link span {
    display: none;
  }

  .contact-link i {
    font-size: 14px;
    margin: 0;
  }

  .contact-link {
    padding: 4px;
  }

  .user-login .login-link span {
    display: none;
  }

  .user-login .login-link i {
    font-size: 14px;
    margin: 0;
  }

  .user-login .login-link {
    padding: 6px 8px;
  }

  .user-registration .open-account-btn {
    padding: 5px 12px;
    font-size: 10px;
    gap: 6px;
  }

  .user-registration .open-account-btn i {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  .header-container {
    padding: 0 0.75rem;
    gap: 6px;
  }

  .user-registration .open-account-btn span {
    font-size: 9px;
  }

  .user-registration .open-account-btn {
    padding: 4px 10px;
  }
}

/* ========================================
   RESPONSIVE STYLES FOR MAIN HEADER 
   ======================================== */

@media (max-width: 1024px) {
  .header-main {
    gap: 20px;
    padding: 0 1.25rem;
  }

  .header-search-bar {
    max-width: 300px;
    min-width: 200px;
  }

  .header-search-bar input {
    padding: 9px 15px;
    height: 42px;
  }

  .header-search-bar button {
    padding: 0 15px;
    height: 42px;
  }

  #primary-menu {
    gap: 20px;
  }

  #primary-menu a {
    font-size: 14px;
  }

}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --container-pad: 1rem;
  }

  .header-main {
    gap: 12px;
    padding: 0 1rem;
  }

  .site-logo {
    flex-shrink: 0;
  }
  
  .site-logo .logo {
    height: 38px;
    width: auto;
    display: block;
  }

  .header-search-bar {
    display: none !important;
  }

  .search-trigger-btn {
    display: flex;
  }
  .nav-wrapper {
    gap: 8px;
  }
  .menu-toggle {
    display: flex;
  }
  .main-navigation {
    position: static;
  }

  #primary-menu {
    display: none;
    position: absolute;
    top: calc(var(--header-height) + 1px);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-border);
    z-index: 9999;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
  }
  #primary-menu li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  #primary-menu li:last-child {
    border-bottom: none;
  }

  #primary-menu > li > a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
  }

  #primary-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 50px;
  }

  #primary-menu .menu-item-has-children > a::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  #primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: none;
    background: var(--color-bg-alt);
    border: none;
    border-top: 1px solid var(--color-border);
    width: 100%;
    min-width: auto;
  }

  #primary-menu .sub-menu li {
    border-bottom: 1px solid var(--color-border);
    padding-left: 0;
  }

  #primary-menu .sub-menu a {
    padding: 12px 20px 12px 35px;
    font-size: 14px;
    white-space: normal;
    word-wrap: break-word;
    width: 100%;
  }

  #primary-menu .sub-menu .sub-menu a {
    padding-left: 50px;
    font-size: 13px;
  }

  #primary-menu .sub-menu.split-menu {
    column-count: 1;
    min-width: auto;
    width: 100%;
  }

  .category-bar {
    display: none;
  }

  .mobile-search {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .header-main {
    gap: 10px;
    padding: 0 0.875rem;
  }

  .site-logo .logo {
    height: 32px;
  }

  .search-trigger-btn,
  .menu-toggle {
    width: 36px;
    height: 36px;
    font-size: 18px;
    padding: 6px;
  }

  .nav-wrapper {
    gap: 6px;
  }

  #primary-menu {
    top: calc(var(--header-height) + 1px);
    max-height: calc(100vh - var(--header-height));
  }

  #primary-menu > li > a {
    padding: 12px 16px;
    font-size: 14px;
  }

  #primary-menu .menu-item-has-children > a {
    padding-right: 45px;
  }

  #primary-menu .sub-menu a {
    padding: 10px 16px 10px 30px;
    font-size: 13px;
  }

  #primary-menu .sub-menu .sub-menu a {
    padding-left: 45px;
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .header-main {
    padding: 0 0.75rem;
    gap: 8px;
  }

  .site-logo .logo {
    height: 28px;
  }

  .search-trigger-btn,
  .menu-toggle {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  #primary-menu > li > a {
    padding: 10px 14px;
    font-size: 13px;
  }

  #primary-menu .sub-menu a {
    padding: 8px 14px 8px 28px;
    font-size: 12px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  #primary-menu {
    max-height: calc(100vh - var(--header-height));
  }

  #primary-menu > li > a {
    padding: 8px 20px;
  }

  #primary-menu .sub-menu a {
    padding: 6px 20px 6px 35px;
  }

  .category-bar {
    display: none;
  }
}

/* Desktop Styles (769px and above) */
@media (min-width: 769px) {
  .search-trigger-btn {
    display: none !important;
  }
  
  .mobile-search {
    display: none !important;
  }
}
/* ========================================
   BANNER RESPONSIVE FIXED
======================================== */

/* Large Screens */
@media (max-width:1280px){

    .banner-title{
        font-size:3rem;
    }

    .banner-slide-content{
        max-width:550px;
    }
}

/* Tablet */
@media (max-width:1024px){

    .banner-carousel-section{
        padding:1rem;
    }

    .banner-container{
        border-radius:20px;
        min-height:auto !important;
    }

    .banner-slide{
        min-height:auto !important;
        height:auto !important;
    }

    .banner-slide-overlay .boxed-container{
        padding:0 2rem;
    }

    .banner-title{
        font-size:2.4rem;
    }

    .banner-desc{
        font-size:1rem;
    }

    .banner-arrow{
        width:42px;
        height:42px;
    }

    .banner-prev{
        left:15px;
    }

    .banner-next{
        right:15px;
    }
}

/* Mobile */
@media (max-width:768px){

    .banner-carousel-section{
        padding:12px;
    }

    .banner-container{
        min-height:auto !important;
        border-radius:16px;
        overflow:hidden;
    }

    .banner-slide{
        min-height:auto !important;
        height:auto !important;
    }

    .banner-slide-bg{
        height:auto !important;
    }

    .banner-full-img{
        width:100%;
        height:auto !important;
        display:block;
        object-fit:contain;
    }

    .banner-slide-overlay{
        position:absolute;
        inset:0;
    }

    .banner-slide-content{
        max-width:80%;
    }

    .banner-slide-overlay .boxed-container{
        padding:0 1.25rem;
    }

    .banner-title{
        font-size:1.8rem;
        margin-bottom:.5rem;
    }

    .banner-desc{
        font-size:.9rem;
        margin-bottom:1rem;
    }

    .banner-btn{
        padding:.7rem 1.3rem;
        font-size:.85rem;
    }

    .banner-arrow{
        width:38px;
        height:38px;
        font-size:.8rem;
        background:rgba(0,0,0,.45);
    }

    .banner-prev{
        left:10px;
    }

    .banner-next{
        right:10px;
    }

    .lSPager.lSpg{
        bottom:12px;
    }
}

/* Small Mobile */
@media (max-width:576px){

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

    .banner-title{
        font-size:1.4rem;
    }

    .banner-desc{
        font-size:.8rem;
    }

    .banner-btn{
        padding:.6rem 1rem;
        font-size:.8rem;
    }

    .banner-arrow{
        width:34px;
        height:34px;
    }

    .banner-prev{
        left:8px;
    }

    .banner-next{
        right:8px;
    }
}

/* Extra Small */
@media (max-width:480px){

    .banner-carousel-section{
        padding:10px;
    }

    .banner-container{
        border-radius:14px;
    }

    .banner-title{
        font-size:1.2rem;
    }

    .banner-desc{
        font-size:.75rem;
    }

    .banner-btn{
        font-size:.75rem;
        padding:.55rem .9rem;
    }

    .banner-arrow{
        width:32px;
        height:32px;
        font-size:.7rem;
    }
}

/* ========================================
   LIGHTSLIDER HEIGHT FIX
======================================== */

.lSSlideOuter,
.lSSlideWrapper,
.lightSlider,
.lightSlider li{
    height:auto !important;
    min-height:unset !important;
}

@media (max-width:768px){

    .lSSlideOuter .lSPager.lSpg{
        margin-top:0 !important;
    }

    .lightSlider li{
        overflow:hidden;
    }
}
/* ========================================
   KIMBU CATEGORY SECTION RESPONSIVE
   ======================================== */

@media (max-width: 1280px) {
    .kimbu-category-section {
        padding: 3.5rem 0;
    }
    
    .kimbu-container {
        padding: 0 1.25rem;
    }
    
    .kimbu-grid-wrapper {
        gap: 1rem !important;
    }
    
    .kimbu-cat-title {
        font-size: 1.5rem;
        letter-spacing: 0.07em;
    }
}
@media (max-width: 1024px) {
    .kimbu-category-section {
        padding: 3rem 0;
    }
    
    .kimbu-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .kimbu-cat-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .kimbu-category-section {
        padding: 2.5rem 0;
    }
    
    .kimbu-container {
        padding: 0 1rem;
    }
	
    .kimbu-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.875rem !important;
    }
    
    .kimbu-cat-title {
        font-size: 1.25rem;
        letter-spacing: 0.06em;
    }
    
    .kimbu-cat-title::after {
        bottom: -6px;
        height: 2px;
    }
}


@media (max-width: 640px) {
    .kimbu-category-section {
        padding: 2rem 0;
    }
    
    .kimbu-container {
        padding: 0 1rem;
    }
    
    .kimbu-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }
    
    .kimbu-cat-item {
        aspect-ratio: 16 / 10;
    }
    
    .kimbu-cat-title {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }
}
@media (max-width: 480px) {
    .kimbu-category-section {
        padding: 1.5rem 0;
    }
    
    .kimbu-container {
        padding: 0 0.875rem;
    }
    
    .kimbu-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .kimbu-cat-title {
        font-size: 1rem;
        letter-spacing: 0.04em;
    }
    
    .kimbu-cat-title::after {
        bottom: -5px;
        height: 1.5px;
    }
}
@media (max-width: 375px) {
    .kimbu-category-section {
        padding: 1.25rem 0;
    }
    
    .kimbu-container {
        padding: 0 0.75rem;
    }
    
    .kimbu-grid-wrapper {
        gap: 0.625rem !important;
    }
    
    .kimbu-cat-title {
        font-size: 0.85rem;
        letter-spacing: 0.03em;
    }
}

@media (max-width: 320px) {
    .kimbu-grid-wrapper {
        gap: 0.5rem !important;
    }
    
    .kimbu-cat-title {
        font-size: 0.75rem;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .kimbu-category-section {
        padding: 2rem 0;
    }
    
    .kimbu-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.875rem !important;
    }
    
    .kimbu-cat-item {
        aspect-ratio: 16 / 9;
    }
    
    .kimbu-cat-title {
        font-size: 1.1rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .kimbu-bg-img {
        transform: none !important;
    }
    
    .kimbu-cat-overlay {
        background: rgba(0, 0, 0, 0.25);
    }
    
    .kimbu-cat-title::after {
        display: none;
    }
    
    .kimbu-cat-title {
        letter-spacing: 0.05em;
    }
}
@media (min-width: 1600px) {
    .kimbu-category-section {
        padding: 5rem 0;
    }
    
    .kimbu-container {
        max-width: 1600px;
        padding: 0 2rem;
    }

	.kimbu-grid-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .kimbu-cat-title {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .kimbu-category-section {
        display: none;
    }
}

/* ==========================================
   TOP PICKS RESPONSIVE
========================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .top-picks-grid {
        gap: 1.25rem;
    }

    .top-pick-item .BFocalImage-dycqlh {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }
}

/* Tablet Landscape */
@media (max-width: 991px) {

    .top-picks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .top-pick-item .BFocalImage-dycqlh {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .top-pick-item .bq-product-name {
        font-size: 0.95rem !important;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {

    .top-picks-section {
        padding: 3rem 0;
    }

    .top-picks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .top-pick-item .BFocalImage-dycqlh {
        height: 190px !important;
        min-height: 190px !important;
        max-height: 190px !important;
    }

    .top-pick-item .bq-details {
        padding: 2.4rem 0.9rem 1rem !important;
    }

    .top-pick-item .bq-button {
        width: 36px !important;
        height: 36px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .top-picks-section {
        padding: 2.5rem 0;
    }

    .top-picks-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .top-pick-item {
        max-width: 100%;
    }

    .top-pick-item .BFocalImage-dycqlh {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .top-pick-item .bq-product-name {
        font-size: 1rem !important;
    }

    .top-pick-item .bq-price {
        font-size: 0.95rem !important;
    }
}

/* Small Mobile */
@media (max-width: 400px) {

    .top-pick-item .BFocalImage-dycqlh {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }

    .top-pick-item .bq-details {
        padding: 2.2rem 0.85rem 0.9rem !important;
    }

    .top-pick-item .bq-product-name {
        font-size: 0.9rem !important;
    }

    .top-pick-item .bq-button {
        width: 34px !important;
        height: 34px !important;
    }
}
/* ========================================
   BENTO GRID RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .kimbu-bento-section {
        padding: 4rem 0;
    }
    
    .bento-grid-container {
        max-width: 100%;
        gap: 1.25rem;
    }
    
    .bento-card-tall {
        flex: 0 0 calc(100% * 0.333);
        width: calc(100% * 0.333);
    }
    
    .bento-card-tall .bento-card-img-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 389.33 / 550;
    }
    
    .bento-right-stack {
        max-width: calc(100% * 0.667);
    }
    
    .bento-card-wide .bento-card-img-wrap {
        height: auto;
        aspect-ratio: 778.68 / 263;
    }
}

@media (max-width: 992px) {
    .kimbu-bento-section {
        padding: 3rem 0;
    }
    
    .bento-grid-container {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .bento-grid-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .bento-card-tall,
    .bento-right-stack {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .bento-card-tall,
    .bento-card-wide {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .bento-card-tall .bento-card-img-wrap,
    .bento-card-wide .bento-card-img-wrap {
        width: 100%;
        height: 100%;
    }

    .bento-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .kimbu-bento-section {
        padding: 2rem 0;
    }
    
    .bento-grid-container,
    .bento-right-stack {
        gap: 0.875rem;
    }
    
    .bento-card-tall,
    .bento-card-wide {
        border-radius: 0.75rem;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    .kimbu-bento-section {
        padding: 1.5rem 0;
    }
    
    .bento-grid-container,
    .bento-right-stack {
        gap: 0.75rem;
    }

    .bento-card-tall,
    .bento-card-wide {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 375px) {
    .bento-card-tall,
    .bento-card-wide {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .kimbu-bento-section {
        padding: 2rem 0;
    }
    
    .bento-grid-container {
        flex-direction: row;
        gap: 0.875rem;
    }
    
    .bento-card-tall {
        flex: 0 0 35%;
    }
    
    .bento-card-tall .bento-card-img-wrap {
        height: 350px;
        aspect-ratio: auto;
    }
    
    .bento-right-stack {
        flex: 1;
    }
    
    .bento-card-wide .bento-card-img-wrap {
        height: 165px;
        aspect-ratio: auto;
    }
}

@media (hover: none) and (pointer: coarse) {
    .bento-img {
        transform: none !important;
    }
    
    .bento-card-tall::after,
    .bento-card-wide::after {
        display: none;
    }
}

@media (prefers-color-scheme: dark) {
    .kimbu-bento-section {
        background: var(--color-bg);
    }
}

@media (min-width: 1400px) {
    .kimbu-bento-section .container {
        max-width: 1400px;
    }
    
    .bento-grid-container {
        max-width: 1200px;
    }
}

@media print {
    .kimbu-bento-section {
        display: none;
    }
}

/* ========================================
   HOW IT WORKS RESPONSIVE 
   ======================================== */

@media (max-width: 1280px) {
    .how-it-works {
        padding: 4rem 0;
    }
    
    .steps-grid {
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.75rem 1.25rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .step-card h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 1024px) {
    .how-it-works {
        padding: 3.5rem 0;
    }
    
    .how-it-works .section-heading h2 {
        font-size: 2rem;
    }
    
    .how-it-works .section-heading p {
        font-size: 1rem;
    }
    
    .steps-grid {
        gap: 1.25rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
        border-radius: 1.25rem;
    }
    
    .step-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .step-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .step-card p {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .how-it-works {
        padding: 3rem 0;
    }
    
    .how-it-works .section-heading {
        margin-bottom: 2.5rem;
    }
    
    .how-it-works .section-heading h2 {
        font-size: 1.75rem;
    }
    
    .how-it-works .section-heading h2::after {
        width: 50px;
        height: 2.5px;
        bottom: -10px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.75rem;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .how-it-works {
        padding: 2.5rem 0;
    }
    
    .how-it-works .section-heading {
        margin-bottom: 2rem;
    }
    
    .how-it-works .section-heading h2 {
        font-size: 1.5rem;
    }
    
    .how-it-works .section-heading p {
        font-size: 0.9rem;
    }
    
    .how-it-works .section-heading h2::after {
        width: 45px;
        height: 2px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .step-icon {
        width: 55px;
        height: 55px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .step-card:not(:last-child) {
        position: relative;
    }
    
    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 2.5rem;
        width: calc(100% - 5rem);
        height: 1px;
        background: var(--color-border);
    }
}


@media (max-width: 480px) {
    .how-it-works {
        padding: 2rem 0;
    }
    
    .step-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
    }
    
    .step-icon i {
        font-size: 1.35rem;
    }
    
    .step-card h3 {
        font-size: 1rem;
    }
    
    .step-card p {
        font-size: 0.8rem;
    }
}
@media (max-width: 375px) {
    .how-it-works {
        padding: 1.5rem 0;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-card:not(:last-child)::after {
        left: 1rem;
        width: calc(100% - 2rem);
    }
}
@media (max-width: 768px) and (orientation: landscape) {
    .how-it-works {
        padding: 2rem 0;
    }
    
    .steps-grid {
        gap: 1rem;
    }
    
    .step-card {
        padding: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .step-card h3 {
        font-size: 1rem;
    }
    
    .step-card p {
        font-size: 0.8rem;
    }
}

/* Touch Devices Optimization */
@media (hover: none) and (pointer: coarse) {
    .step-card {
        transform: none !important;
    }
    
    .step-icon {
        background: var(--color-primary-pale);
    }
    
    .step-icon i {
        color: var(--color-primary);
    }
}
@media (prefers-color-scheme: dark) {
    .how-it-works {
        background: var(--color-bg);
    }
    
    .step-card {
        background: var(--color-white);
    }
}

/* High Resolution Screens */
@media (min-width: 1600px) {
    .how-it-works {
        padding: 6rem 0;
    }
    
    .steps-grid {
        gap: 2.5rem;
    }
    
    .step-card {
        padding: 2.5rem 2rem;
        border-radius: 1.75rem;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
    }
    
    .step-icon i {
        font-size: 3rem;
    }
    
    .step-card h3 {
        font-size: 1.75rem;
    }
    
    .step-card p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .how-it-works {
        display: none;
    }
}

/* ========================================
   CTA SECTION RESPONSIVE
   ======================================== */

@media (max-width: 1280px) {
    .cta-wrap {
        padding: 3.5rem 0;
    }
    
    .cta-box {
        padding: 2.5rem 3rem;
        border-radius: 1.25rem;
    }
    
    .cta-text h3 {
        font-size: 1.75rem;
    }
    
    .btn-call {
        padding: 0.9rem 2.25rem;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .cta-wrap {
        padding: 3rem 0;
    }
    
    .cta-box {
        padding: 2rem 2.5rem;
        border-radius: 1.25rem;
    }
    
    .cta-text h3 {
        font-size: 1.6rem;
    }
    
    .btn-call {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .cta-wrap {
        padding: 2.5rem 0;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-radius: 1rem;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .btn-call {
        padding: 0.8rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .btn-call::before {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .cta-wrap {
        padding: 2rem 0;
    }
    
    .cta-box {
        padding: 1.75rem 1.25rem;
        gap: 1.25rem;
        border-radius: 0.875rem;
    }
    
    .cta-text h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .btn-call {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-call::before {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-wrap {
        padding: 1.75rem 0;
    }
    
    .cta-box {
        padding: 1.5rem 1rem;
        gap: 1rem;
        border-radius: 0.75rem;
    }
    
    .cta-text h3 {
        font-size: 1.1rem;
    }
    
    .btn-call {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .btn-call::before {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .cta-wrap {
        padding: 1.5rem 0;
    }
    
    .cta-box {
        padding: 1.25rem 0.875rem;
    }
    
    .cta-text h3 {
        font-size: 1rem;
    }
    
    .btn-call {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .cta-wrap {
        padding: 2rem 0;
    }
    
    .cta-box {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem 2rem;
    }
    
    .cta-text h3 {
        font-size: 1.25rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn-call {
        transform: none !important;
    }
    
    .btn-call:hover {
        transform: none;
    }
}

@media (prefers-color-scheme: dark) {
    .cta-wrap {
        background: var(--color-bg-alt);
    }
}

@media (min-width: 1600px) {
    .cta-wrap {
        padding: 5rem 0;
    }
    
    .cta-box {
        padding: 4rem 5rem;
        border-radius: 2rem;
    }
    
    .cta-text h3 {
        font-size: 2.5rem;
    }
    
    .btn-call {
        padding: 1.25rem 3rem;
        font-size: 1.25rem;
    }
    
    .btn-call::before {
        font-size: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .cta-wrap {
        display: none;
    }
}

/* ========================================
   PREMIUM PARTNERS RESPONSIVE 
   ======================================== */

/* Large Desktop (max-width: 1280px) */
@media (max-width: 1280px) {
    .footer-partners {
        padding: 3.5rem 0;
    }
    
    .partners-grid {
        gap: 1.25rem;
    }
    
    .partner-item a {
        padding: 0.75rem;
    }
    
    .partner-item img {
        max-height: 36px;
    }
    
    .partners-title h3 {
        font-size: 1.35rem;
    }
}

/* Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .footer-partners {
        padding: 3rem 0;
    }
    
    /* 4 Columns on Tablet */
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .partner-item a {
        padding: 0.7rem;
        border-radius: 0.75rem;
    }
    
    .partner-item img {
        max-height: 34px;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
    .footer-partners {
        padding: 2.5rem 0;
    }
    
    .partners-title {
        margin-bottom: 2rem;
    }
    
    .partners-title h3 {
        font-size: 1.25rem;
    }
    
    .partners-title p {
        font-size: 0.8rem;
    }
	
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .partner-item a {
        padding: 0.625rem;
        border-radius: 0.625rem;
    }
    
    .partner-item img {
        max-height: 32px;
    }
}


@media (max-width: 576px) {
    .footer-partners {
        padding: 2rem 0;
    }
    
    .partners-title h3 {
        font-size: 1.1rem;
    }
    
    .partners-title h3::after {
        width: 40px;
        height: 2px;
        bottom: -8px;
    }
    
    /* 2 Columns on Mobile */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .partner-item a {
        padding: 0.625rem;
    }
    
    .partner-item img {
        max-height: 30px;
    }
    
    /* Disable tooltip on mobile */
    .partner-item[data-brand]::after {
        display: none;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .footer-partners {
        padding: 1.75rem 0;
    }
    
    .partners-grid {
        gap: 0.75rem;
    }
    
    .partner-item a {
        padding: 0.5rem;
        border-radius: 0.5rem;
    }
    
    .partner-item img {
        max-height: 28px;
    }
}

/* Extra Small (max-width: 375px) */
@media (max-width: 375px) {
    .footer-partners {
        padding: 1.5rem 0;
    }
    
    .partners-grid {
        gap: 0.625rem;
    }
    
    .partner-item a {
        padding: 0.5rem;
    }
    
    .partner-item img {
        max-height: 25px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .footer-partners {
        padding: 1.75rem 0;
    }
    
    /* 4 Columns in Landscape */
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .partner-item a {
        padding: 0.5rem;
    }
    
    .partner-item img {
        max-height: 30px;
    }
}


@media (hover: none) and (pointer: coarse) {
    .partner-item a {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(5px);
    }
    
    .partner-item:hover a {
        transform: none;
    }
    
    .partner-item a::before {
        display: none;
    }
    
    .partner-item img {
        opacity: 0.85;
    }
}

/* High Resolution Screens */
@media (min-width: 1600px) {
    .footer-partners {
        padding: 5rem 0;
    }
    
    .partners-grid {
        gap: 1.75rem;
    }
    
    .partner-item a {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .partner-item img {
        max-height: 45px;
    }
    
    .partners-title h3 {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    .footer-partners {
        display: none;
    }
}

/* ========================================
   FOOTER RESPONSIVE 
   ======================================== */

@media (max-width: 1280px) {
    .footer-wrap {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-wrap .row {
        gap: 1.75rem;
    }
    
    .widget h3 {
        font-size: 1.1rem;
    }
    
    .widget ul li a,
    #footer-menu li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .footer-wrap {
        padding: 3rem 0 1.75rem;
    }  
	.footer-wrap .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .widget h3 {
        font-size: 1rem;
    }
    
    .widget h3::after {
        width: 35px;
        bottom: -6px;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .footer-wrap {
        padding: 2.5rem 0 1.5rem;
    }
    
    /* Still 2 Columns on Tablet */
    .footer-wrap .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .widget {
        margin-bottom: 1rem;
    }
    
    .widget h3 {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .widget ul li {
        margin-bottom: 0.6rem;
    }
    
    .widget ul li a,
    #footer-menu li a {
        font-size: 0.85rem;
    }
    
    .social-icons {
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .footer-wrap {
        padding: 2rem 0 1.25rem;
    }
    
    .footer-wrap .row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .widget {
        text-align: center;
    }
    
    .widget h3 {
        display: inline-block;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .widget ul li a {
        justify-content: center;
    }
    
    .footer-contact li a {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .footer-wrap {
        padding: 1.75rem 0 1rem;
    }
    
    .footer-wrap .row {
        gap: 1.25rem;
    }
    
    .widget h3 {
        font-size: 0.95rem;
    }
    
    .widget ul li a,
    #footer-menu li a {
        font-size: 0.8rem;
    }
    
    .footer-contact li a {
        gap: 0.5rem;
    }
    
    .footer-contact li a i {
        font-size: 0.8rem;
        width: 18px;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* Extra Small (max-width: 375px) */
@media (max-width: 375px) {
    .footer-wrap {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-wrap .row {
        gap: 1rem;
    }
    
    .widget h3 {
        font-size: 0.9rem;
    }
    
    .widget ul li a,
    #footer-menu li a {
        font-size: 0.75rem;
    }
    
    .social-icons a {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
}

/* Touch Devices Optimization */
@media (hover: none) and (pointer: coarse) {
    .widget ul li a:hover,
    #footer-menu li a:hover {
        transform: none;
    }
    
    .social-icons a:hover {
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .site-footer {
        background: #0a0a0e;
    }
}

/* High Resolution Screens */
@media (min-width: 1600px) {
    .footer-wrap {
        padding: 5rem 0 2.5rem;
    }
    
    .footer-wrap .row {
        gap: 2.5rem;
    }
    
    .widget h3 {
        font-size: 1.35rem;
    }
    
    .widget ul li a,
    #footer-menu li a {
        font-size: 0.95rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .site-footer {
        display: none;
    }
}

/* ========================================
   ABOUT US PAGE 
   ======================================== */

@media (max-width: 1280px) {
    .site-main .row {
        max-width: 850px;
    }
}

/* Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .site-main .row {
        max-width: 800px;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .site-main .row {
        max-width: 100%;
    }
    
    .entry-content ul {
        padding-left: 1rem;
    }
    
    .entry-content li {
        padding-left: 1.25rem;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .entry-content ul {
        padding-left: 0.5rem;
    }
    
    .entry-content li {
        padding-left: 1rem;
        margin-bottom: 0.6rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .site-main {
        background: var(--color-bg);
    }
    
    .entry-content blockquote {
        background: var(--color-bg-alt);
    }
}


/* ========================================
   SEARCH RESULTS RESPONSIVE
   ======================================== */

@media (max-width: 1280px) {
    .site-main {
        padding: 3.5rem 0;
    }
    
    .search-card {
        padding: 1.25rem;
    }
    
    .search-card__title {
        font-size: 1.25rem;
    }
}

/* Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .site-main {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .site-main {
        padding: 2.5rem 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .search-card {
        padding: 1rem;
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .search-card__title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .search-card__meta {
        margin-bottom: 0.75rem;
        gap: 1rem;
    }
    
    .search-card__excerpt {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .site-main {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.25rem;
    }
    
    .page-title span {
        display: block;
        margin-top: 0.5rem;
        font-size: 1rem;
    }
    
    .search-card {
        padding: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .search-card__title {
        font-size: 0.95rem;
    }
    
    .search-card__meta {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .search-card__meta span {
        font-size: 0.7rem;
    }
    
    .search-card__excerpt {
        font-size: 0.8rem;
    }
    
    .search-card__link {
        font-size: 0.7rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a,
    .nav-links .page-numbers {
        min-width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .site-main {
        padding: 1.5rem 0;
    }
    
    .search-card {
        padding: 0.75rem;
    }
    
    .search-card__title {
        font-size: 0.9rem;
    }
    
    .search-card__excerpt {
        font-size: 0.75rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .site-main {
        background: var(--color-bg);
    }
    
    .search-card {
        background: var(--color-white);
    }
}

/* High Resolution Screens */
@media (min-width: 1600px) {
    .site-main {
        padding: 5rem 0;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .search-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .search-card__title {
        font-size: 1.5rem;
    }
    
    .search-card__excerpt {
        font-size: 1rem;
    }
}

/* ========================================
   NO RESULTS PAGE 
   ======================================== */

/* Large Desktop (max-width: 1280px) */
@media (max-width: 1280px) {
    .no-results {
        padding: 3.5rem 2rem;
    }
}

/* Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .no-results {
        max-width: 550px;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .no-results {
        max-width: 100%;
        padding: 2.5rem 1.5rem;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .no-results {
        padding: 2rem 1rem;
    }
}

/* Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .no-results {
        padding: 1.5rem 0.875rem;
    }
}

/* High Resolution Screens */
@media (min-width: 1600px) {
    .no-results {
        max-width: 700px;
        padding: 5rem 3rem;
    }
    
    .no-results__icon {
        width: 100px;
        height: 100px;
    }
    
    .no-results__icon i {
        font-size: 3rem;
    }
    
    .no-results__title {
        font-size: 2.5rem;
    }
    
    .no-results__text {
        font-size: 1.1rem;
    }
}

/* ========================================
   ARCHIVE, SINGLE, 404 RESPONSIVE
   ======================================== */

/* Archive Responsive */
@media (max-width: 1024px) {
    .archive-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-main {
        padding: 3rem 0;
    }
    
    .archive-title,
    .page-title {
        font-size: 2rem;
    }
    
    .archive-posts-grid {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .archive-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .single-slide-wrap {
        min-height: 350px;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
}

/* Single Post Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .single-hero {
        min-height: 400px;
    }
    
    .single-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .single-content {
        padding: 3rem 0;
    }
    
    .single-hero {
        min-height: 350px;
    }
    
    .single-hero-content h1 {
        font-size: 2rem;
    }
    
    .single-hero-content .meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .single-hero {
        min-height: 300px;
    }
    
    .single-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .post-content {
        font-size: 0.9rem;
    }
    
    .post-content h2 {
        font-size: 1.35rem;
    }
    
    .post-content h3 {
        font-size: 1.15rem;
    }
}

/* 404 Responsive */
@media (max-width: 768px) {
    .error-404 {
        padding: 3rem 1.5rem;
    }
    
    .error-404 .page-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .error-404 {
        padding: 2rem 1rem;
    }
    
    .error-404 .page-title {
        font-size: 1.5rem;
    }
    
    .error-404 .search-form {
        flex-direction: column;
    }
    
    .error-404 .widget {
        padding: 1rem;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .site-main,
    .single-content {
        background: var(--color-bg);
    }
}

/* ========================================
   COMMENTS SECTION RESPONSIVE
   ======================================== */

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .comments-area {
        padding: 1.5rem 0;
    }
    
    .comments-title,
    .comment-reply-title {
        font-size: 1.35rem;
    }
    
    .comment {
        padding: 1rem;
    }
    
    .comment-author .avatar {
        width: 40px;
        height: 40px;
    }
    
    .comment-content {
        padding-left: 2.5rem;
    }
    
    .reply {
        padding-left: 2.5rem;
    }
    
    .children {
        margin-left: 1.5rem;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .comments-area {
        padding: 1rem 0;
    }
    
    .comment {
        padding: 0.875rem;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comment-content {
        padding-left: 0;
        margin-top: 1rem;
    }
    
    .reply {
        padding-left: 0;
    }
    
    .children {
        margin-left: 0.75rem;
        padding-left: 0.75rem;
    }
    
    /* Comment Form Mobile */
    .comment-form {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .comment-form-comment,
    .form-submit,
    .comment-notes,
    .logged-in-as,
    .comment-form-cookies-consent {
        grid-column: span 1;
    }
    
    .submit {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

/* Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .comment {
        padding: 0.75rem;
    }
    
    .comment-author .avatar {
        width: 35px;
        height: 35px;
    }
    
    .comment-author .fn {
        font-size: 0.9rem;
    }
    
    .comment-metadata {
        font-size: 0.7rem;
    }
    
    .comment-content p {
        font-size: 0.85rem;
    }
    
    .children {
        margin-left: 0.5rem;
        padding-left: 0.5rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .comment {
        background: var(--color-white);
    }
    
    .comment-form input,
    .comment-form textarea {
        background: var(--color-white);
    }
}
/* ============================
   Responsive
============================ */

/* Large Desktop */
@media (max-width: 1280px) {

  .booqable-product-list-grid{
      grid-template-columns:repeat(4,minmax(0,1fr)) !important;
      gap:1.25rem !important;
  }

}

/* Tablet Landscape */
@media (max-width:1024px){

  .booqable-product-list-grid{
      grid-template-columns:repeat(3,minmax(0,1fr)) !important;
      gap:1.25rem !important;
  }

}

/* Tablet Portrait */
@media (max-width:768px){

  .booqable-product-list-grid{
      display:flex !important;
      flex-wrap:wrap !important;
      justify-content:center !important;
      gap:1rem !important;
  }

  .booqable-product-list-grid .booqable-product{
      flex:0 0 calc(50% - .5rem) !important;
      max-width:320px !important;
      width:100% !important;
      margin:0 auto !important;
  }

  .booqable-product-list-grid .BFocalImage-dycqlh,
  .booqable-product-list-grid .booqable-product-inner > div:first-child{
      height:200px !important;
      min-height:200px !important;
      max-height:200px !important;
  }

}

/* Mobile */
@media (max-width:576px){

  .collection-header{
      text-align:center;
  }

  .page-title{
      text-align:center;
      font-size:1.8rem;
  }

  .page-description{
      text-align:center;
      max-width:700px;
      margin:0 auto 1.5rem;
  }

  .booqable-product-list-grid{
      display:flex !important;
      flex-wrap:wrap !important;
      justify-content:center !important;
      gap:.875rem !important;
  }

  .booqable-product-list-grid .booqable-product{
      flex:0 0 calc(50% - .45rem) !important;
      max-width:240px !important;
      width:100% !important;
  }

  .booqable-product-list-grid .BFocalImage-dycqlh,
  .booqable-product-list-grid .booqable-product-inner > div:first-child{
      height:180px !important;
      min-height:180px !important;
      max-height:180px !important;
  }

  .booqable-product-list-grid .Image-laxpnY{
      padding:1rem !important;
  }

  .booqable-product-list-grid .bq-product-name{
      font-size:.9rem !important;
      line-height:1.35 !important;
  }

  .booqable-product-list-grid .bq-price{
      font-size:.95rem !important;
  }

}

/* Small Mobile */
@media (max-width:420px){

  .booqable-product-list-grid .booqable-product{
      flex:0 0 calc(50% - .45rem) !important;
      max-width:180px !important;
  }

  .booqable-product-list-grid .BFocalImage-dycqlh,
  .booqable-product-list-grid .booqable-product-inner > div:first-child{
      height:150px !important;
      min-height:150px !important;
      max-height:150px !important;
  }

  .booqable-product-list-grid .bq-details{
      padding:2.4rem .75rem 1rem !important;
  }

  .booqable-product-list-grid .bq-product-name{
      font-size:.82rem !important;
  }

  .booqable-product-list-grid .bq-price{
      font-size:.85rem !important;
  }

}

/* Extra Small Devices */
@media (max-width:360px){

  .booqable-product-list-grid{
      display:flex !important;
      flex-direction:column !important;
      align-items:center !important;
  }

  .booqable-product-list-grid .booqable-product{
      flex:none !important;
      width:100% !important;
      max-width:320px !important;
  }

}

html, body {
    overflow-x: hidden;
    width: 100%;
}
