/* --- PREMIUM REDESIGN ADDITIONS --- */

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: rgba(255, 107, 53, 0.85);
  /* Glassy orange */
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: rgba(255, 69, 0, 1);
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
  transform: translateY(-3px) scale(1.05);
}

/* Fix Mobile Scroll Lag caused by background-attachment: fixed */
body {
  background-attachment: scroll !important;
  background-image: none !important;
  /* Hide native bg */
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /*! background-image: url("https://artitech.ro:85/assets/bgmain.webp"); */
  background-size: cover;
  background-position: center;
  z-index: -999;
  pointer-events: none;
  will-change: transform;
}

/* Hero Banner Update */
.banner {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(255, 69, 0, 0.95)) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  padding: 5px 4px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

/* Product Cards Premium Look */
.product-box {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.08) !important;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.img-wrapper {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background: transparent;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  border-radius: 0 !important;
  /* Wrapper handles border-radius */
}

/* Base static state for quick add (Always visible on Mobile!) */
.quick-add-container {
  max-height: 50px;
  opacity: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

/* =========================================
   DESKTOP ONLY ANIMATIONS
========================================= */
@media (min-width: 769px) {

  .product-box:hover,
  .product-box.hover-active {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 10px 30px 0 rgba(255, 107, 53, 0.2) !important;
    border-color: rgba(255, 107, 53, 0.3);
  }

  .product-box:hover .product-img,
  .product-box.hover-active .product-img {
    transform: scale(1.08);
    /* slight zoom */
  }

  .quick-add-container {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .product-box:hover .quick-add-container,
  .product-box.hover-active .quick-add-container {
    max-height: 50px;
    opacity: 1;
    margin-bottom: 12px;
  }
}

/* ========================================= */

.quick-add-btn {
  background: linear-gradient(135deg, #ff6b35, #ff4500);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-add-btn:hover {
  background: white;
  color: #ff4500;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
}

.stars {
  color: #FFD700;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating-count {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  margin-left: 6px;
}

.product-title {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
  line-height: 1.4;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.price {
  color: #000 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.new-price {
  color: #000 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  background: none !important;
  padding: 0 !important;
}

.old-price {
  color: #555 !important;
  font-size: 14px !important;
  text-decoration: line-through;
  background: none !important;
}

.sale-ribbon {
  background: linear-gradient(135deg, #ff0000, #cc0000) !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3) !important;
  z-index: 10;
}

/* Fix product link color */
.product-box a[href^="/Produs/"] {
  color: inherit !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

/* =========================================
   REDESIGNED SIDEBAR V2
========================================= */
#uniqueSidebar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 100vh !important;
  width: 280px !important;
  background: #ffffff !important;
  z-index: 10005 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 20px 18px !important;
  border-right: 1px solid #eeeeee !important;
  box-sizing: border-box !important;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08) !important;

  /* Mobile Default */
  display: none !important;
  transform: none !important;
}

#uniqueSidebar.active {
  display: block !important;
}

/* Close Button */
.close-btn {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  font-size: 26px !important;
  color: #000000 !important;
  font-weight: bold !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  background: transparent !important;
  transition: color 0.2s ease !important;
}

.close-btn:hover {
  color: #ff5000 !important;
}

/* Sidebar Logo */
.sidebar-logo {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.sidebar-logo a {
  display: inline-block;
}

.sidebar-logo img {
  height: 28px;
  width: auto;
}

/* Sidebar Title */
.sidebar-title {
  color: #333 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  text-align: left !important;
}

/* Section Labels (Oferte Speciale, Cautate Frecvent) */
.sidebar-section-label {
  color: #ff5000 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  margin: 18px 0 8px 0 !important;
  padding: 0 !important;
  display: block !important;
}

/* Hide old sidebar-header */
.sidebar-header {
  display: none !important;
}

/* Category Links V2 */
.sidebarcat-v2 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 6px 0 !important;
  backdrop-filter: blur(4px) !important;
  margin-bottom: 12px !important;
}

.sidebarLink-v2 {
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 8px !important;
  border-radius: 10px !important;
  transition: background 0.2s ease !important;
  color: #222 !important;
}

.sidebarLink-v2 h3 {
  display: none !important;
}

.sidebarLink-v2:hover {
  background: #f5f5f5 !important;
}

.sidebarLink-v2:hover .sb-chevron {
  color: #ff5000 !important;
}

.sb-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.sb-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  flex-shrink: 0;
  transition: all 0.2s ease;
  overflow: hidden;
}

.sb-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebarLink-v2:hover .sb-icon {
  background: #fff0e6;
  color: #ff5000;
}

.sb-chevron {
  font-size: 18px;
  color: #ccc;
  transition: color 0.2s ease;
}

/* Thumbnails Row */
.sidebar-thumbs-row {
  display: flex;
  gap: 8px;
  margin: 8px 0 15px 0;
  flex-wrap: wrap;
}

.sb-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #f0f0f0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sb-thumb:hover {
  border-color: #ff5000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 80, 0, 0.15);
}

.sb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Promo Card */
.sidebar-promo-card {
  margin: 10px 0 15px 0;
  background: #f8f8f8;
  border-radius: 14px;
  overflow: hidden;
}

.sb-promo-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.sb-promo-img {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.sb-promo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sb-promo-text strong {
  font-size: 13px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.3px;
}

.sb-promo-text span {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}

.sb-promo-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 14px;
  background: #ff5000;
  color: white !important;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background 0.2s ease;
  width: fit-content;
}

.sb-promo-btn:hover {
  background: #e04500;
}

/* Trust Bar */
.sidebar-trust-bar {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0 5px;
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
}

.sb-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex: 1;
}

.sb-trust-item>i {
  font-size: 16px;
  color: #555;
  margin-top: 2px;
  flex-shrink: 0;
}

.sb-trust-item div {
  display: flex;
  flex-direction: column;
}

.sb-trust-item strong {
  font-size: 9px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.sb-trust-item span {
  font-size: 8px;
  color: #999;
  line-height: 1.3;
}

/* Hide old sidebar elements that might leak through */
.sidebar-img-cat {
  display: none !important;
}

/* =========================================
   DESKTOP SIDEBAR ANIMATIONS
========================================= */
@media (min-width: 769px) {
  #uniqueSidebar {
    display: block !important;
    transform: translateX(-100%) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1) !important;
  }

  #uniqueSidebar.active {
    transform: translateX(0) !important;
  }
}

/* --- PREMIUM REDESIGN V2 --- */
.header-bottom-bg {
  background-image: url('https://artitech.ro:85/assets/backgroundspate.webp');
  background-size: cover;
  background-position: center;
  padding-top: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-bottom: 11rem;

}

.header-bottom-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  pointer-events: none;
}

.header-bottom-bg>* {
  position: relative;
  z-index: 1;
}

.pills-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.category-pill {
  background: #ff5000;
  border-radius: 30px;
  padding: 5px 20px 5px 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 550;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 80, 0, 0.4);
  transition: transform 0.3s;
}

.category-pill:hover {
  transform: translateY(-3px);
  background: #ff601a;
  color: white;
}

.category-pill img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.containersearch .search-container {
  display: flex;
  align-items: center;
  background: white !important;
  border-radius: 30px !important;
  padding: 5px 15px !important;
  width: 100% !important;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  border: none !important;
}

.search-icon-left {
  color: #666 !important;
  margin-right: 10px;
  font-size: 24px;
}

.search-input {
  border: none !important;
  outline: none !important;
  flex-grow: 1;
  font-size: 16px !important;
  padding: 10px !important;
  background: transparent !important;
  color: #000 !important;
}

.search-input::placeholder {
  color: #888 !important;
  font-weight: normal !important;
}

.search-btn-right {
  background: #ff5000 !important;
  border: none !important;
  color: white !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.search-btn-right:hover {
  background: #ff601a !important;
}

/* Fix spacing under fixed header */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.collection-card {
  height: 220px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  border: ;
  outline: 1px solid white;
  /*! outline-offset: -10px; */
}

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
}

