/** Shopify CDN: Minification failed

Line 119:2 All "@import" rules must come first
Line 1032:0 All "@import" rules must come first
Line 1491:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.site-footer-minimal {
    background: #ffffff;
    padding: 3rem 0 2rem;
    border-top: 1px solid #e5e5e5;
  }
  
  .footer-container-minimal {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Logo */
  .footer-minimal-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .footer-minimal-logo img {
    display: block;
    height: auto;
  }

  /* Social Icons */
  .footer-minimal-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #171717;
    transition: opacity 0.2s ease;
  }
  
  .social-icon:hover {
    opacity: 0.6;
  }
  
  .social-icon svg {
    display: block;
  }

  /* Navigation Links */
  .footer-minimal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .footer-minimal-link {
    font-size: 0.875rem;
    color: #171717;
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-weight: 400;
  }
  
  .footer-minimal-link:hover {
    opacity: 0.6;
  }

  /* Copyright */
  .footer-minimal-copyright {
    font-size: 0.813rem;
    color: #666666;
    text-align: center;
    padding-top: 1rem;
  }
  
  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .site-footer-minimal {
      padding: 2rem 0 1.5rem;
    }
    
    .footer-minimal-logo {
      margin-bottom: 1.5rem;
    }
    
    .footer-minimal-social {
      margin-bottom: 1.5rem;
      gap: 1.25rem;
    }
    
    .footer-minimal-nav {
      gap: 1.25rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
    }
    
    .footer-minimal-link {
      font-size: 0.813rem;
    }
  }
