/* ===== For Chrome, Edge, Safari ===== */
::-webkit-scrollbar {
  width: 10px;              /* Vertical scrollbar width */
  height: 10px;             /* Horizontal scrollbar height */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;      /* Track color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #2f6edb;      /* Scrollbar color */
  border-radius: 10px;
  border: 2px solid #f1f1f1; /* Optional spacing effect */
}

::-webkit-scrollbar-thumb:hover {
  background: #255bb5;      /* Darker shade on hover */
}


/* ===== For Firefox ===== */
* {
  scrollbar-width: thin;                      /* auto | thin | none */
  scrollbar-color: #2f6edb #f1f1f1;            /* thumb color | track color */
}
main{
  width: 100% !important;
}

.storefront-breadcrumb {
  margin-bottom: 0 !important;
}
section .unique-container {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  display: block !important;
}

/* Header */
.unique-shop-header {
  text-align: center;
  padding: 60px 0 30px;
  padding-top: 0px !important ;
  padding-bottom: 0px !important ;
}

.unique-shop-header h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
}

.unique-shop-header p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* filters row */
.unique-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.unique-filter-dropdown {
  position: relative;
  display: inline-block;
}

.unique-filter-box {
  background: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  min-width: 170px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
  user-select: none;
}

.unique-filter-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.unique-filter-box span {
  font-size: 14px;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.unique-filter-box i {
  font-size: 12px;
  color: #888;
  transition: transform 0.2s;
}

.unique-filter-dropdown.active .unique-filter-box i {
  transform: rotate(180deg);
}

.unique-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: max-content;
  max-height: 250px;
  overflow: auto;
  background: white;
  border-radius: 24px;
  padding: 16px 8px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  z-index: 100;
  border: 1px solid #f0f0f0;
}

.unique-filter-dropdown.active .unique-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.unique-dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
  color: #444;
  border-radius: 40px;
  transition: background 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.unique-dropdown-item:hover {
  background: #f0f4fe;
  color: #2f6edb;
}

.unique-dropdown-item i {
  width: 18px;
  font-size: 14px;
  color: #888;
}

.unique-dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 8px 12px;
}

.unique-price-range {
  padding: 6px 12px;
  color: #2f6edb;
  font-weight: 500;
}

.unique-color-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.unique-search-btn {
  background: #2f6edb;
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}

.unique-search-btn:hover {
  background: #1f55b5;
}

/* Banner */
.unique-banner {
  background: #f0f1f3;
  border-radius: 25px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 30px;
}

.unique-banner-content {
  max-width: 500px;
}

.unique-discount {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
}

.unique-banner-content h2 {
  font-size: 42px;
  margin: 15px 0 25px;
  font-weight: 600;
}

.unique-buy-btn {
  background: #2f6edb;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.unique-buy-btn:hover {
  background: #1f55b5;
}

.unique-banner-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  background: #e2e5e9;
}
.unique-section {
  padding: 0 1rem;
}

/* Main layout: side by side */
.unique-shop-layout-section {
  padding: 2rem 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unique-shop-layout {
  max-width: 1600px;
  width: 100%;
  display: flex;
  gap: 30px;
  position: relative;
}

.unique-product-area {
  flex: 2;
  min-width: 0;
}

/* top bar with search */
.unique-shop-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px 20px;
  background: white;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  margin-bottom: 25px;
  border: 1px solid #edf2f7;
}

.unique-left-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.unique-sorting,
.unique-right-controls select {
  padding: 8px 22px;
  border-radius: 40px;
  border: 1px solid #dde2ea;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.unique-view-icons i {
  margin-right: 10px;
  font-size: 18px;
  color: #4a5568;
  cursor: pointer;
  transition: color 0.2s;
}
.unique-view-icons i:hover {
  color: #2f6edb;
}

.unique-search-wrapper {
  flex: 1 1 280px;
  min-width: 200px;
  max-width: 400px;
}

.unique-search-box {
  display: flex;
  align-items: center;
  background: #f3f6fc;
  border-radius: 60px;
  padding: 6px 6px 6px 20px;
  border: 1px solid #e0e8f2;
  transition: 0.2s;
}
.unique-search-box:focus-within {
  background: #ffffff;
  border-color: #2f6fde;
  box-shadow: 0 0 0 3px rgba(47, 111, 222, 0.15);
}
.unique-search-box i {
  color: #6f8fc0;
  font-size: 1rem;
  margin-right: 8px;
}
.unique-search-box input {
  border: none;
  background: transparent;
  padding: 10px 0;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  box-shadow: none;
}
.unique-search-box input:focus {
  box-shadow: none;
  background: transparent !important;
}
.unique-search-box button {
  background: #2f6edb;
  border: none;
  color: white;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  margin-left: auto;
  white-space: nowrap;
  transition: 0.2s;
}
.unique-search-box button:hover {
  background: #14306b;
}

.unique-right-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  flex-wrap: wrap;
}

/* product grid – one card per row */
.unique-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.unique-product-card {
  background: #fff;
  border-radius: 28px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid #f0f0f0;
  transition: 0.2s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.unique-product-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  border-color: #dde7f0;
}

