@charset "utf-8";
/* CSS Document */

:root {
  --ink: #1a1a1a;
  --paper: #ffffff;
  --bg: #f5f3ef;
  --bg-alt: #f0eeeb;
  --line: #e5e1d9;
  --text: #6b6a67;
  --font-body: 'Jost', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f5f3ef;
  --gray-bg: #f0eeeb;
  --gray-border: #e5e1d9;
  --gray-text: #6b6a67;
  --font-disp: 'Cormorant Garamond', serif;
}

  /* ── TITLE ── */
  .section-title {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 3rem;
    padding-top: 40px;
  }

  /* ── CAROUSEL CONTAINER ── */
  .carousel-section {
    position: relative;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 3.5rem;
  }

  /* Arrow buttons */
  .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--paper);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    z-index: 10;
    flex-shrink: 0;
    stroke: var(--ink);
  }

  .arrow-btn:hover {
    border-color: var(--ink);
    background: var(--bg);
  }

  .arrow-btn:hover svg { stroke: var(--ink); }
  .arrow-btn:disabled { opacity: 0.25; pointer-events: none; }
  .arrow-btn svg { stroke: var(--ink); transition: stroke 0.2s; }

  .arrow-btn.prev { left: 0; }
  .arrow-btn.next { right: 0; }

  /* Track */
  .carousel-overflow {
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  /* Category item */
  .cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    flex: 0 0 calc(100% / 9);
    min-width: 100px;
    padding: 0.25rem 0.5rem;
    text-align: center;
    user-select: none;
    text-decoration: none;
    color: inherit;
  }

  .cat-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    overflow: hidden;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, transform 0.25s;
    flex-shrink: 0;
  }

  .cat-item:hover .cat-circle {
    border-color: var(--ink);
    transform: scale(1.05);
  }

  .cat-item.active .cat-circle {
    border-color: var(--ink);
    border-width: 2px;
  }

  /* Image inside circle */
  .cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Placeholder silhouettes (for demo without real images) */
  .silhouette {
    width: 46px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  /* Label */
  .cat-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.4;
    text-align: center;
    transition: color 0.2s;
  }

  .cat-item:hover .cat-label,
  .cat-item.active .cat-label {
    color: var(--ink);
  }

  /* Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 2rem;
  }

  .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gray-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .dot.active {
    background: var(--black);
    transform: scale(1.3);
  }





/* ── TOOLBAR ── */
  .toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 1.5rem;
  }

  .breadcrumb {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: var(--text);
    letter-spacing: 0.04em;
  }

  .breadcrumb a {
    color: var(--text);
    text-decoration: none;
  }

  .breadcrumb span { color: var(--ink); }

  .toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .view-btns { display: flex; gap: 5px; }

  .view-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--gray-border);
    transition: color 0.2s;
    display: flex;
    align-items: center;
  }

  .view-btn.active { color: var(--black); }
  .view-btn:hover { color: var(--black); }

  .sep { width: 1px; height: 16px; background: var(--gray-border); }

  .toolbar-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: opacity 0.2s;
  }

  .toolbar-btn:hover { opacity: 0.6; }

  /* ── PRODUCT GRID ── */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

	  row-gap: 50px;
	  column-gap: 15px;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }

  /* ── PRODUCT CARD ── */
  .product-card {
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .product-img-wrap {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--gray-bg);
    overflow: hidden;
    margin-bottom: 0.75rem;
  }

  /* Placeholder — replace inner div with <img> in production */
  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
  }

  .img-placeholder svg {
    opacity: 0.25;
    width: 38%;
    height: auto;
  }

  .product-card:hover .img-placeholder,
  .product-card:hover img {
    transform: scale(1.03);
  }

  /* Wishlist */
  .wish-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
  }

  .product-card:hover .wish-btn { opacity: 1; }

  .wish-btn svg {
    stroke: var(--black);
    fill: none;
    transition: fill 0.2s;
  }

  .wish-btn:hover svg { fill: none;
    stroke: var(--ink); }

  /* Info */
  .product-info { padding: 0; }

  .product-name {
	  font-family: 'Poppins';
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 5px;
    line-height: 1.45;
  }

  .product-price {
	  font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }

  .color-swatches {
    display: flex;
    gap: 4px;
  }

  .swatch {
    width: 13px;
    height: 13px;
    border-radius: none;
    border: 1px solid rgba(0,0,0,0.15);
    cursor: pointer;
    transition: outline 0.15s;
  }

  .swatch:hover { outline: 1.5px solid var(--black); outline-offset: 1.5px; }
  .swatch.beige  { background: #d4c5b0; }
  .swatch.black  { background: #1a1a1a; }
  .swatch.brown  { background: #6b4c35; }

  /* ── PAGINATION ── */
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--gray-border);
    margin: 0 1.5rem;
  }

  .page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--gray-text);
    border-bottom: 1.5px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.04em;
  }

  .page-btn:hover { color: var(--black); }

  .page-btn.active {
    color: var(--black);
    font-weight: 500;
    border-bottom-color: var(--black);
  }

  .page-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-text);
    transition: color 0.2s;
  }

  .page-arrow:hover { color: var(--black); }

  /* ── SORT DROPDOWN ── */
  .sort-wrap { position: relative; }

  .sort-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    min-width: 190px;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }

  .sort-dropdown.open { display: block; }

  .sort-option {
    display: block;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.15s, color 0.15s;
  }

  .sort-option:hover { background: var(--bg); color: var(--ink); }
  .sort-option.active { color: var(--ink); font-weight: 500; }

  /* ── FILTER OVERLAY ── */
  .filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.25s;
  }

  .filter-overlay.open {
    display: block;
    opacity: 1;
  }

  .filter-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    max-width: 100vw;
    height: 100%;
    background: var(--paper);
    overflow-y: auto;
    padding: 2rem 1.5rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.06);
    z-index: 1001;
  }

  .filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .filter-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0;
  }

  .filter-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 0 4px;
    line-height: 1;
  }

  .filter-close:hover { color: var(--ink); }

  .filter-group {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .filter-group h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 0.8rem;
  }

  .filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text);
  }

  .filter-label input[type="radio"] { accent-color: var(--ink); }

  .filter-label:hover,
  .filter-label input:checked + span { color: var(--ink); }
  .filter-label input:checked + span { font-weight: 500; }

  .filter-range {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .filter-range input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--ink);
    background: var(--bg);
    border-radius: 0;
    outline: none;
  }

  .filter-range input[type="number"]:focus { border-color: var(--ink); }

  .filter-range span { color: var(--text); font-size: 13px; }

  .filter-apply {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--ink);
    color: var(--paper);
    border: none;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .filter-apply:hover { opacity: 0.85; }