/* Import Neue Haas Display Font */
  @import url('https://db.onlinewebfonts.com/c/cddfddeff0f66d9f03e9df2585ea819e?family=NeueHaasDisplay-Roman');
  
  .font-neue {
    font-family: 'NeueHaasDisplay-Roman', 'NeueHaasDisplay-Roman_1', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  
  * { box-sizing: border-box; margin: 0; padding: 0; }
  
  /* Announcement Bar */
  .announcement-bar {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
    color: white;
    overflow: hidden;
    z-index: 50;
    transition: background-color 0.8s ease-in-out;
  }
  
  @media (min-width: 640px) {
    .announcement-bar { font-size: 0.875rem; }
  }
  
  .announcement-content {
    position: relative;
  }
  
  .announcement-text {
    display: inline-block;
    padding: 0 2rem;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
  }
  
  .announcement-text.fade-out {
    opacity: 0;
    transform: translateY(-10px);
  }
  
  .announcement-text.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .announcement-close {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }
  
  /* Hide number input spinners in cart */
  .qty-value[type=number] {
    -moz-appearance: textfield;
  }
  
  .qty-value[type=number]::-webkit-outer-spin-button,
  .qty-value[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  @media (min-width: 640px) {
    .announcement-close { right: 1rem; }
  }
  
  .announcement-close:hover { opacity: 0.7; }
  
  /* Header */
  .site-header {
    position: relative;
    border-bottom: 1px solid #e5e7eb;
    background: white;
    z-index: 40;
  }

  
  .header-container {
    padding: 0; 
  }
  
  @media (min-width: 640px) {
    .header-container { padding: 0; } 
  }
  
  @media (min-width: 1024px) {
    .header-container { padding: 0; } 
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .logo-image {
    height: 1.5rem;
    width: auto;
  }
  
  @media (min-width: 640px) {
    .logo-image { height: 2rem; }
  }
  
  .logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #171717;
  }
  
  .desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
  }
  
  @media (min-width: 1024px) {
    .desktop-nav { display: flex; }
  }
  
  .nav-item { position: relative; }
  
  .nav-button {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: #171717;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
  }
  
  .nav-button:hover { color: #6b7280; }
  
  .nav-button.active .chevron {
    transform: rotate(180deg);
  }
  
  .chevron {
    transition: transform 0.3s ease-out;
  }
  
  .nav-link {
    color: #171717;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: color 0.2s;
  }
  
  .nav-link:hover { color: #6b7280; }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .icon-button {
    background: none;
    border: none;
    color: #171717;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    position: relative;
  }
  
  .icon-button:hover { opacity: 0.7; }
  
  .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: black;
    color: white;
    font-size: 0.625rem;
    font-weight: bold;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    min-width: 1.25rem;
    text-align: center;
  }
  
  .mobile-menu-button {
    display: flex;
  }
  
  @media (min-width: 1024px) {
    .mobile-menu-button { display: none; }
  }
  
  /* Shop Dropdown */
  .shop-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
    z-index: 45;
  }
  
  .shop-dropdown.active {
    visibility: visible;
    opacity: 1;
  }
  
  .dropdown-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
  }
  
  .shop-dropdown.active .dropdown-overlay {
    pointer-events: auto;
  }
  
  .dropdown-content-wrapper {
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(-10px);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  
  @media (min-width: 1024px) {
    .dropdown-overlay {
      background: transparent;
    }
  }
  
  .shop-dropdown.active .dropdown-content-wrapper {
    transform: translateY(0);
    opacity: 1;
  }
  
  .shop-dropdown.closing .dropdown-content-wrapper {
    transform: translateY(-10px);
    opacity: 0;
  }
  
  .dropdown-inner {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 80rem;
    margin: 0 auto;
  }
  
  @media (max-width: 1023px) {
    .dropdown-inner {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }
  
  .dropdown-heading {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .categories-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .category-link {
    color: #171717;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
  }
  
  .category-link:hover { color: #6b7280; }
  
  .category-all {
    font-weight: bold;
    margin-top: 0.5rem;
  }
  
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  
  @media (max-width: 1279px) {
    .featured-grid { grid-template-columns: repeat(4, 1fr); }
  }
  
  @media (max-width: 767px) {
    .featured-grid { grid-template-columns: repeat(3, 1fr); }
  }
  
  .featured-product {
    text-decoration: none;
    display: block;
  }
  
  .featured-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f3f4f6;
    margin-bottom: 0.5rem;
    overflow: hidden;
  }
  
  .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
  }
  
  .featured-product:hover .featured-image img {
    transform: scale(1.05);
  }
  
  .featured-info {
    font-size: 0.75rem;
  }
  
  .featured-title {
    color: #171717;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
  }
  
  .featured-product:hover .featured-title {
    color: #6b7280;
  }
  
  .featured-price {
    color: #6b7280;
    margin-top: 0.25rem;
  }
  
  /* Cart & Mobile Overlays */
  .cart-drawer-overlay,
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s;
    z-index: 59;
  }
  
  .cart-drawer-overlay.active,
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Cart Drawer */
  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 24rem;
    max-width: 90vw;
    background: white;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 60;
    display: flex;
    flex-direction: column;
  }
  
  .cart-drawer.open {
    transform: translateX(0);
  }
  
  .cart-drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .cart-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #171717;
  }
  
  .close-button {
    background: none;
    border: none;
    color: #171717;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }
  
  .close-button:hover { opacity: 0.7; }
  
  .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
  }
  
  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }
  
  .empty-logo {
    height: 3rem;
    width: auto;
    margin-bottom: 1.5rem;
    opacity: 0.5;
  }
  
  .empty-message {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
  }
  
  .empty-submessage {
    font-size: 0.875rem;
    color: #9ca3af;
  }
  
  .cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .cart-item {
    display: flex;
    gap: 1rem;
  }
  
  .item-image {
    width: 6rem;
    height: 6rem;
    background: #f3f4f6;
    flex-shrink: 0;
  }
  
  .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .item-details {
    flex: 1;
    min-width: 0;
  }
  
  .item-title {
    font-size: 0.875rem;
    color: #171717;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .item-variant {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
  }
  
  .item-price {
    font-size: 0.875rem;
    color: #171717;
    margin-bottom: 0.5rem;
  }
  
  .item-quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
  }
  
  .qty-btn {
    background: none;
    border: none;
    color: #171717;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
  }
  
  .qty-btn:hover {
    background: #f3f4f6;
  }
  
  .qty-value {
    padding: 0 0.75rem;
    font-size: 0.875rem;
    color: #171717;
    min-width: 2rem;
    text-align: center;
  }
  
  .remove-btn {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
  }
  
  .remove-btn:hover {
    color: #dc2626;
  }
  
  .cart-footer {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    color: #171717;
  }
  
  .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
    letter-spacing: 0.025em;
    display: block;
  }
  
  .btn-primary {
    background: black;
    color: white;
    border: 1px solid black;
  }
  
  .btn-primary:hover {
    background: #374151;
  }
  
  .btn-secondary {
    background: white;
    color: black;
    border: 1px solid black;
  }
  
  .btn-secondary:hover {
    background: #f3f4f6;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20rem;
    max-width: 85vw;
    background: white;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 60;
  }
  
  .mobile-menu.open {
    transform: translateX(0);
  }
  
  .mobile-menu-inner {
    padding: 1.5rem;
    height: 100%;
    overflow-y: auto;
  }
  
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .mobile-menu-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #171717;
  }
  
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mobile-nav-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: #171717;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-align: left;
  }
  
  .mobile-chevron {
    transition: transform 0.3s ease-out;
  }
  
  .mobile-nav-button.active .mobile-chevron {
    transform: rotate(180deg);
  }
  
  .mobile-shop-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1rem;
  }
  
  .mobile-shop-dropdown.open {
    max-height: 500px;
    margin-top: 0.75rem;
  }
  
  .mobile-category-link {
    display: block;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    transition: color 0.2s;
  }
  
  .mobile-category-link:hover {
    color: #171717;
  }
  
  .mobile-category-all {
    color: #171717;
    font-weight: bold;
    margin-top: 0.5rem;
  }
  
  .mobile-nav-link {
    color: #171717;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
  }