.collection-card:hover {
  transform: translateY(-10px);
}

.col-content {
  position: relative;
  z-index: 1;
  color: white;
}

.col-subtitle {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
}

.col-title {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.col-title-fnaf { color: #ff5000; }
.col-title-squid { color: #ff0055; }
.col-title-mc { color: #4dff4d; }
.col-title-el { color: #4da6ff; }

.collections-carousel-outer {
  width: 100%;
  box-sizing: border-box;
}

.collections-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.collections-carousel-dots {
  display: none;
}

@media (min-width: 769px) {
  .collections-carousel-viewport {
    display: block !important;
    overflow: visible !important;
    gap: 0;
  }

  .collections-carousel-outer .collections-carousel-track,
  .collections-carousel-outer .collections-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: 20px !important;
  }

  .collections-carousel-outer .collection-card {
    flex: unset !important;
    width: auto !important;
    max-width: none !important;
  }
}

.col-btn {
  background: white;
  color: black;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}

.col-btn:hover {
  background: #ff5000;
  color: white;
}

.title-underline {
  width: 50px;
  height: 3px;
  background: #ff5000;
  margin: 5px auto 5px;
  border: none;
}

.m-0 {
  margin: 0 !important;
}

/* Fix section titles */
.section-heading-new {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  background: transparent !important;
  text-align: center;
  margin-bottom: 10px;
}

.text-left {
  text-align: left;
}

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

/* Fix spacing under fixed header */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -9.5rem;
  /* Offset fixed header */
  margin-bottom: 10px;
  max-width: 1600px;
}

/* --- PRODUSE NOI SECTION --- */
.highlighted-collection1 {
  padding-top: 0rem !important;
  padding-bottom: 1rem !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  overflow: visible !important;
}

/* Override old Produse Noi styles (product1, products-container1) */
.products-container1::before,
.products-container1::after {
  display: none !important;
}

.products-container1 {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  max-width: 1800px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: visible !important;
  padding: 20px 0 !important;
  border-radius: 0 !important;
  gap: 0 !important;
}

.products-clip1 {
  flex: 1 !important;
  overflow: hidden !important;
  margin: 0 15px !important;
}

.products-container1 .products-wrapper1 {
  display: flex !important;
  overflow: visible !important;
  gap: 20px !important;
  transition: transform 0.4s ease !important;
  padding-top: 0.3rem;
}

.products-container1 .arrow {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  z-index: 10 !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 50% !important;
  background: #ff5000 !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(255, 80, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
}

.products-container1 .arrow:hover {
  background: #e04500 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 16px rgba(255, 80, 0, 0.4) !important;
}

.products-container1 .left-arrow {
  left: auto !important;
  margin-left: 5px !important;
}

.products-container1 .right-arrow {
  right: auto !important;
  margin-right: 5px !important;
}

.product1 {
  background: white !important;
  border-radius: 16px !important;
  border: 1px solid #eee !important;
  padding: 15px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s !important;
  flex: 0 0 calc(12.5% - 20px) !important;
  min-width: 130px !important;
  cursor: pointer !important;
  text-align: center !important;
  margin-right: 0 !important;
}

.product1:last-child {
  margin-right: 0 !important;
}

.product1:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  border-color: #ff5000 !important;
}

.product1 img {
  border-radius: 12px !important;
  width: 100% !important;
  height: auto !important;
  margin-bottom: 12px !important;
  object-fit: cover !important;
}

.product1 h3 {
  color: #000 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
}

.price1 {
  background: transparent !important;
  padding: 0 !important;
  color: #ff5000 !important;
  font-weight: 800 !important;
  font-size: 16px !important;
}

.shop-layout {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.pc-sidebar-filters {
  width: 280px;
  flex-shrink: 0;
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.filter-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-title {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  cursor: pointer;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #444;
}

.custom-checkbox input {
  margin-right: 10px;
  accent-color: #ff5000;
  width: 16px;
  height: 16px;
}

.price-slider-wrapper {
  padding: 0 5px;
  position: relative;
}

.custom-range {
  width: 100%;
  accent-color: #ff5000;
  margin-bottom: 10px;
  -webkit-appearance: none;
  appearance: none;
  background: #ddd;
  height: 6px;
  border-radius: 3px;
  outline: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff5000;
  cursor: pointer;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
}

.btn-reset-filters {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #ff5000;
  color: #ff5000;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.btn-reset-filters:hover {
  background: #ff5000;
  color: white;
}

.pc-shop-main {
  flex-grow: 1;
}

.shop-header-top {
  position: relative;
  margin-bottom: 20px;
}

.products-count {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.shop-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: white;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sort-by,
.view-and-page {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort-label {
  font-size: 14px;
  color: #666;
}

.custom-select select {
  padding: 8px 30px 8px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 10px center;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

.view-toggles {
  display: flex;
  gap: 5px;
}

.view-toggles button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s;
}

.view-toggles button.active,
.view-toggles button:hover {
  background: #ffeade;
  color: #ff5000;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px auto;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: #fff0e6;
  color: #ff5000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.badge-text h4 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.badge-text p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.fnaf-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fnaf-header-flex .subtitle {
  color: #666;
  font-size: 15px;
  margin-top: 5px;
}

.btn-outline {
  border: 1px solid #ff5000;
  color: #ff5000;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #ff5000;
  color: white;
}

/* --- FNAF CAROUSEL REDESIGN --- */
.highlighted-collection {
  background: transparent !important;
}

.highlighted-collection h2.feaured {
  background: transparent !important;
  color: #000 !important;
  border-radius: 0 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.highlighted-collection h2.feaured i,
.highlighted-collection h2.feaured .fnaf-sparkle {
  color: #ff5000 !important;
  font-size: 20px !important;
  font-style: normal !important;
}

.highlighted-collection h2 {
  color: #000 !important;
}

/* FNAF carousel outer flex row: [arrow] [clip area] [arrow] */
.fnaf-carousel-outer {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
}

/* Clip container holds the scrollable product wrapper */
.highlighted-collection .products-container.fnaf-clip {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: hidden !important;
  flex: 1 !important;
  position: relative !important;
}

.highlighted-collection .products-wrapper {
  display: flex !important;
  gap: 18px !important;
  transition: transform 0.4s ease !important;
  padding: 5px 0 !important;
}

.highlighted-collection .product {
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  background: white !important;
  border-radius: 14px !important;
  border: 1px solid #f0f0f0 !important;
  padding: 12px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

.highlighted-collection .product:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
  border-color: #ff5000 !important;
}

.highlighted-collection .product h3 {
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

.highlighted-collection .product .price {
  color: #ff5000 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

.highlighted-collection .product .stars {
  color: #ffc107 !important;
  font-size: 12px !important;
  margin-bottom: 5px !important;
  display: flex !important;
  gap: 1px !important;
  align-items: center !important;
}

.highlighted-collection .product .stars i {
  color: #ffc107 !important;
}

.highlighted-collection .product .rating-count {
  color: #000 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  margin-left: 4px !important;
}

/* FNAF card image wrapper */
.fnaf-img-wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #f5f5f5;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fnaf-img-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

/* FNAF price + cart row */
.fnaf-price-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.fnaf-price-cart .cart-btn-round {
  width: 34px;
  height: 34px;
  background: #ff5000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 80, 0, 0.25);
  flex-shrink: 0;
}

/* FNAF carousel arrows */
.highlighted-collection .fnaf-carousel-outer .arrow {
  position: relative !important;
  z-index: 10 !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 50% !important;
  background: white !important;
  color: #666 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  border: 1px solid #e0e0e0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
  font-size: 22px !important;
  flex-shrink: 0 !important;
}

.highlighted-collection .fnaf-carousel-outer .arrow:hover {
  background: #ff5000 !important;
  color: white !important;
  border-color: #ff5000 !important;
  box-shadow: 0 4px 12px rgba(255, 80, 0, 0.3) !important;
  transform: scale(1.05) !important;
}

/* Carousel dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #ff5000;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: #ff8040;
}

.btn-primary-large {
  background: linear-gradient(135deg, #ff5000, #ff7300);
  color: white;
  border: none;
  padding: 15px 300px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(255, 80, 0, 0.4);
  transition: transform 0.3s;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 80, 0, 0.5);
}

/* Override js generated products */
.shop-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  transition: all 0.3s ease;
}

/* --- PREMIUM LIST VIEW LAYOUT --- */
.shop-content.list-view {
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.shop-content.list-view .product-box {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 14px 20px !important;
  height: auto !important;
  text-align: left !important;
}

.shop-content.list-view .product-box a {
  display: grid !important;
  grid-template-columns: 110px 1fr auto !important;
  grid-template-rows: auto auto !important;
  grid-template-areas:
    "img title price-cart"
    "img stars price-cart" !important;
  align-items: center !important;
  gap: 4px 24px !important;
  width: 100% !important;
  height: auto !important;
  text-decoration: none !important;
}

.shop-content.list-view .product-box .img-wrapper {
  grid-area: img !important;
  width: 110px !important;
  height: 110px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.shop-content.list-view .product-box .product-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  margin-bottom: 0 !important;
}

.shop-content.list-view .product-box .product-title {
  grid-area: title !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-bottom: 0 !important;
  align-self: end !important;
  line-height: 1.4 !important;
}

.shop-content.list-view .product-box .stars {
  grid-area: stars !important;
  align-self: start !important;
  margin-bottom: 0 !important;
  margin-top: 2px !important;
}

.shop-content.list-view .product-box .price-and-cart {
  grid-area: price-cart !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  margin-top: 0 !important;
}

.shop-content.list-view .product-box .price-wrapper {
  align-items: flex-end !important;
}

.shop-content.list-view .product-box .new-price,
.shop-content.list-view .product-box .price {
  font-size: 18px !important;
}

.shop-content.list-view .product-box .sale-ribbon {
  top: 10px !important;
  left: 10px !important;
}

/* Responsive List View tweaks */
@media (max-width: 576px) {
  .shop-content.list-view .product-box {
    padding: 10px 12px !important;
  }

  .shop-content.list-view .product-box a {
    grid-template-columns: 80px 1fr !important;
    grid-template-areas:
      "img title"
      "img stars"
      "img price-cart" !important;
    gap: 2px 12px !important;
  }

  .shop-content.list-view .product-box .img-wrapper {
    width: 80px !important;
    height: 80px !important;
  }

  .shop-content.list-view .product-box .product-title {
    font-size: 13px !important;
  }

  .shop-content.list-view .product-box .price-and-cart {
    justify-content: space-between !important;
    width: 100% !important;
    gap: 10px !important;
    margin-top: 4px !important;
  }

  .shop-content.list-view .product-box .price-wrapper {
    align-items: flex-start !important;
  }

  .shop-content.list-view .product-box .new-price,
  .shop-content.list-view .product-box .price {
    font-size: 15px !important;
  }
}

.product-box {
  padding: 12px;
  border-radius: 14px !important;
  border: 1px solid #f0f0f0 !important;
  background: white !important;
  transition: all 0.3s;
  position: relative;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
}

.product-box:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-5px) !important;
  border-color: #ff5000 !important;
}

@keyframes product-skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.product-box.product-skeleton {
  pointer-events: none;
  overflow: hidden;
}

.product-box.product-skeleton:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: #f0f0f0 !important;
}

.product-skeleton .skeleton-shimmer {
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    #ececec 0%,
    #f5f5f5 40%,
    #ececec 80%
  );
  background-size: 200% 100%;
  animation: product-skeleton-shimmer 1.2s ease-in-out infinite;
}

.product-skeleton .skeleton-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  border-radius: 10px;
}

.product-skeleton .skeleton-stars {
  width: 55%;
  height: 10px;
  margin-bottom: 8px;
}

.product-skeleton .skeleton-title {
  width: 88%;
  height: 11px;
  margin-bottom: 6px;
}

.product-skeleton .skeleton-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  gap: 8px;
}

.product-skeleton .skeleton-price {
  width: 42%;
  height: 14px;
}

.product-skeleton .skeleton-cart {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}

.sale-ribbon {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  background: #ff5000 !important;
  color: white !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  z-index: 10 !important;
  transform: none !important;
  animation: none !important;
  box-shadow: 0 2px 6px rgba(255, 80, 0, 0.25) !important;
  right: auto !important;
  line-height: 1.3 !important;
}

.product-img {
  border-radius: 10px !important;
  margin-bottom: 10px !important;
  width: 100% !important;
  background: transparent;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.stars {
  color: #ffc107 !important;
  font-size: 12px !important;
  margin-bottom: 5px !important;
  display: flex;
  gap: 1px;
  align-items: center;
}

.stars i {
  color: #ffc107 !important;
}

.product-title {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.price-and-cart {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.old-price {
  color: #999 !important;
  text-decoration: line-through !important;
  font-size: 12px !important;
  background: none !important;
  padding: 0 !important;
}

.new-price {
  color: #ff0000 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  background: none !important;
  padding: 0 !important;
}

.price {
  color: #ff5000 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

.cart-btn-round {
  width: 34px;
  height: 34px;
  background: #ff5000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 2px 8px rgba(255, 80, 0, 0.25);
  flex-shrink: 0;
}

.cart-btn-round:hover {
  background: #cc4000;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.pagination-container ul {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-container .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  color: #666;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 !important;
}

.pagination-container .page-link:hover,
.pagination-container .page-link.active {
  background: #ff5000 !important;
  color: white !important;
  border-color: #ff5000 !important;
}

.pagination-container .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}

.pagination-container .arrow:hover {
  background: #f5f5f5;
}

/* =========================================
   PREMIUM SEARCH SUGGESTIONS DROPDOWN
========================================= */
header {
  z-index: 1005 !important;
}

.containersearch {
  position: relative !important;
  z-index: 1002 !important;
}

.containersearch .search-container {
  position: relative;
}

.suggestions {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  right: auto !important;
  width: 100% !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  z-index: 1001 !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 0 !important;
  display: none;
}

.suggestions-header {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: #999 !important;
  padding: 14px 18px 8px !important;
  border-bottom: none !important;
  background: transparent !important;
}

.suggestion-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 18px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
  border: none !important;
  border-bottom: 1px solid #f5f5f5 !important;
  left: auto !important;
  right: auto !important;
  background: transparent !important;
}

.suggestion-item:last-of-type {
  border-bottom: 1px solid #f0f0f0 !important;
}

.suggestion-item:hover {
  background-color: #fafafa !important;
}

.suggestion-left {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.suggestion-thumb {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
  background: #f0f0f0 !important;
  flex-shrink: 0 !important;
  border: 1px solid #eee !important;
}

.suggestion-name {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #222 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.suggestion-price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ff5000 !important;
  flex-shrink: 0 !important;
  margin-left: 15px !important;
  white-space: nowrap !important;
}

/* "Search all" footer link */
.suggestion-search-all {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 18px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
  border-top: 1px solid #f0f0f0 !important;
  background: #fafafa !important;
}

.suggestion-search-all:hover {
  background: #f0f0f0 !important;
}

.suggestion-search-all-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.suggestion-search-all-left i {
  font-size: 18px !important;
  color: #888 !important;
}

.suggestion-search-all-left span {
  font-size: 14px !important;
  color: #555 !important;
  font-weight: 500 !important;
}

.suggestion-search-all>i {
  font-size: 20px !important;
  color: #aaa !important;
  transition: transform 0.2s ease !important;
}

.suggestion-search-all:hover>i {
  transform: translateX(3px) !important;
  color: #ff5000 !important;
}

/* Empty State */
.suggestions-empty-state {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 20px !important;
  text-align: center !important;
}

.empty-state-img {
  width: 120px !important;
  height: 120px !important;
  object-fit: contain !important;
  margin-bottom: 20px !important;
}

.empty-state-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin-bottom: 8px !important;
}

.empty-state-subtitle {
  font-size: 14px !important;
  color: #666 !important;
  margin-bottom: 25px !important;
  max-width: 80% !important;
  line-height: 1.4 !important;
}

.empty-state-btn {
  display: inline-block !important;
  padding: 10px 24px !important;
  background: white !important;
  color: #ff5000 !important;
  border: 1px solid #ff5000 !important;
  border-radius: 30px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.empty-state-btn:hover {
  background: #ff5000 !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(255, 80, 0, 0.3) !important;
}

/* Responsive tweaks */
@media (max-width: 1400px) {
  .shop-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-layout {
    flex-direction: column;
  }

  .pc-sidebar-filters {
    width: 100%;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .shop-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MODERN PREMIUM CART SIDEBAR REDESIGN
   ========================================================= */
.cart.active {
  width: 440px !important;
  max-width: 100vw !important;
  max-height: none !important;
  height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 24px !important;
  border-top-left-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08) !important;
  background: #ffffff !important;
  z-index: 10000 !important;
}

/* Header */
.premium-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.premium-cart-title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.premium-cart-close {
  font-size: 24px;
  cursor: pointer;
  color: #555555;
  transition: color 0.2s ease;
}

.premium-cart-close:hover {
  color: #ff5000;
}

/* Content Area */
.premium-cart-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

/* Scrollbar customization for cart items */
.premium-cart-content::-webkit-scrollbar {
  width: 4px;
}

.premium-cart-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.premium-cart-content::-webkit-scrollbar-thumb {
  background: #dddddd;
  border-radius: 4px;
}

.premium-cart-content::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}

/* General clean configuration for the suggested products block */
.cart .productsuggested {
  display: block !important;
  width: 100% !important;
  margin: 0 0 16px 0 !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.cart .productsuggested a {
  text-decoration: none !important;
}

/* STATE 0: Empty Cart -> Optimized vertical layout guaranteed to fit screen heights perfectly without scrolling */
.cart[data-item-count="0"] .suggested-section-header {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  margin-bottom: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.cart[data-item-count="0"] .suggested-premium-card {
  background: #ffffff !important;
  border: 1px solid #f0f0f0 !important;
  border-radius: 16px !important;
  padding: 10px 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  position: relative !important;
}

.cart[data-item-count="0"] .suggested-discount-badge {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  background: #ff5000 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 2px 6px !important;
  border-radius: 8px !important;
}

.cart[data-item-count="0"] .suggested-img-wrapper {
  display: block !important;
  margin-bottom: 6px !important;
}

.cart[data-item-count="0"] .product-imgsuggested {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  border-radius: 10px !important;
  display: block !important;
  margin: 0 auto !important;
}

.cart[data-item-count="0"] .suggested-info-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

.cart[data-item-count="0"] .product-title {
  color: #111111 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.cart[data-item-count="0"] .suggested-stars-row {
  font-size: 11px !important;
  margin-bottom: 4px !important;
}

.cart[data-item-count="0"] .stars-gold {
  color: #ffc107 !important;
}

.cart[data-item-count="0"] .stars-count {
  color: #888888 !important;
}

.cart[data-item-count="0"] .suggested-price-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin-bottom: 6px !important;
}

.cart[data-item-count="0"] .suggested-old-price {
  color: #aaaaaa !important;
  text-decoration: line-through !important;
  font-size: 11px !important;
}

.cart[data-item-count="0"] .price {
  color: #ff5000 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.cart[data-item-count="0"] .add-to-cart {
  background: #ff5000 !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 6px 16px !important;
  border-radius: 16px !important;
  border: none !important;
  font-size: 11px !important;
  box-shadow: 0 2px 6px rgba(255, 80, 0, 0.2) !important;
  cursor: pointer !important;
  width: auto !important;
  margin: 2px auto 0 auto !important;
}

/* STATE 1: Exactly 1 Item in Cart -> Polished Medium Horizontal Flex Card */
.cart[data-item-count="1"] .suggested-section-header {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.cart[data-item-count="1"] .suggested-premium-card {
  background: #ffffff !important;
  border: 1px solid #f0f0f0 !important;
  border-radius: 16px !important;
  padding: 10px 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  position: relative !important;
}

.cart[data-item-count="1"] .suggested-discount-badge {
  position: absolute !important;
  top: -6px !important;
  left: -6px !important;
  background: #ff5000 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 2px 6px !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 5px rgba(255, 80, 0, 0.3) !important;
  z-index: 2 !important;
}

.cart[data-item-count="1"] .suggested-img-wrapper {
  flex-shrink: 0 !important;
  background: #fcfcfc !important;
  border-radius: 10px !important;
  padding: 2px !important;
  border: 1px solid #f5f5f5 !important;
}

.cart[data-item-count="1"] .product-imgsuggested {
  width: 60px !important;
  height: 60px !important;
  object-fit: contain !important;
  display: block !important;
}

.cart[data-item-count="1"] .suggested-info-col {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.cart[data-item-count="1"] .product-title {
  color: #111111 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  margin: 0 0 2px 0 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-transform: uppercase !important;
}

.cart[data-item-count="1"] .suggested-stars-row {
  font-size: 11px !important;
  margin-bottom: 2px !important;
}

.cart[data-item-count="1"] .stars-gold {
  color: #ffc107 !important;
}

.cart[data-item-count="1"] .stars-count {
  color: #888888 !important;
}

.cart[data-item-count="1"] .suggested-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 6px !important;
}

.cart[data-item-count="1"] .suggested-old-price {
  color: #aaaaaa !important;
  text-decoration: line-through !important;
  font-size: 11px !important;
}

.cart[data-item-count="1"] .price {
  color: #ff5000 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.cart[data-item-count="1"] .add-to-cart {
  background: #ff5000 !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 6px 12px !important;
  border-radius: 12px !important;
  border: none !important;
  font-size: 11px !important;
  box-shadow: 0 2px 6px rgba(255, 80, 0, 0.2) !important;
  cursor: pointer !important;
  width: max-content !important;
}

/* STATE 2+ / 3+: Multiple Items in Cart -> Highly optimized layout matching the screenshot reference exactly! */
.cart:not([data-item-count="0"]):not([data-item-count="1"]) .suggested-section-header {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .suggested-premium-card {
  background: #ffffff !important;
  border: 1px solid #f0f0f0 !important;
  border-radius: 16px !important;
  padding: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  position: relative !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .suggested-discount-badge {
  position: absolute !important;
  top: -6px !important;
  left: -6px !important;
  background: #ff5000 !important;
  color: #ffffff !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  padding: 2px 5px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 4px rgba(255, 80, 0, 0.3) !important;
  z-index: 2 !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .suggested-img-wrapper {
  flex-shrink: 0 !important;
  background: #00000008 !important;
  border-radius: 10px !important;
  padding: 2px !important;
  border: 1px solid #f5f5f5 !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .product-imgsuggested {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
  display: block !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .suggested-info-col {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .product-title {
  color: #111111 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  margin: 0 0 2px 0 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-transform: uppercase !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .suggested-stars-row {
  font-size: 10px !important;
  margin-bottom: 2px !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .stars-gold {
  color: #ffc107 !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .stars-count {
  color: #888888 !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .suggested-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 6px !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .suggested-old-price {
  color: #aaaaaa !important;
  text-decoration: line-through !important;
  font-size: 10px !important;
}

.cart:not([data-item-count="0"]):not([data-item-count="1"]) .price {
  color: #ff5000 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

/* Button spans the full width of the right column exactly as seen in reference screenshot */
.cart:not([data-item-count="0"]):not([data-item-count="1"]) .add-to-cart {
  background: #ff5000 !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 5px 0 !important;
  width: 100% !important;
  border-radius: 10px !important;
  border: none !important;
  font-size: 10px !important;
  box-shadow: 0 2px 5px rgba(255, 80, 0, 0.2) !important;
  cursor: pointer !important;
  text-align: center !important;
  display: block !important;
}

.cart .suggested-premium-card .add-to-cart:hover {
  background: #ff3800 !important;
  transform: scale(1.02) !important;
}

/* Configure the items container to comfortably fit up to 3 items, scrolling internally if 4 or more */
.cart .premium-cart-content {
  flex: none !important;
  max-height: 340px !important;
  overflow-y: auto !important;
  flex-shrink: 0 !important;
  padding-right: 4px !important;
  margin-bottom: 12px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Beautiful optimized compact placeholder inside the items container when the cart is empty */
.cart.is-empty .premium-cart-content {
  min-height: 55px !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px dashed #e5e5e5 !important;
  border-radius: 14px !important;
  background: #fafafa !important;
}

.cart.is-empty .premium-cart-content::after {
  content: "Coșul tău este momentan gol";
  color: #888888;
  font-size: 12px;
  font-weight: 600;
}

/* Item Box Override */
.cart .cart-box {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  border: 1px solid #f2f2f2 !important;
  border-radius: 16px !important;
  padding: 12px !important;
  margin: 0 0 12px 0 !important;
  position: relative !important;
  width: 100% !important;
  box-sizing: border-box !important;
  grid-template-columns: none !important;
}

/* Item Image Override */
.cart .cart-img {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  border: none !important;
  border-radius: 12px !important;
  background: #f8f9fa !important;
  padding: 6px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

/* Detail Box Override */
.cart .detail-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 6px !important;
  flex: 1 !important;
  min-width: 0 !important;
  grid-template-columns: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Title Override */
.cart .cart-product-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  white-space: normal !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  background: transparent !important;
  padding: 0 !important;
  text-align: left !important;
}

/* Price Override */
.cart .cart-price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

/* Custom Quantity Capsule */
.cart .premium-qty-capsule {
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid #eaeaea !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  height: 30px !important;
  margin-top: 2px !important;
  padding: 0 !important;
}

.cart .premium-qty-minus,
.cart .premium-qty-plus {
  width: 28px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #555555 !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  padding: 0 !important;
  margin: 0 !important;
}

.cart .premium-qty-minus:hover,
.cart .premium-qty-plus:hover {
  background: #f5f5f5 !important;
  color: #ff5000 !important;
}

/* Numeric input override inside custom controls */
.cart .premium-qty-input {
  width: 32px !important;
  height: 100% !important;
  border: none !important;
  border-left: 1px solid #f0f0f0 !important;
  border-right: 1px solid #f0f0f0 !important;
  border-radius: 0 !important;
  text-align: center !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #111111 !important;
  padding: 0 !important;
  background: transparent !important;
  pointer-events: none !important;
  margin: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Hide webkit spinners */
.cart .premium-qty-input::-webkit-outer-spin-button,
.cart .premium-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Trash Icon Override */
.cart .cart-remove {
  position: static !important;
  font-size: 18px !important;
  color: #ff3b30 !important;
  cursor: pointer !important;
  padding: 8px !important;
  margin: 0 0 0 auto !important;
  flex-shrink: 0 !important;
  background: transparent !important;
  border: none !important;
  transition: transform 0.2s, opacity 0.2s !important;
  opacity: 0.8 !important;
}

.cart .cart-remove:hover {
  opacity: 1 !important;
  transform: scale(1.1) !important;
}

/* Footer Summary Section */
.premium-cart-footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Coupon Bar */
.premium-coupon-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  border: 1px solid #f1f3f5;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.premium-coupon-bar:hover {
  background: #f1f3f5;
}

.premium-coupon-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #495057;
}

.premium-coupon-left i {
  font-size: 16px;
  color: #888888;
}

/* Summary Rows Container */
.premium-summary-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.premium-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #495057;
}

.premium-summary-label {
  color: #495057;
}

.premium-subtotal-val {
  font-weight: 500;
  color: #111111;
}

.premium-delivery-val {
  font-weight: 600;
}

.premium-summary-divider {
  border: none;
  border-top: 1px dashed #e9ecef;
  margin: 4px 0;
}

.premium-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
}

.premium-total-val {
  font-size: 18px !important;
  color: #ff5000 !important;
  font-weight: 800 !important;
  margin-left: 0 !important;
}

/* Buttons */
.premium-btn-checkout {
  width: 100% !important;
  background: #ff5000 !important;
  color: white !important;
  border: none !important;
  padding: 15px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  box-shadow: 0 4px 15px rgba(255, 80, 0, 0.25) !important;
}

.premium-btn-checkout:hover {
  background: #ff3800 !important;
  box-shadow: 0 6px 20px rgba(255, 80, 0, 0.35) !important;
  transform: translateY(-1px) !important;
}

.premium-btn-continue {
  width: 100%;
  background: white;
  color: #333333;
  border: 1px solid #e5e5e5;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.premium-btn-continue:hover {
  background: #fcfcfc;
  border-color: #dddddd;
  color: #111111;
}

/* Trust Badges */
.premium-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
  text-align: center;
}

.premium-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: #555555;
  font-size: 16px;
}

.premium-trust-badge span {
  font-size: 10px;
  color: #777777;
  line-height: 1.2;
}

/* Footer Security Tag */
.premium-protection-footer {
  font-size: 11px;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}

/* ==========================================================================
   PREMIUM PAGINATION COMPONENT (Matches Reference Design Exactly)
   ========================================================================== */
.page-navigation {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 35px !important;
  margin-bottom: 45px !important;
  border: none !important;
  padding: 0 !important;
}

.premium-pagination-card {
  background: #ffffff !important;
  border: 1px solid #f0f0f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 14px !important;
  padding: 6px 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.premium-pagination-card .page-arrow {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #111111 !important;
  font-size: 18px !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.premium-pagination-card .page-arrow:hover {
  background: #f8f8f8 !important;
  color: #ff5000 !important;
}

.premium-pagination-card .premium-page-numbers {
  list-style: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.premium-pagination-card .premium-page-numbers li {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: none !important;
}

.premium-pagination-card .premium-page-numbers .page-link {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  text-decoration: none !important;
  background: #ffffff !important;
  border: 1px solid #eaeaea !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.premium-pagination-card .premium-page-numbers .page-link:hover {
  border-color: #ff5000 !important;
  color: #ff5000 !important;
  background: #fff9f5 !important;
}

.premium-pagination-card .premium-page-numbers .page-link.active {
  background: #ff5000 !important;
  color: #ffffff !important;
  border-color: #ff5000 !important;
  box-shadow: 0 3px 10px rgba(255, 80, 0, 0.25) !important;
}

.premium-pagination-card .premium-page-numbers .dots {
  width: 24px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #888888 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
/* Mobile-only components (hidden on desktop) */
.banner-text-mobile,
.banner-close,
.mobile-filter-btn,
.mobile-bottom-nav,
.shop-header-flex,
.header-cart-badge {
  display: none;
}

.banner-text-desktop {
  display: block;
}

.header-cart-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.pn-header-bottom {
  margin-top: 90px;
}

#filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
}

.mobile-filter-btn {
  background: #fff;
  color: #111;
  border: 1px solid #eee;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.mobile-filter-btn i {
  font-size: 18px;
  color: #ff5000;
}

/* =========================================================
   MOBILE REDESIGN (Produsele-Noastre — telefon)
   ========================================================= */
@media (max-width: 768px) {
  html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
  }

  .container,
  .shop-section.container,
  .collections-carousel-outer.container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: max(12px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(12px, env(safe-area-inset-right, 0px)) !important;
  }

  /* Hide desktop-only elements */
  .pc-sidebar-filters:not(.mobile-open),
  .trust-badges,
  .banner-text-desktop,
  .shop-header-top,
  .highlighted-collection.container,
  .popup-container,
  .highlighted-collection1 .text-center.mt-4,
  .hidethis-mobile {
    display: none !important;
  }

  .banner-text-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: center;
    font-size: clamp(10px, 2.8vw, 12px);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 0 !important;
    animation: none !important;
    transform: none !important;
  }

  .banner-gift-icon {
    font-size: 16px;
    flex-shrink: 0;
  }

  .banner-close {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 8px;
    flex-shrink: 0;
  }

  .banner.banner-hidden {
    display: none !important;
  }

  .banner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px !important;
    background: #ff5000 !important;
    min-height: 0 !important;
  }

  /* 1. Header fixes — navbar compact */
  .nav-wrapper {
    padding: 4px 10px !important;
    background: #fff !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05) !important;
  }

  .nav.container,
  header .nav {
    justify-content: space-between !important;
    position: relative;
    padding: 2px 4px !important;
    min-height: 0 !important;
    gap: 0 !important;
  }

  .nav.container > div:first-child {
    flex: 1;
    justify-content: flex-start;
    padding-right: 0 !important;
  }

  #openButton {
    padding: 4px 6px !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  #account-icon,
  #cart-icon {
    font-size: 1.5rem !important;
    margin-right: 0 !important;
  }
  .nav .logo1 {
    position: relative;
    left: 0;
    transform: none;
    padding: 0 !important;
    margin-left: 8px;
  }
  .comenzile_mele {
    display: none !important;
  }
  .left-items {
    display: none !important;
  }
  .right-items {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 1;
    justify-content: flex-end;
  }
  .nav .logo1 img {
    height: 24px !important;
  }

  .header-cart-badge {
    display: flex !important;
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #e53935;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
  }

  .header-cart-badge:empty,
  .header-cart-badge[data-count="0"] {
    display: none !important;
  }

  .pn-header-bottom {
    margin-top: 78px !important;
  }
  body.promo-banner-hidden .pn-header-bottom {
    margin-top: 46px !important;
  }

  /* Header bottom: fundal alb, search sus */
  .header-bottom-bg {
    background: #fff !important;
    padding-top: 0.35rem !important;
    padding-bottom: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: -30px !important;
  }
  .header-bottom-bg::before {
    display: none !important;
  }
  .containersearch.container {
    order: 1;
    padding: 0 12px 6px !important;
    margin: 0 !important;
  }
  .pills-container {
    order: 2;
  }
  .containersearch .search-container {
    background: #f5f5f5 !important;
    border-radius: 999px !important;
    padding: 4px 6px 4px 14px !important;
    box-shadow: none !important;
    border: 1px solid #eee !important;
    margin-top:15px;
  }
  .search-icon-left {
    color: #999 !important;
    font-size: 20px !important;
  }
  .search-input {
    color: #111 !important;
    font-size: 14px !important;
  }
  .search-input::placeholder {
    color: #999 !important;
  }
  .search-btn-right {
    width: 36px !important;
    height: 36px !important;
  }

  .search-input {
    padding: 6px 4px !important;
  }

  /* 2. Top Category Circles */
  .pills-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 0 12px 8px !important;
    margin-top: 4px !important;
    scrollbar-width: none;
  }
  .pills-container::-webkit-scrollbar {
    display: none;
  }
  .category-pill {
    flex-direction: column !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    padding: 0 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-align: center !important;
    min-width: 70px !important;
  }
  .category-pill:hover {
    background: transparent !important;
    color: #000 !important;
    transform: none !important;
  }
  .category-pill img {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    border: 2px solid #ff5000 !important;
    margin-bottom: 3px !important;
    object-fit: cover !important;
    padding: 2px;
    background: white;
  }
  .vezi-toate-icon {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    border: 1px solid #ddd !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 5px !important;
    font-size: 24px !important;
    color: #000 !important;
    background: white;
  }
  .category-pill-see-all {
    min-width: 72px !important;
  }

  /* 3. Colecții — carusel swipe (toate slide-urile) */
  .collections-carousel-outer {
    margin: 6px 0 2px !important;
    padding-left: max(12px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(12px, env(safe-area-inset-right, 0px)) !important;
  }

  .collections-carousel-outer .collections-grid,
  .collections-grid.collections-carousel-track {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .collections-carousel-viewport {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 20px;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 12px;
  }

  .collections-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .collections-grid.collections-carousel-track {
    display: contents !important;
  }

  .collections-carousel-viewport > .collection-card,
  .collections-carousel-track .collection-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: clamp(120px, 36vw, 155px) !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    position: relative !important;
    outline: none !important;
    margin: 0 !important;
  }

  .collection-card::after {
    display: none !important;
    content: none !important;
  }

  .collection-card .col-subtitle {
    font-size: clamp(9px, 2.5vw, 11px) !important;
    letter-spacing: 1px !important;
    opacity: 0.95;
  }

  .collection-card .col-title {
    font-size: clamp(22px, 7vw, 32px) !important;
    margin-bottom: 8px !important;
    line-height: 1.1 !important;
  }

  .collection-card .col-btn {
    font-size: clamp(11px, 3vw, 12px) !important;
    font-weight: 700 !important;
    padding: 7px 14px !important;
  }

  .collections-carousel-dots {
    display: flex !important;
    justify-content: center;
    gap: 5px;
    margin-top: 6px;
    padding-bottom: 0;
  }

  .collections-carousel-dots .carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    background: #ddd;
  }

  .collections-carousel-dots .carousel-dot.active {
    background: #ff5000;
    width: 18px;
    border-radius: 4px;
  }

  /* 4. PRODUSE NOI Section */
  .highlighted-collection1,
  .pn-produse-noi.highlighted-collection1,
  .highlighted-collection1.pn-produse-noi {
    padding-bottom: 0.25rem !important;
    margin-bottom: 0.25rem !important;
    overflow: visible !important;
  }

  .section-heading-new {
    font-size: clamp(14px, 4vw, 16px) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 4px !important;
  }
  .highlighted-collection1 .title-underline {
    width: 28px !important;
    margin: 0 auto 8px !important;
    height: 2px !important;
  }

  .products-container1 {
    padding: 4px 0 !important;
    margin: 0 !important;
  }
  .pn-products-scroll.products-container1 {
    position: relative !important;
    padding: 0 max(12px, env(safe-area-inset-right, 0px)) 0 max(12px, env(safe-area-inset-left, 0px)) !important;
    justify-content: flex-start !important;
    overflow: visible !important;
  }
  .products-container1 .left-arrow {
    display: none !important;
  }
  .products-container1 .right-arrow,
  #next-arrow1 {
    display: none !important;
  }
  .products-clip1 {
    overflow-x: auto !important;
    margin: 0 !important;
    padding-bottom: 6px !important;
    padding-right: 0 !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .products-clip1::-webkit-scrollbar {
    display: none;
  }
  .products-wrapper1 {
    display: flex !important;
    gap: 12px !important;
    padding-left: 0 !important;
    transform: none !important;
  }
  .product1 {
    min-width: calc((100vw - 48px) / 3) !important;
    flex: 0 0 calc((100vw - 48px) / 3) !important;
    padding: 8px !important;
    border-radius: 12px !important;
    scroll-snap-align: start;
    box-sizing: border-box;
  }
  .product1 img {
    width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
  }
  .product1 h3 {
    font-size: clamp(10px, 2.8vw, 11px) !important;
    line-height: 1.25 !important;
  }
  .price1 {
    font-size: clamp(12px, 3.2vw, 13px) !important;
  }

  /* 5. CUMPĂRĂ PRODUSE Header & Filters */
  .shop-section {
    margin-top: 0 !important;
    padding: 0 !important;
  }

  .shop-layout {
    flex-direction: column !important;
    margin-top: 0 !important;
    gap: 0 !important;
  }

  .pc-sidebar-filters.mobile-open {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 88% !important;
    max-width: 320px !important;
    height: 100vh !important;
    z-index: 10000 !important;
    overflow-y: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  .shop-header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 12px !important;
    margin-bottom: 6px !important;
  }
  .shop-header-flex .section-heading-new {
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }
  .vezi-toate-link {
    color: #ff5000 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }
  .shop-controls-bar {
    padding: 0 12px !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  .mobile-filter-btn {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    white-space: nowrap;
  }
  .sort-by {
    flex: 1 !important;
    gap: 0 !important;
    min-width: 0 !important;
  }
  .sort-label {
    display: none !important;
  }
  .custom-select {
    width: 100% !important;
  }
  .sort-by .custom-select select {
    width: 100% !important;
    background-color: white !important;
    border-radius: 8px !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    padding: 8px 28px 8px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
  }
  .view-and-page {
    display: flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
  }
  .view-and-page .custom-select {
    display: none !important;
  }
  .view-toggles {
    display: flex !important;
    background: white !important;
    border-radius: 8px !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    padding: 2px !important;
  }
  .view-toggles button.active {
    color: #ff5000 !important;
    background: #fff5f0 !important;
    border-radius: 6px !important;
  }

  #scrollTopBtn {
    bottom: 62px !important;
  }

  /* 6. Product Grid (Mobile) */
  .shop-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 0 12px !important;
  }
  .product-box {
    padding: 8px !important;
    border-radius: 12px !important;
    position: relative !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04) !important;
  }

  .page-navigation {
    margin-top: 8px !important;
    margin-bottom: 4px !important;
  }
  .product-box .sale-ribbon {
    top: 10px !important;
    left: 10px !important;
    background: #ff5000 !important;
    font-size: 10px !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
  }
  .product-box .fav-btn-round {
    width: 28px !important;
    height: 28px !important;
    top: 10px !important;
    right: 10px !important;
  }
  .product-box .fav-btn-round i {
    font-size: 16px !important;
  }
  .product-box .img-wrapper {
    margin-bottom: 10px !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
  }
  .product-box .stars {
    font-size: 10px !important;
    margin-bottom: 4px !important;
    color: #ff5000 !important;
  }
  .product-box .stars .bx-star,
  .product-box .stars .bxs-star,
  .product-box .stars .bxs-star-half {
    color: #ff5000 !important;
  }
  .product-box .rating-count {
    font-size: 10px !important;
    font-weight: 700 !important;
  }
  .product-box .product-title {
    font-size: 11px !important;
    margin-bottom: 5px !important;
  }
  .product-box .price-and-cart {
    align-items: flex-end !important;
  }
  .product-box .old-price {
    font-size: 10px !important;
    color: #999 !important;
    margin-bottom: 2px !important;
  }
  .product-box .new-price,
  .product-box .price {
    font-size: 14px !important;
    color: #ff5000 !important;
  }
  .product-box .cart-btn-round {
    width: 28px !important;
    height: 28px !important;
    font-size: 16px !important;
    border-radius: 6px !important;
  }

  /* 7. Bottom Navigation Bar */
  body {
    padding-bottom: calc(54px + env(safe-area-inset-bottom, 0px)) !important;
    background: #fff !important;
  }
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 54px;
    min-height: 54px;
    background: white;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.06);
    z-index: 9990;
    padding: 4px 0 env(safe-area-inset-bottom, 0px);
    box-sizing: content-box;
  }
  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 9px;
    font-weight: 600;
    width: 25%;
    gap: 2px;
    padding: 0;
  }
  .nav-item i {
    font-size: 20px;
  }
  .nav-item.active {
    color: #ff5000;
  }
  .nav-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff5000;
    color: white;
    font-size: 9px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
  }
  .nav-badge[data-count]:not([data-count="0"]) {
    display: flex;
  }

  .category-pill {
    white-space: normal !important;
    line-height: 1.15 !important;
    max-width: 78px;
  }

  .shop-controls-bar {
    flex-wrap: wrap !important;
    row-gap: 8px !important;
  }

  .mobile-filter-btn {
    font-size: clamp(11px, 3vw, 13px) !important;
    padding: 8px 10px !important;
  }

  .shop-content {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-navigation {
    padding: 0 12px 12px !important;
  }

  .page-navigation:empty {
    display: none !important;
  }

  .page-navigation.has-mobile-pagination {
    display: flex !important;
    justify-content: center !important;
    padding: 8px 12px 20px !important;
    margin-top: 4px !important;
    margin-bottom: 8px !important;
  }

  .page-navigation.has-mobile-pagination .premium-pagination-card {
    display: none !important;
  }

  .page-navigation .mobile-bottom-pagination {
    width: 100%;
    max-width: 100%;
    padding: 16px 8px 8px;
    margin: 0;
  }

  .mobile-load-more-sentinel {
    grid-column: 1 / -1;
    height: 1px;
    width: 100%;
    pointer-events: none;
  }

  .product-box.product-skeleton {
    padding: 8px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
  }

  .product-skeleton .skeleton-img {
    margin-bottom: 10px !important;
  }

  .product-skeleton .skeleton-stars {
    height: 9px !important;
    margin-bottom: 6px !important;
  }

  .product-skeleton .skeleton-title {
    height: 10px !important;
    margin-bottom: 5px !important;
  }

  .product-skeleton .skeleton-cart {
    width: 28px !important;
    height: 28px !important;
  }

  /* Paginare inline la ~50 produse (dots + săgeți ca FNAF / desktop) */
  .mobile-inline-pagination {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 8px 22px;
    margin: 4px 0 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-inline-pagination-label {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }

  .mobile-inline-pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .mobile-page-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #ddd;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
  }

  .mobile-page-dot.active {
    background: #ff5000;
    width: 22px;
    border-radius: 4px;
  }

  .mobile-page-dot-gap {
    width: 4px;
    height: 8px;
    flex-shrink: 0;
  }

  .mobile-inline-pagination-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    width: 100%;
  }

  .mobile-page-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: #ff5000;
    transition: all 0.2s ease;
    padding: 0;
  }

  .mobile-page-arrow:active:not(:disabled) {
    transform: scale(0.96);
  }

  .mobile-page-prev:not(:disabled) {
    color: #aaa;
  }

  .mobile-page-next:not(:disabled) {
    color: #ff5000;
  }

  .mobile-page-arrow:disabled,
  .mobile-page-arrow.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    color: #ccc;
  }
}

@media (min-width: 769px) {
  .page-navigation .mobile-inline-pagination,
  .page-navigation.has-mobile-pagination .mobile-bottom-pagination {
    display: none !important;
  }
}

/* =========================================================
   iPAD / TABLET RESPONSIVE OVERRIDES
   Covers iPad Mini (768px), iPad Air (820px), iPad Pro 11" (834px)
   in both portrait and landscape orientations.
   ========================================================= */

/* ---------------------------------------------------------
   iPAD PORTRAIT — 768px to 834px wide
   Override the phone layout that kicks in at max-width:768px
   to show a proper tablet experience.
   --------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 834px) {
  /* Show footer on iPad (phone layout hides it) */
  footer.site-footer,
  #site-footer {
    display: block !important;
    margin-top: 2rem !important;
  }

  /* Footer grid — 2 columns on iPad portrait */
  .site-footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 32px !important;
  }

  .site-footer-trust {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .site-footer-col-toggle { display: none !important; }
  .site-footer-col-panel { display: block !important; }

  /* Show trust badges */
  .trust-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin: 30px auto !important;
    padding: 24px !important;
  }

  /* Show FNAF collection on iPad */
  .highlighted-collection.container {
    display: block !important;
  }

  /* Show the popup container */
  .popup-container {
    display: block !important;
  }

  /* Show shop header top */
  .shop-header-top {
    display: block !important;
  }

  /* Show the "Produse Noi" CTA button */
  .highlighted-collection1 .text-center.mt-4 {
    display: block !important;
  }

  /* Hide mobile bottom nav on iPad */
  .mobile-bottom-nav {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }

  /* Header bottom area */
  .header-bottom-bg {
    background: #fff !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: -30px !important;
    box-shadow: none !important;
  }

  .header-bottom-bg::before {
    display: none !important;
  }

  .pn-header-bottom {
    margin-top: 78px !important;
  }

  body.promo-banner-hidden .pn-header-bottom {
    margin-top: 46px !important;
  }

  /* Search bar */
  .containersearch .search-container {
    max-width: 600px !important;
    margin: 0 auto !important;
    background: #f5f5f5 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    border: 1px solid #eee !important;
    padding: 4px 6px 4px 14px !important;
    margin-top: 15px !important;
  }

  .containersearch.container {
    order: 1 !important;
    padding: 0 20px 6px !important;
    margin: 0 !important;
  }

  .pills-container {
    order: 2 !important;
  }

  /* Category pills */
  .pills-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: center !important;
    gap: 18px !important;
    padding: 0 20px 10px !important;
    scrollbar-width: none !important;
  }

  .pills-container::-webkit-scrollbar { display: none; }

  .category-pill {
    flex-direction: column !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    padding: 0 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-align: center !important;
    min-width: 80px !important;
    white-space: normal !important;
  }

  .category-pill:hover {
    background: transparent !important;
    color: #000 !important;
    transform: none !important;
  }

  .category-pill img {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    border: 2px solid #ff5000 !important;
    margin-bottom: 4px !important;
    object-fit: cover !important;
    padding: 2px;
    background: white;
  }

  .vezi-toate-icon {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    border: 1px solid #ddd !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 5px !important;
    font-size: 28px !important;
    color: #000 !important;
    background: white;
  }

  /* Collections carousel — 2 cards side by side */
  .collections-carousel-viewport {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 20px;
    gap: 16px;
  }

  .collections-carousel-viewport::-webkit-scrollbar { display: none; }

  .collections-grid.collections-carousel-track {
    display: contents !important;
  }

  .collections-carousel-viewport > .collection-card,
  .collections-carousel-track .collection-card {
    flex: 0 0 calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    scroll-snap-align: start;
    height: 180px !important;
    border-radius: 20px !important;
    margin: 0 !important;
  }

  .collections-carousel-dots {
    display: flex !important;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
  }

  .collections-carousel-outer {
    margin: 8px 0 4px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Produse Noi section */
  .products-container1 {
    padding: 4px 0 !important;
    margin: 0 !important;
  }

  .pn-products-scroll.products-container1 {
    padding: 0 20px !important;
  }

  .products-container1 .left-arrow,
  .products-container1 .right-arrow {
    display: flex !important;
  }

  .product1 {
    min-width: calc(25% - 18px) !important;
    flex: 0 0 calc(25% - 18px) !important;
    padding: 10px !important;
  }

  .product1 img {
    max-height: 120px;
  }

  .product1 h3 {
    font-size: 12px !important;
  }

  /* Shop section layout */
  .shop-section {
    margin-top: 0 !important;
    padding: 0 !important;
  }

  .shop-layout {
    flex-direction: column !important;
    margin-top: 16px !important;
    gap: 0 !important;
  }

  /* Hide sidebar, show filter button */
  .pc-sidebar-filters:not(.mobile-open) {
    display: none !important;
  }

  .mobile-filter-btn {
    display: inline-flex !important;
  }

  .pc-sidebar-filters.mobile-open {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 340px !important;
    max-width: 50vw !important;
    height: 100vh !important;
    z-index: 10000 !important;
    overflow-y: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  .shop-header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px !important;
    margin-bottom: 10px !important;
  }

  .shop-header-flex .section-heading-new {
    font-size: 18px !important;
    margin: 0 !important;
  }

  .shop-controls-bar {
    padding: 0 20px !important;
    background: transparent !important;
    box-shadow: none !important;
    margin-bottom: 12px !important;
  }

  .sort-label {
    display: none !important;
  }

  /* Product grid — 3 columns on iPad portrait */
  .shop-content {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
    padding: 0 20px !important;
  }

  .product-box {
    padding: 10px !important;
    border-radius: 14px !important;
  }

  .product-box .product-title {
    font-size: 12px !important;
  }

  .product-box .new-price,
  .product-box .price {
    font-size: 15px !important;
  }

  .product-box .cart-btn-round {
    width: 32px !important;
    height: 32px !important;
  }

  /* Banner */
  .banner-text-desktop {
    display: none !important;
  }

  .banner-text-mobile {
    display: flex !important;
    font-size: 13px !important;
  }

  .banner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 5px 14px !important;
    background: #ff5000 !important;
  }

  .banner-close {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 0 8px;
    flex-shrink: 0;
  }

  .banner.banner-hidden {
    display: none !important;
  }

  /* Header nav */
  .nav-wrapper {
    padding: 4px 14px !important;
    background: #fff !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05) !important;
  }

  .left-items {
    display: none !important;
  }

  .comenzile_mele {
    display: none !important;
  }

  .right-items {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .nav .logo1 img {
    height: 28px !important;
  }

  .header-cart-badge {
    display: flex !important;
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #e53935;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
  }

  .header-cart-badge:empty,
  .header-cart-badge[data-count="0"] {
    display: none !important;
  }

  .page-navigation {
    padding: 0 20px 20px !important;
  }

  .btn-primary-large {
    padding: 15px 100px !important;
    font-size: 15px !important;
  }

  #scrollTopBtn {
    bottom: 30px !important;
    right: 24px !important;
  }

  .section-heading-new {
    font-size: 20px !important;
  }

  /* FNAF carousel — 3 products visible */
  .highlighted-collection .product {
    flex: 0 0 calc(33.333% - 14px) !important;
  }

  .fnaf-carousel-outer {
    gap: 10px !important;
  }
}

