/* ========================================
   TABLET RESPONSIVE CSS - OPTIMIZED
   For tablet devices (600px - 1024px)
   Covers all tablet sizes including smaller tablets
   ======================================== */

/* ==================== TABLET BREAKPOINT ==================== */
@media (min-width: 600px) and (max-width: 1024px) {
  
  /* ==================== PREVENT HORIZONTAL SCROLL ==================== */
  * {
    max-width: 100% !important;
  }

  html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  /* ==================== BASE TABLET STYLES ==================== */
  html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden !important;
  }

  .container-fluid {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    overflow-x: hidden !important;
  }

  .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  [class*="col-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 100% !important;
  }

  /* ==================== HEADER - TABLET (MOBILE-STYLE NAVBAR) ==================== */
  .header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9998 !important;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: visible !important;
  }

  .header .container-fluid {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 20px !important;
    height: 60px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    flex-wrap: nowrap !important;
  }

  .header .row {
    width: auto !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
    height: 100% !important;
    margin: 0 !important;
  }

  /* Logo - Left side */
  .header__logo {
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }

  .header__logo img {
    max-width: 140px !important;
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* Hide desktop menu */
  .header__menu {
    display: none !important;
  }

  /* Hide desktop right icons */
  .header__right:not(.header__right--mobile) {
    display: none !important;
  }

  /* Mobile-style icons - Right side */
  .header__right--mobile {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    flex-shrink: 0 !important;
    height: 40px !important;
  }

  .header__right--mobile .header__right__widget {
    display: flex !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    height: 40px !important;
  }

  .header__right--mobile .header__right__widget li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 40px !important;
  }

  .header__right--mobile .header__right__widget li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
    color: #111 !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .header__right--mobile .header__right__widget li a .tip {
    position: absolute !important;
    right: -6px !important;
    top: -6px !important;
    width: 18px !important;
    height: 18px !important;
    background: #ca1515 !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }

  .header__right--mobile .user-dropdown {
    display: flex !important;
    position: relative !important;
    z-index: 999999 !important;
    overflow: visible !important;
    align-items: center !important;
    height: 40px !important;
  }

  .header__right--mobile .user-dropdown .user-dropdown-menu {
    position: fixed !important;
    z-index: 999999 !important;
    right: 15px !important;
    left: auto !important;
    top: 65px !important;
    pointer-events: auto !important;
  }

  .header__right--mobile .user-dropdown .user-dropdown-menu.active {
    pointer-events: auto !important;
  }

  .header__right--mobile .user-dropdown .user-dropdown-menu .user-dropdown-item {
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  .header__right--mobile .user-dropdown .user-dropdown-menu .user-dropdown-item.dimmed {
    pointer-events: none !important;
  }

  .header__right--mobile .user-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
  }

  .header__right--mobile .user-icon i {
    font-size: 20px !important;
    pointer-events: none !important;
  }

  /* Hamburger menu - Inside mobile icons container */
  .header__right--mobile .canvas__open {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    text-align: center !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 20px !important;
    color: #111 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    position: static !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .header__right--mobile .canvas__open i {
    pointer-events: none !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Hide any canvas__open outside the mobile container */
  .header > .container-fluid > .canvas__open {
    display: none !important;
  }

  /* ==================== OFFCANVAS MENU - TABLET ==================== */
  .offcanvas-menu-overlay {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 998 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
  }

  .offcanvas-menu-overlay.active {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .offcanvas-menu-wrapper {
    position: fixed !important;
    left: -320px !important;
    top: 0 !important;
    width: 320px !important;
    height: 100% !important;
    background: #fff !important;
    z-index: 999 !important;
    overflow-y: auto !important;
    padding: 20px 0 !important;
    transition: left 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .offcanvas-menu-wrapper.active {
    left: 0 !important;
  }

  .offcanvas__close {
    position: absolute !important;
    right: 15px !important;
    top: 15px !important;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    cursor: pointer !important;
    color: #111 !important;
    background: #f8f8f8 !important;
    transition: all 0.3s !important;
  }

  .offcanvas__close:hover {
    background: #ca1515 !important;
    color: #fff !important;
    border-color: #ca1515 !important;
  }

  .offcanvas__close i {
    line-height: 1 !important;
  }

  .offcanvas__logo {
    display: none !important;
  }

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

  #mobile-menu-wrap {
    padding: 60px 25px 25px !important;
    flex: 1 !important;
  }

  .slicknav_menu {
    background: transparent !important;
    padding: 0 !important;
  }

  .slicknav_btn {
    display: none !important;
  }

  .slicknav_nav {
    padding: 0 !important;
  }

  .slicknav_nav a {
    padding: 18px 0 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #111 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s !important;
  }

  .slicknav_nav a:hover {
    color: #3a9c40 !important;
    padding-left: 10px !important;
  }

  .slicknav_nav li:last-child a {
    border-bottom: none !important;
  }

  /* Profile Section at Bottom */
  .offcanvas__profile {
    padding: 25px !important;
    border-top: 1px solid #f0f0f0 !important;
    background: #f8f8f8 !important;
    margin-top: auto !important;
  }

  .offcanvas__profile-info {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 18px !important;
  }

  .offcanvas__profile-icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .offcanvas__profile-icon i {
    font-size: 26px !important;
    color: #ca1515 !important;
  }

  .offcanvas__profile-details {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .offcanvas__profile-name {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .offcanvas__profile-email {
    font-size: 13px !important;
    color: #666 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .offcanvas__login-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 16px 24px !important;
    background: #ca1515 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
  }

  .offcanvas__login-btn:hover {
    background: #b01212 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(202, 21, 21, 0.3) !important;
  }

  .offcanvas__login-btn i {
    font-size: 18px !important;
  }

  .offcanvas__logout-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 14px 24px !important;
    background: #fff !important;
    color: #ca1515 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border: 1px solid #ca1515 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
  }

  .offcanvas__logout-btn:hover {
    background: #ca1515 !important;
    color: #fff !important;
  }

  .offcanvas__logout-btn i {
    font-size: 16px !important;
  }

  /* ==================== BANNER - TABLET ==================== */
  .banner {
    height: 420px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .banner__slider {
    padding: 120px 0 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .banner__text span {
    font-size: 16px !important;
  }

  .banner__text h1 {
    font-size: 64px !important;
    margin-bottom: 12px !important;
  }

  .banner__text a {
    font-size: 13px !important;
    padding: 10px 24px !important;
  }

  .banner__slider.owl-carousel .owl-dots {
    top: 360px !important;
  }

  /* ==================== PROMO BANNER - TABLET ==================== */
  .promo-banner {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .promo-banner-content {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* ==================== SHOP HERO BANNER - TABLET ==================== */
  .shop-hero {
    height: 240px !important;
  }

  .shop-hero__title {
    font-size: 60px !important;
    letter-spacing: 6px !important;
  }

  .shop-hero__links a,
  .shop-hero__links span {
    font-size: 13px !important;
  }

  /* ==================== BREADCRUMB - TABLET ==================== */
  .breadcrumb-option {
    padding: 10px 0 18px 0 !important;
  }

  .breadcrumb__links a,
  .breadcrumb__links span {
    font-size: 14px !important;
  }

  /* ==================== CATEGORIES - TABLET ==================== */
  .categories {
    margin-top: 8px !important;
  }

  .categories .container-fluid {
    padding-right: 4px !important;
  }

  .categories__item {
    height: 280px !important;
    padding-left: 25px !important;
    margin-bottom: 8px !important;
    margin-right: 8px !important;
  }

  .categories__item.categories__large__item {
    height: 568px !important;
    padding-left: 50px !important;
  }

  .categories__text h1 {
    font-size: 60px !important;
  }

  .categories__text h4 {
    font-size: 20px !important;
  }

  .categories__text p {
    font-size: 13px !important;
  }

  .categories__text a {
    font-size: 13px !important;
  }

  /* ==================== PRODUCTS - TABLET 3x3 GRID (9 ITEMS) ==================== */
  .product {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
  }

  .section-title {
    margin-bottom: 35px !important;
  }

  .section-title h4 {
    font-size: 18px !important;
  }

  /* Filter Controls - Tablet */
  .filter__controls {
    margin-bottom: 40px !important;
  }

  .filter__controls li {
    font-size: 13px !important;
    margin-right: 28px !important;
  }

  /* Product Grid - FORCE 3 Columns x 3 Rows = 9 Items on Tablet */
  .product .row.property__gallery,
  .product > .container > .row:not(:first-child),
  .product .col-lg-12 > .row:not(:first-child),
  .shop .row.property__gallery,
  .shop > .container > .row:not(:first-child) {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Smaller tablets (600-768px) - Tighter spacing */
  @media (min-width: 600px) and (max-width: 768px) {
    .product .row.property__gallery,
    .product > .container > .row:not(:first-child),
    .product .col-lg-12 > .row:not(:first-child),
    .shop .row.property__gallery,
    .shop > .container > .row:not(:first-child) {
      gap: 10px !important;
    }

    .product__item__pic {
      height: 280px !important;
      min-height: 280px !important;
      max-height: 280px !important;
    }

    .product__item__text h6 {
      font-size: 12px !important;
    }

    .product__item__text .product__price {
      font-size: 14px !important;
    }
  }

  /* Override ALL column classes to force 3-column grid */
  .product .row > div,
  .product .row > .col-lg-3,
  .product .row > .col-lg-4,
  .product .row > .col-md-4,
  .product .row > .col-sm-6,
  .product .row > [class*="col-"],
  .shop .row > div,
  .shop .row > .col-lg-3,
  .shop .row > .col-lg-4,
  .shop .row > .col-md-4,
  .shop .row > .col-sm-6,
  .shop .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Product item styling */
  .product__item {
    margin-bottom: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .product__item__pic {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    width: 100% !important;
  }

  .product__item__pic.set-bg {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  .product__item__pic .label {
    font-size: 11px !important;
    padding: 3px 9px !important;
  }

  .product__hover {
    bottom: 25px !important;
  }

  .product__hover li {
    margin-right: 7px !important;
  }

  .product__hover li button,
  .product__hover li a {
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
  }

  .product__item__text {
    padding-top: 18px !important;
  }

  .product__item__text h6 {
    font-size: 13px !important;
    margin-bottom: 5px !important;
  }

  .product__item__text h6 a {
    font-size: 13px !important;
  }

  .product__item__text .rating {
    margin-bottom: 4px !important;
  }

  .product__item__text .rating i {
    font-size: 10px !important;
  }

  .product__item__text .product__price {
    font-size: 15px !important;
  }

  .product__item__text .product__price span {
    font-size: 13px !important;
  }

  /* Product Pagination - Tablet */
  .product__pagination {
    gap: 18px !important;
    margin-top: 35px !important;
  }

  .product__pagination__btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 17px !important;
  }

  .product__pagination__info {
    font-size: 14px !important;
    min-width: 110px !important;
  }

  /* ==================== PRODUCT DETAILS - TABLET ==================== */
  .product-details {
    padding-top: 15px !important;
    padding-bottom: 40px !important;
  }

  /* Main Image - Tablet */
  .product__details__main-image {
    min-height: 450px !important;
    margin-bottom: 18px !important;
  }

  .product__details__main-image img {
    max-height: 550px !important;
  }

  .product__details__main-image .label {
    top: 12px !important;
    left: 12px !important;
    font-size: 11px !important;
    padding: 5px 10px !important;
  }

  /* Thumbnails - Tablet */
  .product__details__thumbnails {
    gap: 8px !important;
  }

  .thumbnail-btn {
    width: calc(20% - 6.4px) !important;
    min-width: 75px !important;
    max-width: 110px !important;
  }

  /* Product Info - Tablet */
  .product__details__text h3 {
    font-size: 22px !important;
    margin-bottom: 14px !important;
  }

  .product__details__text .rating {
    margin-bottom: 14px !important;
  }

  .product__details__text .rating i {
    font-size: 11px !important;
  }

  .product__details__text .rating span {
    font-size: 11px !important;
  }

  .product__details__text p {
    font-size: 13px !important;
    margin-bottom: 18px !important;
  }

  .product__details__price {
    font-size: 28px !important;
    margin-bottom: 25px !important;
  }

  .product__details__price span {
    font-size: 17px !important;
  }

  /* Quantity Selector - Tablet */
  .quantity {
    margin-right: 8px !important;
  }

  .quantity > span {
    font-size: 13px !important;
    margin-right: 12px !important;
  }

  .pro-qty {
    height: 46px !important;
    padding: 0 18px !important;
  }

  .pro-qty .qtybtn {
    font-size: 13px !important;
    line-height: 42px !important;
  }

  .pro-qty input {
    font-size: 13px !important;
    width: 75px !important;
    height: 44px !important;
  }

  /* Buttons - Tablet */
  .product-details__buttons {
    gap: 8px !important;
    margin-bottom: 18px !important;
  }

  .product-details__buttons .add-to-cart-btn,
  .product-details__buttons .buy-now-btn {
    font-size: 12px !important;
    padding: 11px 18px !important;
  }

  .product__details__button .cart-btn {
    font-size: 13px !important;
    padding: 13px 28px 14px !important;
  }

  .product__details__button .wishlist-btn {
    height: 46px !important;
    width: 46px !important;
    line-height: 46px !important;
  }

  /* Collapsible Sections - Tablet */
  .product__collapsible {
    margin-bottom: 8px !important;
  }

  .collapsible__header {
    padding: 11px 15px !important;
  }

  .collapsible__header h6 {
    font-size: 11px !important;
  }

  .collapsible__header i {
    font-size: 13px !important;
  }

  .collapsible__content {
    padding: 0 15px !important;
  }

  .product__collapsible.active .collapsible__content {
    padding: 13px 15px !important;
  }

  .collapsible__content ul li {
    font-size: 11px !important;
    padding: 5px 0 !important;
  }

  .collapsible__content p {
    font-size: 11px !important;
  }

  /* Key Features - Tablet */
  .product__key-features {
    padding: 15px !important;
  }

  .key-features-grid {
    gap: 14px !important;
  }

  .key-feature-item {
    gap: 11px !important;
  }

  .key-feature-item i {
    font-size: 19px !important;
  }

  .key-feature-item .feature-text strong {
    font-size: 12px !important;
  }

  .key-feature-item .feature-text span {
    font-size: 10px !important;
  }

  /* Related Products - Tablet 3x3 Grid */
  .related-products.spad {
    padding-top: 35px !important;
    padding-bottom: 18px !important;
  }

  .related-products .section-title {
    margin-bottom: 22px !important;
  }

  .related-products .section-title h4 {
    font-size: 18px !important;
  }

  /* 3 Columns x 3 Rows for Related Products */
  .related-products .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .related-products .row > div {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* ==================== TREND SECTION - TABLET ==================== */
  .trend {
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }

  .trend__content .section-title h4 {
    font-size: 18px !important;
  }

  .trend__item {
    margin-bottom: 30px !important;
  }

  .trend__item__pic {
    margin-right: 20px !important;
  }

  .trend__item__text h6 {
    font-size: 13px !important;
  }

  .trend__item__text .rating i {
    font-size: 9px !important;
  }

  .trend__item__text .product__price {
    font-size: 14px !important;
  }

  .trend__item__text .product__price span {
    font-size: 13px !important;
  }

  /* ==================== DISCOUNT SECTION - TABLET ==================== */
  .discount__text {
    height: 350px !important;
    padding: 60px 70px 40px !important;
  }

  .discount__text__title {
    margin-bottom: 50px !important;
  }

  .discount__text__title h2 {
    font-size: 52px !important;
    line-height: 42px !important;
  }

  .discount__text__title span {
    font-size: 11px !important;
  }

  .discount__countdown {
    margin-bottom: 8px !important;
  }

  .countdown__item {
    width: 24% !important;
  }

  .countdown__item span {
    font-size: 28px !important;
  }

  .countdown__item p {
    font-size: 13px !important;
  }

  /* ==================== SERVICES - TABLET ==================== */
  .services {
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }

  .services__item {
    padding-left: 60px !important;
    margin-bottom: 18px !important;
  }

  .services__item i {
    font-size: 34px !important;
    top: 3px !important;
  }

  .services__item h6 {
    font-size: 15px !important;
  }

  .services__item p {
    font-size: 13px !important;
  }

  /* ==================== INSTAGRAM - TABLET 6 COLUMNS ==================== */
  .instagram {
    padding: 8px !important;
    padding-left: 25px !important;
  }

  /* Instagram Profile Header - Tablet */
  .instagram-profile-header {
    padding: 18px 25px !important;
    margin-bottom: 18px !important;
  }

  .instagram-profile-pic {
    width: 55px !important;
    height: 55px !important;
  }

  .instagram-username {
    font-size: 17px !important;
  }

  .instagram-view-profile {
    padding: 7px 22px !important;
    font-size: 13px !important;
  }

  /* Instagram Posts Container - Tablet */
  .instagram-posts-container {
    padding-bottom: 18px !important;
  }

  .instagram-posts-container .instagram__row--7col {
    padding: 0 18px !important;
  }

  .instagram-header {
    margin-bottom: 35px !important;
  }

  .instagram-header h3 {
    font-size: 26px !important;
  }

  .instagram-header p {
    font-size: 15px !important;
  }

  /* 6 Column Grid for Tablet */
  .instagram__row--7col {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 2px !important;
  }

  .instagram__item {
    aspect-ratio: 1 / 1.25 !important;
  }

  .instagram__text {
    padding: 14px 22px !important;
    border-radius: 18px !important;
  }

  .instagram__text i {
    font-size: 18px !important;
  }

  .instagram__text p {
    font-size: 14px !important;
  }

  /* ==================== FOOTER - TABLET ==================== */
  .footer {
    padding-top: 50px !important;
  }

  .footer__about,
  .footer__widget,
  .footer__newslatter {
    margin-bottom: 28px !important;
  }

  .footer__logo {
    margin-bottom: 18px !important;
  }

  .footer__logo img {
    max-width: 160px !important;
  }

  .footer__about p {
    font-size: 13px !important;
  }

  .footer__widget h6 {
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }

  .footer__widget ul li a {
    font-size: 13px !important;
    line-height: 28px !important;
  }

  .footer__newslatter h6 {
    font-size: 15px !important;
    margin-bottom: 22px !important;
  }

  .footer__newslatter form input {
    height: 48px !important;
    padding-left: 25px !important;
    font-size: 13px !important;
  }

  .footer__newslatter form button {
    right: 3px !important;
    top: 3px !important;
  }

  .footer__social a {
    height: 38px !important;
    width: 38px !important;
    font-size: 14px !important;
    line-height: 38px !important;
    margin-right: 5px !important;
  }

  .footer__copyright__text {
    padding: 16px 0 22px !important;
    margin-top: 32px !important;
  }

  .footer__copyright__text p {
    font-size: 13px !important;
  }

  /* ==================== SHOP CART - TABLET ==================== */
  .shop-cart {
    padding-top: 60px !important;
    padding-bottom: 80px !important;
  }

  .shop__cart__table {
    margin-bottom: 25px !important;
  }

  .shop__cart__table thead th {
    font-size: 13px !important;
    padding-bottom: 10px !important;
  }

  .shop__cart__table tbody tr td {
    padding: 12px 0 !important;
  }

  .shop__cart__table tbody tr .cart__product__item {
    width: 350px !important;
  }

  .shop__cart__table tbody tr .cart__product__item img.cart-item-image {
    width: 65px !important;
    height: 65px !important;
    margin-right: 12px !important;
  }

  .shop__cart__table tbody tr .cart__product__item .cart__product__item__title h6 {
    font-size: 12px !important;
  }

  .shop__cart__table tbody tr .cart__price {
    font-size: 13px !important;
    width: 90px !important;
  }

  .shop__cart__table tbody tr .cart__quantity {
    width: 110px !important;
  }

  .shop__cart__table tbody tr .cart__quantity .pro-qty {
    width: 90px !important;
    height: 32px !important;
  }

  .shop__cart__table tbody tr .cart__quantity .pro-qty .qtybtn {
    font-size: 15px !important;
    line-height: 30px !important;
    width: 22px !important;
    height: 32px !important;
  }

  .shop__cart__table tbody tr .cart__quantity .pro-qty input {
    height: 32px !important;
    width: 45px !important;
    font-size: 12px !important;
  }

  .shop__cart__table tbody tr .cart__total {
    font-size: 13px !important;
    width: 90px !important;
  }

  .shop__cart__table tbody tr .cart__close {
    width: 45px !important;
  }

  .shop__cart__table tbody tr .cart__close span {
    height: 32px !important;
    width: 32px !important;
    font-size: 15px !important;
    line-height: 32px !important;
  }

  .cart__btn {
    margin-bottom: 25px !important;
  }

  .cart__btn a {
    font-size: 13px !important;
    padding: 12px 28px !important;
  }

  .cart__total__procced {
    padding: 35px 30px 40px !important;
  }

  .cart__total__procced h6 {
    font-size: 18px !important;
    margin-bottom: 22px !important;
  }

  .cart__total__procced ul li {
    font-size: 15px !important;
    padding: 8px 0 !important;
  }

  .cart__total__procced .site-btn {
    font-size: 13px !important;
    padding: 12px 28px !important;
  }

  /* ==================== CHECKOUT - TABLET ==================== */
  .checkout {
    padding-top: 60px !important;
    padding-bottom: 80px !important;
  }

  .checkout__form h5 {
    font-size: 18px !important;
    margin-bottom: 22px !important;
  }

  .checkout__form__input {
    margin-bottom: 18px !important;
  }

  .checkout__form__input p {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }

  .checkout__form__input input {
    height: 46px !important;
    padding-left: 18px !important;
    font-size: 13px !important;
  }

  .checkout__form__checkbox label {
    font-size: 13px !important;
  }

  .checkout__order {
    padding: 35px 30px 40px !important;
  }

  .checkout__order h5 {
    font-size: 18px !important;
    margin-bottom: 22px !important;
  }

  .checkout__order__product ul li {
    font-size: 14px !important;
    padding: 8px 0 !important;
  }

  .checkout__order__total ul li {
    font-size: 15px !important;
    padding: 8px 0 !important;
  }

  .checkout__order .site-btn {
    font-size: 13px !important;
    padding: 12px 28px !important;
  }

  /* ==================== CONTACT - TABLET ==================== */
  .contact {
    padding-top: 60px !important;
    padding-bottom: 80px !important;
  }

  .contact__content h5 {
    font-size: 18px !important;
    margin-bottom: 22px !important;
  }

  .contact__address {
    margin-bottom: 28px !important;
  }

  .contact__address h6 {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }

  .contact__address p {
    font-size: 13px !important;
  }

  .contact__map {
    height: 350px !important;
  }

  .contact__form h5 {
    font-size: 18px !important;
    margin-bottom: 22px !important;
  }

  .contact__form input,
  .contact__form textarea {
    padding: 12px 18px !important;
    font-size: 13px !important;
    margin-bottom: 18px !important;
  }

  .contact__form textarea {
    height: 140px !important;
  }

  .contact__form button {
    font-size: 13px !important;
    padding: 12px 28px !important;
  }

  /* ==================== SHOP PAGE - TABLET 3 COLUMNS ==================== */
  .shop {
    padding-top: 50px !important;
    padding-bottom: 60px !important;
  }

  /* Shop product grid - Force 3 columns */
  .shop .col-lg-9 .row,
  .shop .product-grid .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .shop .col-lg-9 .row > div,
  .shop .product-grid .row > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* ==================== SIDEBAR - TABLET ==================== */
  .sidebar__categories {
    margin-bottom: 45px !important;
  }

  .sidebar__categories .section-title {
    margin-bottom: 30px !important;
  }

  .sidebar__categories .section-title h4 {
    font-size: 17px !important;
  }

  .categories__accordion .card {
    padding-bottom: 10px !important;
    margin-bottom: 10px !important;
  }

  .categories__accordion .card-heading a {
    font-size: 13px !important;
  }

  .categories__accordion .card-body li a {
    font-size: 13px !important;
    line-height: 28px !important;
  }

  .sidebar__filter {
    margin-bottom: 50px !important;
  }

  .sidebar__filter .section-title {
    margin-bottom: 45px !important;
  }

  .sidebar__filter .section-title h4 {
    font-size: 17px !important;
  }

  .sidebar__filter a {
    font-size: 13px !important;
    padding: 4px 14px 4px 22px !important;
  }

  .filter-range-wrap .range-slider .price-input p {
    font-size: 15px !important;
  }

  .filter-range-wrap .range-slider .price-input input {
    font-size: 15px !important;
  }

  .sidebar__sizes,
  .sidebar__color {
    margin-bottom: 35px !important;
  }

  .sidebar__sizes .section-title h4,
  .sidebar__color .section-title h4 {
    font-size: 17px !important;
  }

  .sidebar__sizes .size__list label,
  .sidebar__color .size__list label {
    font-size: 13px !important;
  }

  /* ==================== PAGINATION - TABLET ==================== */
  .pagination__option a {
    height: 38px !important;
    width: 38px !important;
    font-size: 13px !important;
    line-height: 38px !important;
    margin-right: 5px !important;
  }

  /* ==================== GENERAL UTILITIES - TABLET ==================== */
  .spad {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  h1 {
    font-size: 60px !important;
  }

  h2 {
    font-size: 32px !important;
  }

  h3 {
    font-size: 27px !important;
  }

  h4 {
    font-size: 22px !important;
  }

  h5 {
    font-size: 17px !important;
  }

  h6 {
    font-size: 15px !important;
  }

  p {
    font-size: 13px !important;
    line-height: 22px !important;
  }

  .primary-btn,
  .site-btn {
    font-size: 13px !important;
    padding: 11px 28px !important;
  }

  /* ==================== BUTTONS - TABLET ==================== */
  .primary-btn {
    padding: 11px 28px 9px !important;
  }

  .site-btn {
    padding: 11px 28px !important;
  }

  /* ==================== LOGIN PAGE - TABLET ==================== */
  .login-container {
    flex-direction: row !important;
  }

  .login-left {
    flex: 0 0 45% !important;
    max-width: 45% !important;
  }

  .login-right {
    flex: 0 0 55% !important;
    max-width: 55% !important;
    padding: 40px 50px !important;
  }

  .login-form-wrapper {
    max-width: 420px !important;
  }

  .login-right h3 {
    font-size: 26px !important;
    margin-bottom: 25px !important;
  }

  .login-right input {
    height: 48px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }

  .login-right button {
    height: 48px !important;
    font-size: 15px !important;
  }

  /* ==================== AUTH PAGE - TABLET ==================== */
  .auth-page-fullscreen {
    padding: 40px 30px !important;
  }

  .auth-container-centered {
    max-width: 450px !important;
  }

}