.hero-section {
    position: relative;
    width: 100%;
  }

  .hero-container {
    position: relative;
    width: 100%;
    min-height: 50vh;
    background-color: #f3f4f6;
    overflow: hidden;
  }

  @media (min-width: 640px) {
    .hero-container {
      min-height: 55vh;
    }
  }

  @media (min-width: 768px) {
    .hero-container {
      min-height: 65vh;
    }
  }

  @media (min-width: 1024px) {
    .hero-container {
      min-height: 70vh;
    }
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-image,
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-image {
    z-index: 1;
    animation: imageZoomFade 1.2s ease-out forwards;
  }

  .hero-video {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
  }

  .hero-video.loaded {
    opacity: 1;
    animation: imageZoomFade 1.2s ease-out forwards;
  }

  @keyframes imageZoomFade {
    0% {
      transform: scale(1.1);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 3;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .hero-logo {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.3s forwards;
  }

  .hero-logo img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
  }

  @media (min-width: 640px) {
    .hero-logo img {
      width: 160px;
    }
  }

  @media (min-width: 768px) {
    .hero-logo img {
      width: 200px;
    }
  }

  @media (min-width: 1024px) {
    .hero-logo img {
      width: 240px;
    }
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
    line-height: 1.5;
  }

  @media (min-width: 640px) {
    .hero-subtitle {
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
    }
  }

  .hero-button {
    display: inline-block;
    background: black;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
  }

  .hero-button:hover {
    background: #374151;
  }

  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
@import url(https://db.onlinewebfonts.com/c/cddfddeff0f66d9f03e9df2585ea819e?family=NeueHaasDisplay-Roman);
  
  .coll-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
    font-family: 'NeueHaasDisplay-Roman_1', sans-serif;
    color: #171717;
  }

  /* --- Container --- */
  .coll-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .coll-container--wide {
    max-width: 1280px; /* 7xl */
  }
  @media (min-width: 640px) {
    .coll-container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  @media (min-width: 1024px) {
    .coll-container {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }

  /* --- Page Header --- */
  .coll-header {
    border-bottom: 1px solid #e5e7eb; /* border-gray-200 */
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .coll-header__flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .coll-breadcrumbs {
    font-size: 0.75rem; /* text-xs */
    color: #6b7280; /* text-gray-500 */
    margin-bottom: 1rem;
  }
  .coll-breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
  }
  .coll-breadcrumbs a:hover {
    color: #000000;
  }
  .coll-breadcrumbs__divider {
    margin: 0 0.5rem;
  }
  .coll-breadcrumbs__active {
    color: #000000;
  }
  .coll-header__title {
    font-size: 2.25rem; /* text-4xl */
  }
  .coll-header__count {
    font-size: 0.875rem; /* text-sm */
    color: #4b5563; /* text-gray-600 */
    display: none;
  }
  @media (min-width: 640px) {
    .coll-header {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
    .coll-breadcrumbs {
      font-size: 0.875rem; /* sm:text-sm */
    }
    .coll-header__title {
      font-size: 3rem; /* sm:text-5xl */
    }
    .coll-header__count {
      display: block; /* sm:block */
    }
  }
  @media (min-width: 768px) {
    .coll-header__title {
      font-size: 3.75rem; /* md:text-6xl */
    }
  }

  /* --- Grid Container --- */
  .coll-grid-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  @media (min-width: 640px) {
    .coll-grid-container {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
  }

  /* --- Product Grid --- */
  .coll-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* grid-cols-2 */
    gap: 1rem; /* gap-4 */
  }
  @media (min-width: 640px) {
    .coll-product-grid {
      grid-template-columns: repeat(3, 1fr); /* sm:grid-cols-3 */
      gap: 1.5rem; /* sm:gap-6 */
    }
  }
  @media (min-width: 1024px) {
    .coll-product-grid {
      grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
      gap: 2rem; /* lg:gap-8 */
    }
  }

  /* --- Product Card --- */
  .coll-product-card {
    text-decoration: none;
    color: #171717;
  }
  .coll-product-card__image-wrapper {
    aspect-ratio: 1 / 1;
    background-color: #f3f4f6; /* bg-gray-100 */
    margin-bottom: 0.75rem; /* mb-3 */
    overflow: hidden;
    position: relative;
  }
  .coll-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .coll-product-card:hover .coll-product-card__image {
    transform: scale(1.05); /* group-hover:scale-105 */
  }

  /* Card Hover Effects */
  .coll-product-card__overlay-bg {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .coll-product-card:hover .coll-product-card__overlay-bg {
    opacity: 0.1; /* group-hover:opacity-10 */
  }
  .coll-product-card__view-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(1rem); /* translate-y-4 */
    transition: all 0.3s ease;
  }
  .coll-product-card:hover .coll-product-card__view-badge {
    opacity: 1; /* group-hover:opacity-100 */
    transform: translateY(0);
  }
  .coll-product-card__view-badge span {
    background-color: #ffffff;
    color: #000000;
    font-size: 0.75rem; /* text-xs */
    padding: 0.5rem 1rem; /* px-4 py-2 */
    pointer-events: none; /* Inaccessible by mouse, lets link work */
  }
  
  /* Card Info */
  .coll-product-card__info {
    font-size: 0.75rem; /* text-xs */
  }
  .coll-product-card__title {
    font-size: 0.75rem; /* text-xs */
    margin-bottom: 0.25rem; /* mb-1 */
    transition: opacity 0.2s ease;
  }
  .coll-product-card:hover .coll-product-card__title {
    opacity: 0.7; /* group-hover:opacity-70 */
  }
  .coll-product-card__meta {
    color: #4b5563; /* text-gray-600 */
    margin-bottom: 0.25rem;
  }
  .coll-product-card__price {
    font-size: 0.75rem; /* text-xs */
  }
  @media (min-width: 640px) {
    .coll-product-card__info,
    .coll-product-card__title,
    .coll-product-card__meta,
    .coll-product-card__price {
      font-size: 0.875rem; /* sm:text-sm */
    }
  }
  
  /* --- Pagination --- */
  .coll-pagination {
    padding-bottom: 3rem;
  }
  .coll-pagination nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  .coll-pagination a,
  .coll-pagination span {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    text-decoration: none;
    color: #6b7280;
  }
  .coll-pagination a:hover {
    color: #000000;
  }
  .coll-pagination span[class="page current"] {
    color: #000000;
    font-weight: bold;
  }
.page-gallery-section {
    background-color: #ffffff;
    padding: 2rem 0 3rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .page-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
  }
  
  .page-gallery-viewer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
  }
  
  /* Flash Overlay for Transition Effect */
  .page-gallery-flash-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0);
    pointer-events: none;
    transition: background-color 0.15s ease-in-out;
    z-index: 5;
  }
  
  .page-gallery-flash-overlay.page-gallery-flash--active {
    background-color: rgba(255, 255, 255, 0.35);
  }
  
  /* Image Container */
  .page-gallery-image-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .page-gallery-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .page-gallery-image--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    left: auto;
    transform: none;
  }
  
  .page-gallery-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    display: block;
  }
  
  /* Navigation Arrows - ON the image */
  .page-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  }
  
  .page-gallery-nav:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%) scale(1.08);
  }
  
  .page-gallery-nav svg {
    color: #171717;
  }
  
  .page-gallery-nav--prev {
    left: 2rem;
  }
  
  .page-gallery-nav--next {
    right: 2rem;
  }
  
  /* Counter */
  .page-gallery-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 0.875rem;
    color: #171717;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Instructions for theme editor */
  .page-gallery-instructions {
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .page-gallery-instructions-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #171717;
  }
  
  .page-gallery-instructions-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .page-gallery-instructions-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
  }
  
  .page-gallery-instructions-content p {
    margin: 1.5rem 0 0.5rem;
    color: #6b7280;
    font-weight: 500;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .page-gallery-nav--prev {
      left: 1rem;
    }
    
    .page-gallery-nav--next {
      right: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .page-gallery-section {
      padding: 1rem 0 2rem;
      min-height: 50vh;
    }
    
    .page-gallery-viewer {
      min-height: 400px;
    }
    
    .page-gallery-image img {
      max-height: 70vh;
    }
    
    .page-gallery-nav {
      width: 44px;
      height: 44px;
    }
    
    .page-gallery-nav svg {
      width: 28px;
      height: 28px;
    }
    
    .page-gallery-nav--prev {
      left: 0.5rem;
    }
    
    .page-gallery-nav--next {
      right: 0.5rem;
    }
    
    .page-gallery-counter {
      font-size: 0.75rem;
      padding: 0.375rem 0.875rem;
      bottom: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .page-gallery-image img {
      max-height: 65vh;
    }
    
    .page-gallery-nav {
      width: 40px;
      height: 40px;
    }
    
    .page-gallery-nav svg {
      width: 24px;
      height: 24px;
    }
  }
@import url(https://db.onlinewebfonts.com/c/cddfddeff0f66d9f03e9df2585ea819e?family=NeueHaasDisplay-Roman);
  
  .pdp-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
    font-family: 'NeueHaasDisplay-Roman_1', sans-serif;
    color: #171717;
    padding-bottom: 4rem;
  }
  
  /* --- Containers --- */
  .pdp-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .pdp-container--wide {
    max-width: 1280px; /* 7xl */
  }
  @media (min-width: 640px) {
    .pdp-container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  @media (min-width: 1024px) {
    .pdp-container {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  
  /* --- Breadcrumbs --- */
  .pdp-breadcrumbs {
    font-size: 0.75rem; /* text-xs */
    color: #6b7280; /* text-gray-500 */
    padding-top: 1rem;
  }
  .pdp-breadcrumbs a:hover {
    color: #000000;
  }
  .pdp-breadcrumbs__divider {
    margin: 0 0.5rem;
  }
  .pdp-breadcrumbs__active {
    color: #000000;
  }
  @media (min-width: 640px) {
    .pdp-breadcrumbs {
      font-size: 0.875rem; /* sm:text-sm */
    }
  }

  /* --- Grid --- */
  .pdp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }
  @media (min-width: 1024px) {
    .pdp-grid {
      grid-template-columns: 1.5fr 1fr;
      gap: 3rem;
    }
  }

  /* --- Media (Desktop) --- */
  .pdp-media__desktop {
    display: none;
    flex-direction: column;
    gap: 1rem;
  }
  @media (min-width: 768px) {
    .pdp-media__desktop {
      display: flex;
    }
  }
  .pdp-media__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* --- Media (Mobile Carousel) --- */
  .pdp-media__mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  @media (min-width: 768px) {
    .pdp-media__mobile {
      display: none;
    }
  }
  .pdp-media__mobile-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 0;
    scrollbar-width: none; /* Firefox */
  }
  .pdp-media__mobile-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .pdp-media__mobile-slide {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
  }
  .pdp-media__mobile-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  .pdp-media__mobile-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #d1d5db;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  .pdp-media__mobile-dot.active {
    background-color: #171717;
  }

  /* --- Product Details --- */
  .pdp-details {
    display: flex;
    flex-direction: column;
  }
  @media (min-width: 1024px) {
    .pdp-details__sticky-content {
      position: sticky;
      top: 2rem;
    }
  }
  .pdp-details__header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .pdp-details__title {
    font-size: 1.5rem; /* text-2xl */
    line-height: 1.3;
  }
  .pdp-details__price {
    font-size: 1.125rem; /* text-lg */
    color: #4b5563; /* text-gray-600 */
  }
  .pdp-details__spacer {
    height: 2rem;
  }

  /* --- Variant Picker --- */
  .pdp-variant-picker {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .pdp-variant-picker__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .pdp-variant-picker__title {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
  }
  
  .pdp-variant-picker__sizeguide-btn {
    font-size: 0.875rem;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: #4b5563;
    white-space: nowrap;
  }
  
  .pdp-variant-picker__sizeguide-btn:hover {
    color: #000000;
  }
  
  .pdp-variant-picker__grid {
    display: grid;
    gap: 0.5rem;
  }
  .pdp-variant-picker__grid--1 {
    grid-template-columns: 1fr;
  }
  .pdp-variant-picker__grid--2,
  .pdp-variant-picker__grid--3,
  .pdp-variant-picker__grid--4,
  .pdp-variant-picker__grid--5,
  .pdp-variant-picker__grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
  @media (min-width: 640px) {
    .pdp-variant-picker__grid--2,
    .pdp-variant-picker__grid--3 {
      grid-template-columns: repeat(2, 1fr);
    }
    .pdp-variant-picker__grid--4,
    .pdp-variant-picker__grid--5,
    .pdp-variant-picker__grid--6 {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .pdp-variant-picker__radio-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .pdp-variant-picker__radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: border-color 0.2s;
    font-size: 0.875rem;
  }
  .pdp-variant-picker__radio-input:checked + .pdp-variant-picker__radio-label {
    border-color: #171717;
    background-color: #f9fafb;
  }
  .pdp-variant-picker__radio-label:hover {
    border-color: #9ca3af;
  }

  /* Quantity */
  .pdp-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .pdp-quantity__title {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
  }
  .pdp-quantity__selector {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    width: fit-content;
  }
  .pdp-quantity__button {
    padding: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pdp-quantity__button:hover {
    background-color: #f3f4f6;
  }
  .pdp-quantity__input {
    width: 4rem;
    text-align: center;
    border: none;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    -moz-appearance: textfield; /* Firefox */
    appearance: textfield;
  }
  
  /* Remove spinner arrows from number input */
  .pdp-quantity__input::-webkit-outer-spin-button,
  .pdp-quantity__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .pdp-quantity__input:focus {
    outline: none;
  }

  /* Actions */
  .pdp-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .pdp-actions__button {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    border: 1px solid transparent;
  }
  .pdp-actions__button--primary {
    background-color: #000000;
    color: #ffffff;
  }
  .pdp-actions__button--primary:hover:not(:disabled) {
    background-color: #374151;
  }
  .pdp-actions__button--primary:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
  }

  /* Accordions */
  .pdp-accordions {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e5e7eb;
  }
  .pdp-accordion {
    border-bottom: 1px solid #e5e7eb;
  }
  .pdp-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
    list-style: none;
    font-size: 0.875rem;
  }
  .pdp-accordion__summary::-webkit-details-marker {
    display: none;
  }
  .pdp-accordion__icon {
    transition: transform 0.2s;
  }
  .pdp-accordion__icon::before {
    content: '+';
    font-size: 1.25rem;
  }
  .pdp-accordion[open] .pdp-accordion__icon::before {
    content: '−';
  }
  .pdp-accordion__content {
    padding-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
  }
  .pdp-accordion__content--small-text {
    font-size: 0.813rem;
  }
  .pdp-accordion__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .pdp-accordion__content li {
    margin-bottom: 0.5rem;
  }

  /* Related Products */
  .pdp-related-products {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .pdp-related-products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .pdp-related-products__title {
    font-size: 1.25rem;
  }
  .pdp-related-products__nav {
    display: flex;
    gap: 0.5rem;
  }
  .pdp-related-products__nav-btn {
    font-size: 0.875rem;
    padding: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
  }
  .pdp-related-products__nav-btn:hover {
    opacity: 0.7;
  }
  .pdp-related-products__carousel-wrapper {
    overflow: hidden;
  }
  .pdp-related-products__carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .pdp-related-products__carousel::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
  }
  .pdp-related-products__slide {
    flex: 0 0 70%;
    min-width: 0;
    scroll-snap-align: start;
  }
  @media (min-width: 640px) {
    .pdp-related-products__slide { flex-basis: 45%; }
  }
  @media (min-width: 768px) {
    .pdp-related-products__slide { flex-basis: 32%; }
  }
  @media (min-width: 1024px) {
    .pdp-related-products__slide { flex-basis: 24%; }
  }

  /* Related Product Card */
  .pdp-related-product-card {
    text-decoration: none;
  }
  .pdp-related-product-card__image-wrapper {
    aspect-ratio: 1 / 1;
    background-color: #f3f4f6;
    margin-bottom: 0.75rem;
    overflow: hidden;
  }
  .pdp-related-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .pdp-related-product-card:hover .pdp-related-product-card__image {
    transform: scale(1.05);
  }
  .pdp-related-product-card__title {
    font-size: 0.75rem;
    color: #171717;
    margin-bottom: 0.25rem;
  }
  .pdp-related-product-card__price {
    font-size: 0.75rem;
    color: #4b5563;
  }
  @media (min-width: 640px) {
    .pdp-related-product-card__title,
    .pdp-related-product-card__price {
      font-size: 0.875rem;
    }
  }
  
  /* --- Size Guide Modal --- */
  .pdp-size-guide-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .pdp-size-guide-modal.is-open {
    opacity: 1;
    visibility: visible;
  }
  .pdp-size-guide-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.75);
  }
  .pdp-size-guide-modal__content {
    position: relative;
    background-color: #ffffff;
    border-radius: 0.5rem;
    max-width: 896px; /* 4xl */
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .pdp-size-guide-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ffffff;
    border-radius: 9999px;
    padding: 0.5rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    z-index: 10;
  }
  .pdp-size-guide-modal__close:hover {
    background-color: #f3f4f6;
  }
  .pdp-size-guide-modal__inner {
    padding: 1.5rem;
  }
  .pdp-size-guide-modal__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .pdp-size-guide-modal__image {
    width: 100%;
    height: auto;
  }
  @media (min-width: 640px) {
    .pdp-size-guide-modal__inner {
      padding: 2rem;
    }
  }
.new-arrivals-section {
    padding: 2rem 1rem;
  }

  @media (min-width: 768px) {
    .new-arrivals-section {
      padding: 2rem;
    }
  }

  .new-arrivals-container {
    max-width: 1440px;
    margin: 0 auto;
  }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
    color: #171717;
    font-weight: 400;
  }

  @media (min-width: 768px) {
    .section-title {
      font-size: 1.875rem;
    }
  }

  .carousel-controls {
    display: flex;
    gap: 0.5rem;
  }

  .carousel-btn {
    background: none;
    border: none;
    color: #171717;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.2s;
  }

  .carousel-btn:hover {
    opacity: 0.7;
  }

  .carousel-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .new-arrivals-swiper {
    overflow: visible;
  }

  .new-arrivals-swiper .swiper-wrapper {
    display: flex;
  }

  .new-arrivals-swiper .swiper-slide {
    width: auto;
    height: auto;
  }

  .product-card {
    display: block;
    text-decoration: none;
    height: 100%;
  }

  .product-image {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #f3f4f6;
    margin-bottom: 0.75rem;
    overflow: hidden;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
  }

  .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .product-card:hover .product-overlay {
    opacity: 1;
  }

  .quick-view-text {
    background: white;
    color: black;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    pointer-events: none;
  }

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

  .product-title {
    font-size: 0.875rem;
    color: #171717;
    margin-bottom: 0.25rem;
    transition: opacity 0.2s;
    line-height: 1.3;
  }

  .product-card:hover .product-title {
    opacity: 0.7;
  }

  .product-price {
    font-size: 0.875rem;
    color: #6b7280;
  }

  .placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
  }

  .placeholder-content {
    color: #9ca3af;
    font-size: 0.875rem;
  }