/* ── BANNER ── */
  .banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Background image — replace src with real photo */
  .banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* Placeholder background (remove when using real image) */
  .banner-bg-placeholder {
    position: absolute;
    inset: 0;
    background: #c8c2b8;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Subtle dark overlay for text legibility */
  .banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 15, 0.28);
  }

  /* Content */
  .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 0 1rem;
  }

  .banner-tag {
    font-family: 'Poppins';
      font-size: 21px;
      font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
  }

  .banner-title {
    font-family: 'Sitka Text', Georgia, serif;
      font-size: 42px;
      font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    white-space: nowrap;
  }

  .banner-cta {
    margin-top: 0.4rem;
    display: inline-block;
    font-family: 'Poppins';
      font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--bg);
    border: none;
    padding: 0.85rem 2.4rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    text-decoration: none;
  }

  .banner-cta:hover {
    background: var(--ink);
    color: var(--bg);
  }

  /* Placeholder person silhouette */
  .person-placeholder {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22%;
    max-width: 260px;
    opacity: 0.18;
  }















  /* ── SECTION ── */
  .slid-carrus {
    padding: 3.5rem 0 4rem;
    background: #F2F1EF;
  }

  .slid-carrus {
    padding: 5.5rem 3.5rem 5.5rem;
    background: #f2f1ef;
  }

  /* Title */
  .slid-carrus__title {
    text-align: center;
    font-family: 'Sitka Text', Georgia, serif;
      font-size: 42px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 3.6rem;
  }

  /* Carousel wrapper */
  .slid-carrus__wrap {
    position: relative;
    padding: 0 4.5rem;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Arrow buttons */
  .slid-carrus__arrow {
    position: absolute;
    top: 41%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
  }

  .slid-carrus__arrow:hover {
    border-color: var(--line);
    background: var(--line);
  }

  .slid-carrus__arrow:hover svg { stroke: var(--bg); }
  .slid-carrus__arrow:disabled {
    opacity: 1;
    border-color: var(--line);
    background: var(--line);
    pointer-events: none;
  }
  .slid-carrus__arrow svg { stroke: var(--text); transition: stroke 0.2s; }
  .slid-carrus__arrow:disabled svg { stroke: var(--line); }
  .slid-carrus__arrow.prev { left: 0; }
  .slid-carrus__arrow.next { right: 0; }

  /* Overflow mask */
  .slid-carrus__overflow { overflow: hidden; }

  /* Track */
  .slid-carrus__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  /* Card */
  .slid-carrus__card {
    flex: 0 0 25%;
    padding: 0 1.6rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Image area */
  .slid-carrus__img-wrap {
    width: 100%;
    max-width: 290px;
    aspect-ratio: 1 / 1.12;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    background: transparent;
  }

  .slid-carrus__img-wrap img {
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
  }

  /* Placeholder SVG bag silhouettes */
  .slid-carrus__img-wrap svg {
    max-width: 75%;
    max-height: 75%;
    transition: transform 0.4s ease;
  }

  .slid-carrus__card:hover .slid-carrus__img-wrap img,
  .slid-carrus__card:hover .slid-carrus__img-wrap svg {
    transform: scale(1.04);
  }

  /* Product name */
  .slid-carrus__name {
    max-width: 290px;
    font-family: 'Poppins';
      font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.45rem;
    line-height: 1.4;
    text-align: center;
  }

  /* Price */
  .slid-carrus__price {
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.04em;
    text-align: center;
  }

  /* Dots */
  .slid-carrus__dots {
    display: none;
    justify-content: center;
    gap: 7px;
    margin-top: 2.5rem;
  }

  .slid-carrus__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gray-mid);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .slid-carrus__dot.active {
    background: var(--black);
    transform: scale(1.35);
  }

  @media (max-width: 900px) {
    .slid-carrus__wrap {
      padding: 0 3.4rem;
    }

    .slid-carrus__card {
      padding: 0 1rem;
    }
  }

  @media (max-width: 760px) {
    .slid-carrus {
      padding: 4rem 2rem 4.25rem;
    }

    .slid-carrus__title {
      margin-bottom: 2rem;
      font-size: 32px;
    }

    .slid-carrus__wrap {
      padding: 0 2.6rem;
    }

    .slid-carrus__arrow {
      width: 42px;
      height: 42px;
    }

    .slid-carrus__card {
      padding: 0 0.8rem;
    }
  }

  @media (max-width: 600px) {
    .slid-carrus {
      padding: 3.5rem 1rem 3.75rem;
    }

    .slid-carrus__title {
      font-size: 26px;
      letter-spacing: 0.08em;
    }

    .slid-carrus__wrap {
      padding: 0 1.8rem;
    }

    .slid-carrus__name {
      font-size: 13px;
      letter-spacing: 0.1em;
    }
  }











/* ── SECTION ── */
  .explore {
    background: var(--white);
  }

  /* Header */
  .explore__header {
    text-align: center;
    padding: 5rem 1rem 2.4rem;
  }

  .explore__tag {
    display: block;
    font-family: 'Poppins';
      font-size: 21px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.7rem;
  }

  .explore__title {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
	  padding-bottom: 4rem;
  }

  /* Grid — two panels side by side, no gap */
  .explore__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  /* Panel */
  .explore__panel {
    position: relative;
    aspect-ratio: 8 / 7;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
  }

  /* Background image — replace .explore__panel-bg div with <img> in production */
  .explore__panel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .explore__panel:hover .explore__panel-bg {
    transform: scale(1.04);
  }

  /* Placeholder BG (remove when using real images) */
  .explore__panel-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2rem;
  }

  /* Subtle gradient overlay for text */
  .explore__panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10, 9, 8, 0.38) 0%,
      rgba(10, 9, 8, 0.10) 40%,
      rgba(10, 9, 8, 0.04) 100%
    );
    pointer-events: none;
  }

  /* Label */
  .explore__panel-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-disp);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
    pointer-events: none;
    transition: letter-spacing 0.35s ease;
  }

  .explore__panel:hover .explore__panel-label {
    letter-spacing: 0.24em;
  }

  /* ── PLACEHOLDER SVGs (remove in production) ── */
  .ph-minibags {
    background: linear-gradient(160deg, #b8c4c8 0%, #8fa4a8 30%, #c4b8a8 60%, #d8d0c0 100%);
  }

  .ph-business {
    background: linear-gradient(160deg, #c4b8a8 0%, #a89880 30%, #8a7860 60%, #6a5840 100%);
  }

  /* Responsive */
  @media (max-width: 600px) {
    .explore__grid {
      grid-template-columns: 1fr;
    }

    .explore__panel {
      aspect-ratio: 4 / 3;
    }
}