.unique-product-image img {
  width: 214px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.unique-product-info {
  flex: 1;
}

.unique-product-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e2b3c;
}

.unique-brand {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.unique-rating {
  color: #ffb800;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.unique-rating i {
  margin-right: 3px;
}

.unique-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f3a5f;
  margin-bottom: 18px;
}

.unique-btn-primary {
  background: #2f6edb;
  display: block;
  width: fit-content;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 8px 16px -6px rgba(30, 58, 138, 0.25);
  margin-right: 12px;
  margin-bottom: 0.5rem;
}

.unique-btn-primary:hover {
  background: #15306b;
}

.unique-btn-secondary {
  background: #f0f4fb;
  color: #2b3e5c;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.unique-btn-secondary i {
  margin-right: 6px;
}
.unique-btn-secondary:hover {
  background: #e2eaf5;
}

/* ===== TALL SIDEBAR (desktop) ===== */
.unique-tall-sidebar {
  position: sticky;
  top: 84px;
  width: 100%;
  max-width: 360px;
  background: white;
  border-radius: 30px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.unique-sidebar-block h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #162b3a;
  letter-spacing: -0.2px;
  border-bottom: 2px solid #eaeef5;
  padding-bottom: 12px;
}

.unique-category-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.unique-category-links a {
  text-decoration: none;
  color: #2f405b;
  font-weight: 450;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
  padding: 6px 0;
  border-bottom: 1px dashed #edf2f7;
}
.unique-category-links a i {
  width: 22px;
  color: #3c6ab3;
  font-size: 1rem;
}
.unique-category-links a:hover {
  color: #2f6edb;
  transform: translateX(5px);
  border-bottom-color: #aac3e0;
}

.unique-info-text p {
  color: #4a5b6f;
  line-height: 1.6;
  margin-bottom: 22px;
  font-size: 0.98rem;
}

.unique-tagline {
  background: #f1f6fd;
  padding: 18px 16px;
  border-radius: 22px;
  color: #1e3a5f;
  font-weight: 500;
  border-left: 4px solid #2f6fde;
}
.unique-tagline i {
  color: #2f6fde;
  margin-right: 8px;
}

/* ===== FLOATING SIDEBAR TOGGLE (for <992px) ===== */
.unique-sidebar-toggle-btn {
  display: none;
  position: fixed;
  bottom: 91px;
  right: 25px;
  background: #2f6edb;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 60px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  z-index: 200;
  border: 2px solid white;
  transition: 0.2s;
}
.unique-sidebar-toggle-btn:hover {
  background: #1f4ba0;
  transform: scale(1.05);
}

/* floating sidebar (mobile/tablet) */
.unique-floating-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: white;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 250;
  overflow-y: auto;
  padding: 30px 20px;
  transition: right 0.3s ease;
  border-radius: 30px 0 0 30px;
}
.unique-floating-sidebar.open {
  right: 0;
}

.unique-close-sidebar {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f0f0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border: none;
  color: #333;
}
.unique-close-sidebar:hover {
  background: #ddd;
}

/* overlay when floating sidebar open */
.unique-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 240;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.unique-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .unique-floating-sidebar {
    width: 100%;
    max-width: 350px !important;
  }
  .unique-tall-sidebar {
    display: none;
  }
  .unique-sidebar-toggle-btn {
    display: flex;
  }
  .unique-shop-layout {
    gap: 0;
  }
}
/* responsive breakpoints */
@media (max-width: 1100px) {
  .unique-shop-topbar {
    border-radius: 30px;
  }
  .unique-search-wrapper {
    order: 3;
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 667px) {
  .unique-product-card {
    flex-direction: column;
    text-align: center;
  }
  .unique-product-image img {
    width: 200px;
  }
  .unique-btn-primary {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .unique-sorting {
    width: 100%;
  }
  .unique-right-controls {
    flex-wrap: nowrap;
  }
  .unique-right-controls select {
    width: 100%;
  }
  .unique-shop-header h1 {
    font-size: 32px;
  }
  .unique-banner-content h2 {
    font-size: 30px;
  }
  .unique-filters {
    gap: 15px;
  }
  .unique-dropdown-menu {
    width: 200px;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
  }
  .unique-filter-dropdown.active .unique-dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }
  .unique-filter-box span {
    max-width: 90px;
  }
  .unique-shop-topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .unique-left-controls {
    justify-content: space-between;
  }
  .unique-right-controls {
    justify-content: flex-end;
  }
  .unique-search-wrapper {
    max-width: 100%;
  }
  .unique-search-box {
    padding-left: 15px;
  }
  .unique-search-box button {
    padding: 8px 18px;
  }
  .unique-product-card {
    padding: 20px 15px;
  }
  .unique-btn-primary,
  .unique-btn-secondary {
    width: 100%;
    margin-right: 0;
  }
  .unique-product-info h3 {
    font-size: 1.2rem;
  }
  .unique-floating-sidebar {
    width: 280px;
  }
}

.col-full {
  max-width: 100% !important;
  padding: 0 !important;
}
.unique-shop-layout-section select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 12px !important;

  padding-right: 40px; /* prevent text overlap */
}