.shop-by-category-section {
    padding: 2rem 1rem;
  }

  @media (min-width: 768px) {
    .shop-by-category-section {
      padding: 2rem;
    }
  }

  .category-container {
    max-width: 1440px;
    margin: 0 auto;
  }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
    color: #171717;
    font-weight: 400;
  }

  @media (min-width: 768px) {
    .section-title {
      font-size: 1.875rem;
    }
  }

  .carousel-controls {
    display: flex;
    gap: 0.5rem;
  }

  .carousel-btn {
    background: none;
    border: none;
    color: #171717;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.2s;
  }

  .carousel-btn:hover {
    opacity: 0.7;
  }

  .carousel-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .category-swiper {
    overflow: visible;
    padding-bottom: 1rem;
  }

  .category-swiper .swiper-wrapper {
    display: flex;
  }

  .category-swiper .swiper-slide {
    width: auto;
    height: auto;
  }

  .category-card {
    position: relative;
    display: block;
    height: 580px;
    text-decoration: none;
    overflow: hidden;
  }

  .category-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    overflow: hidden;
  }

  .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
  }

  .category-card:hover .category-image img {
    transform: scale(1.05);
  }

  .category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #9ca3af;
    font-size: 1rem;
  }

  .category-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 10;
  }

  .category-name {
    color: white;
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
  }

  .category-button {
    background: black;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
  }

  .category-button:hover {
    background: #374151;
  }