/* ---------------------------------------------------------
   iPAD LANDSCAPE & LARGER TABLETS — 835px to 1199px
   --------------------------------------------------------- */
@media (min-width: 835px) and (max-width: 1199px) {
  .shop-content {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .collection-card {
    height: 200px !important;
  }

  .shop-layout {
    gap: 24px !important;
  }

  .pc-sidebar-filters {
    width: 240px !important;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 24px !important;
  }

  .product1 {
    min-width: calc(16.666% - 18px) !important;
    flex: 0 0 calc(16.666% - 18px) !important;
  }

  .btn-primary-large {
    padding: 15px 120px !important;
  }

  .col-title {
    font-size: 32px !important;
  }

  .col-subtitle {
    font-size: 13px !important;
  }
}

/* ---------------------------------------------------------
   iPAD PRO 12.9" LANDSCAPE — 1200px to 1399px
   --------------------------------------------------------- */
@media (min-width: 1200px) and (max-width: 1399px) {
  .shop-content {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 18px !important;
  }

  .collections-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .btn-primary-large {
    padding: 15px 200px !important;
  }
}

/* ---------------------------------------------------------
   iPAD LANDSCAPE ORIENTATION — sidebar + 4-col grid
   --------------------------------------------------------- */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .shop-content {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .collections-grid,
  .collections-carousel-outer .collections-carousel-track,
  .collections-carousel-outer .collections-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .collections-carousel-viewport > .collection-card,
  .collections-carousel-track .collection-card {
    flex: unset !important;
    width: auto !important;
    max-width: none !important;
    height: 200px !important;
  }

  .collections-carousel-dots {
    display: none !important;
  }

  .highlighted-collection .product {
    flex: 0 0 calc(25% - 14px) !important;
  }

  .pc-sidebar-filters:not(.mobile-open) {
    display: block !important;
  }

  .mobile-filter-btn {
    display: none !important;
  }

  .shop-layout {
    flex-direction: row !important;
  }

  .pc-sidebar-filters {
    width: 260px !important;
  }
}

/* Telefoane foarte înguste (ex. iPhone SE) */
@media (max-width: 380px) {
  .category-pill img,
  .vezi-toate-icon {
    width: 56px !important;
    height: 56px !important;
  }

  .category-pill {
    min-width: 62px !important;
    font-size: 9px !important;
  }

  .collections-carousel-track .collection-card {
    height: 130px !important;
  }

  .product1 {
    min-width: 100px !important;
    flex: 0 0 100px !important;
  }

  .shop-controls-bar .sort-by {
    flex: 1 1 100% !important;
    order: 3;
  }

  .shop-controls-bar .mobile-filter-btn {
    flex: 1 1 auto !important;
  }

  .shop-controls-bar .view-and-page {
    flex: 0 0 auto !important;
  }
}