/* CSS from block stylesheet tags */
* { margin: 0; padding: 0; box-sizing: border-box; }
  .header-wrapper { position: relative; z-index: 40; }
  
  /* Announcement */
  .announcement-bar { position: relative; width: 100%; color: white; text-align: center; padding: 0.5rem 2rem; font-size: 0.75rem; transition: background-color 0.8s; z-index: 45; }
  @media (min-width: 640px) { .announcement-bar { font-size: 0.875rem; } }
  .announcement-content { display: flex; justify-content: center; align-items: center; }
  .announcement-text { display: inline-block; padding: 0 2rem; }
  .announcement-close { position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: white; cursor: pointer; padding: 0.25rem; display: flex; transition: opacity 0.2s; }
  @media (min-width: 640px) { .announcement-close { right: 1rem; } }
  .announcement-close:hover { opacity: 0.7; }
  
  /* Header */
  .site-header { background: white; border-bottom: 1px solid #e5e7eb; position: relative; z-index: 40; }
  .header-container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
  @media (min-width: 640px) { .header-container { padding: 0 1.5rem; } }
  @media (min-width: 1024px) { .header-container { padding: 0 2rem; } }
  .header-content { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
  .header-left { display: flex; align-items: center; gap: 2rem; }
  .site-logo { display: flex; align-items: center; text-decoration: none; }
  .logo-image { height: 1.5rem; width: auto; display: block; }
  @media (min-width: 640px) { .logo-image { height: 2rem; } }
  .logo-text { font-size: 1.25rem; font-weight: bold; color: #171717; }
  .desktop-nav { display: none; align-items: center; gap: 2rem; }
  @media (min-width: 1024px) { .desktop-nav { display: flex; } }
  .nav-button { display: flex; align-items: center; gap: 0.25rem; background: none; border: none; color: #171717; font-size: 0.875rem; cursor: pointer; padding: 0.5rem 0; font-weight: 500; letter-spacing: 0.025em; transition: color 0.2s; }
  .nav-button:hover { color: #6b7280; }
  .nav-button.active .chevron { transform: rotate(180deg); }
  .chevron { transition: transform 0.3s; }
  .nav-link { color: #171717; text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.025em; transition: color 0.2s; }
  .nav-link:hover { color: #6b7280; }
  .header-right { display: flex; align-items: center; gap: 1rem; }
  .cart-button { background: black; border: none; color: white; padding: 0.5rem 0.75rem; border-radius: 0.375rem; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: background-color 0.2s; }
  .cart-button:hover { background: #374151; }
  .cart-count { font-size: 0.875rem; font-weight: 500; color: white; }
  .mobile-menu-button { display: flex; background: none; border: none; color: #171717; cursor: pointer; padding: 0.5rem; }
  @media (min-width: 1024px) { .mobile-menu-button { display: none; } }
  
  /* Shop Dropdown */
  .shop-dropdown { position: fixed; top: 0; left: 0; right: 0; bottom: 0; visibility: hidden; opacity: 0; transition: opacity 0.3s, visibility 0.3s; z-index: 50; pointer-events: none; }
  .shop-dropdown.active { visibility: visible; opacity: 1; pointer-events: auto; }
  .dropdown-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
  .dropdown-content { position: absolute; top: 5rem; left: 50%; transform: translateX(-50%) translateY(-20px); width: calc(100% - 4rem); max-width: 1200px; background: white; border-radius: 0.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transition: transform 0.3s; }
  .shop-dropdown.active .dropdown-content { transform: translateX(-50%) translateY(0); }
  .dropdown-inner { display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; padding: 2rem; }
  .dropdown-heading { font-size: 0.75rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; font-weight: 600; }
  .categories-nav { display: flex; flex-direction: column; gap: 0.75rem; }
  .category-link { color: #171717; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
  .category-link:hover { color: #6b7280; }
  .category-all { font-weight: bold; margin-top: 0.5rem; }
  .featured-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
  .featured-product { text-decoration: none; display: block; }
  .featured-image { width: 100%; aspect-ratio: 1; background: #f3f4f6; margin-bottom: 0.5rem; overflow: hidden; }
  .featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
  .featured-product:hover .featured-image img { transform: scale(1.05); }
  .featured-info { font-size: 0.75rem; }
  .featured-title { color: #171717; margin-bottom: 0.25rem; transition: color 0.2s; }
  .featured-product:hover .featured-title { color: #6b7280; }
  .featured-price { color: #6b7280; }
  
  /* Cart & Mobile Overlays */
  .cart-drawer-overlay, .mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; z-index: 59; }
  .cart-drawer-overlay.active, .mobile-menu-overlay.active { opacity: 1; visibility: visible; }
  
  /* Cart Drawer */
  .cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 24rem; max-width: 90vw; background: white; box-shadow: -2px 0 10px rgba(0,0,0,0.1); transform: translateX(100%); transition: transform 0.3s; z-index: 60; display: flex; flex-direction: column; }
  .cart-drawer.open { transform: translateX(0); }
  .cart-drawer-inner { display: flex; flex-direction: column; height: 100%; }
  .cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid #e5e7eb; }
  .cart-title { font-size: 1.125rem; font-weight: bold; color: #171717; }
  .close-button { background: none; border: none; color: #171717; cursor: pointer; padding: 0.25rem; display: flex; transition: opacity 0.2s; }
  .close-button:hover { opacity: 0.7; }
  .cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
  .cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; }
  .empty-logo { height: 3rem; margin-bottom: 1.5rem; opacity: 0.5; }
  .empty-message { font-size: 1rem; color: #6b7280; margin-bottom: 0.5rem; }
  .empty-submessage { font-size: 0.875rem; color: #9ca3af; }
  .cart-items-list { display: flex; flex-direction: column; gap: 1.5rem; }
  .cart-item { display: flex; gap: 1rem; }
  .item-image { width: 6rem; height: 6rem; background: #f3f4f6; flex-shrink: 0; }
  .item-image img { width: 100%; height: 100%; object-fit: cover; }
  .item-details { flex: 1; min-width: 0; }
  .item-title { font-size: 0.875rem; color: #171717; margin-bottom: 0.25rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .item-variant { font-size: 0.75rem; color: #6b7280; margin-bottom: 0.5rem; }
  .item-price { font-size: 0.875rem; color: #171717; margin-bottom: 0.5rem; }
  .item-quantity { display: flex; align-items: center; gap: 0.75rem; }
  .quantity-selector { display: flex; align-items: center; border: 1px solid #d1d5db; }
  .qty-btn { background: none; border: none; color: #171717; cursor: pointer; padding: 0.25rem; display: flex; transition: background-color 0.2s; }
  .qty-btn:hover { background: #f3f4f6; }
  .qty-value { padding: 0 0.75rem; font-size: 0.875rem; color: #171717; }
  .remove-btn { background: none; border: none; color: #9ca3af; cursor: pointer; padding: 0.25rem; display: flex; transition: color 0.2s; }
  .remove-btn:hover { color: #dc2626; }
  .cart-footer { border-top: 1px solid #e5e7eb; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
  .cart-subtotal { display: flex; justify-content: space-between; font-size: 1.125rem; color: #171717; }
  .btn { width: 100%; padding: 0.75rem; font-size: 0.875rem; text-align: center; text-decoration: none; border-radius: 0.25rem; cursor: pointer; transition: background-color 0.2s; font-weight: 500; letter-spacing: 0.025em; }
  .btn-primary { background: black; color: white; border: 1px solid black; }
  .btn-primary:hover { background: #374151; }
  .btn-secondary { background: white; color: black; border: 1px solid black; display: block; }
  .btn-secondary:hover { background: #f3f4f6; }
  
  /* Mobile Menu */
  .mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 20rem; max-width: 85vw; background: white; box-shadow: -2px 0 10px rgba(0,0,0,0.1); transform: translateX(100%); transition: transform 0.3s; z-index: 60; }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu-inner { padding: 1.5rem; height: 100%; overflow-y: auto; }
  .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
  .mobile-menu-title { font-size: 1.125rem; font-weight: bold; color: #171717; }
  .mobile-nav { display: flex; flex-direction: column; gap: 1.5rem; }
  .mobile-nav-button { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; color: #171717; font-size: 1rem; font-weight: 500; cursor: pointer; padding: 0; text-align: left; }
  .mobile-chevron { transition: transform 0.3s; }
  .mobile-nav-button.active .mobile-chevron { transform: rotate(180deg); }
  .mobile-shop-dropdown { max-height: 0; overflow: hidden; transition: max-height 0.3s; padding-left: 1rem; }
  .mobile-shop-dropdown.open { max-height: 500px; margin-top: 0.75rem; }
  .mobile-category-link { display: block; color: #6b7280; text-decoration: none; font-size: 0.875rem; padding: 0.5rem 0; transition: color 0.2s; }
  .mobile-category-link:hover { color: #171717; }
  .mobile-category-all { color: #171717; font-weight: bold; margin-top: 0.5rem; }
  .mobile-nav-link { color: #171717; text-decoration: none; font-size: 1rem; font-weight: 500; }