/* =====================================================
   DESKTOP-ONLY REFINEMENTS (min-width: 1024px)
   Premium, spacious, balanced visual experience
   ===================================================== */
@media (min-width: 1024px) {

  /* ============================================
     DESKTOP-ONLY REDESIGN
     Light, Clean, Editorial, Premium
     ============================================ */

  /* === 1. TYPOGRAPHY HIERARCHY - Elegant, refined === */
  h1 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.12;
  }
  h2 {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1.25;
  }
  h3 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  p {
    line-height: 1.85;
    /* color: #5a5a5a; */
  }

  /* === 2. SECTION SPACING - Generous whitespace === */
  section {
    margin-bottom: 100px;
  }
  section h2 {
    margin-bottom: 40px;
  }

  /* === 3. PRODUCT GRID - Clean 3-4 column layout === */
  .product-grid,
  .collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* === 4. PRODUCT CARDS - Editorial, light aesthetic === */
  .product-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.35s ease;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
  }
  .product-card__image {
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
  }
  .product-card__image img {
    transform: scale(1);
    transition: transform 0.6s ease;
  }
  .product-card:hover .product-card__image img {
    transform: scale(1.03);
  }
  
  /* Overlay - minimal, elegant */
  .product-card__overlay {
    background: transparent;
    padding-bottom: 0;
    justify-content: flex-end;
    padding: 24px;
  }
  .product-card.is-revealed .product-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
  }
  .product-card__overlay-name {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    text-align: left;
    align-self: flex-start;
  }
  .product-card__overlay-more {
    display: none;
  }
  
  /* Card content - clean hierarchy */
  .product-card__description {
    margin: 16px 0 8px 0;
    font-size: 0.88rem;
    color: #888;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .product-card__price {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
  }

  /* === 5. CARDS GENERAL - Minimal styling === */
  .card {
    background: transparent;
    border-radius: 4px;
    border: none;
    box-shadow: none;
    transition: transform 0.35s ease;
  }
  .card:hover {
    transform: translateY(-4px);
    box-shadow: none;
  }
  .card img {
    height: 220px;
    border-radius: 4px;
    transition: transform 0.5s ease;
  }
  .card:hover img,
  .card.is-hover img {
    transform: scale(1.02);
  }
  .card .title {
    padding: 16px 0 4px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent);
  }
  .card .price {
    padding: 0;
    font-size: 0.88rem;
    font-weight: 400;
    color: #888;
  }

  /* === 6. CATEGORY GRID - Clean, editorial === */
  .category-grid-unified {
    gap: 2px;
    background: transparent;
    background-image: none;
  }
  .category-separator {
    height: 0;
    background: transparent;
    display: none;
  }
  .category-card {
    padding-top: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .category-card__image {
    aspect-ratio: 16/10;
    border-radius: 0;
  }
  .category-card__name {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    top: auto;
    bottom: 24px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  }
  .category-card:hover {
    transform: none;
    box-shadow: none;
  }
  .category-card:hover .category-card__image img {
    transform: scale(1.03);
  }
  .category-card:hover .category-card__overlay {
    background: rgba(0,0,0,0.2);
  }

  /* === 7. HERO FULLSCREEN - Refined === */
  .hero-fullscreen {
    height: 85vh;
    min-height: 560px;
  }
  .hero-fullscreen .hero-content {
    top: 40%;
    left: 8%;
    max-width: 520px;
  }
  .hero-fullscreen .hero-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }
  .hero-fullscreen .hero-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
    opacity: 0.9;
  }
  .hero-fullscreen .hero-cta {
    width: auto;
    padding: 14px 36px;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    border-radius: 2px;
    bottom: 120px;
  }
  .hero-nav {
    bottom: 48px;
    gap: 24px;
  }
  .hero-nav__arrow {
    padding: 8px 14px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 2px;
  }
  .hero-nav__arrow svg {
    width: 28px;
    height: 28px;
  }

  /* === 8. GROUPS SHOWCASE - Minimal carousel === */
  .groups-showcase {
    padding: 80px 0 100px;
    background: #fafafa;
  }
  .groups-showcase__header {
    margin-bottom: 48px;
    padding: 0 60px;
    text-align: left;
  }
  .groups-showcase__title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--accent);
  }
  .groups-showcase__subtitle {
    font-size: 1rem;
    color: #888;
  }
  .groups-showcase__track {
    gap: 20px;
    padding: 0 60px;
  }
  .group-card {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .group-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .group-card:hover .group-card__image img {
    transform: scale(1.02);
  }
  .group-card__image {
    border-radius: 4px 4px 0 0;
    overflow: hidden;
  }
  .group-card__image img {
    transition: transform 0.5s ease;
  }
  .group-card__content {
    padding: 20px;
  }
  .group-card__name {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .group-card__count {
    font-size: 0.85rem;
    color: #999;
  }

  /* === 9. COLLECTIONS SHOWCASE - Editorial black section === */
  .collections-showcase {
    padding: 80px 0 100px;
  }
  .collections-showcase__header {
    padding: 0 60px 40px;
  }
  .collections-showcase__title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.12em;
  }
  .collections-showcase__subtitle {
    font-size: 0.95rem;
    opacity: 0.7;
  }
  .collections-showcase__slide img {
    height: 55vh;
    min-height: 380px;
    max-height: 600px;
    transition: transform 0.5s ease;
  }
  .collections-showcase__slide:hover img {
    transform: scale(1.015);
  }
  .collections-showcase__progress {
    margin-top: 28px;
    padding: 0 60px;
  }
  .collections-showcase__name-wrapper {
    margin-top: 16px;
    padding: 0 60px;
  }

  /* === 10. CATEGORY PAGE - Clean headers === */
  .category-header {
    margin: 20px 0 56px 0;
    padding: 0 40px;
  }
  .category-header h1 {
    font-size: 2.8rem;
    font-weight: 500;
  }
  .category-title {
    margin: 64px 0;
    padding: 0 40px;
  }
  .category-title h1 {
    font-size: 2.8rem;
    font-weight: 500;
  }

  /* === 11. PRODUCT PAGE - Refined layout === */
  .product-hero-fullscreen {
    height: 70vh;
    min-height: 480px;
  }
  .product-hero__name {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  .product-intro {
    padding: 48px 60px 40px;
    max-width: 1280px;
    margin: 0 auto;
    background: transparent;
  }
  .product-intro__name {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .product-intro__desc {
    font-size: 1.05rem;
    max-width: 720px;
    color: #666;
  }
  
  /* === DESKTOP PRODUCT GALLERY - Main image + vertical thumbnails === */
  .product-carousel {
    display: grid;
    grid-template-columns: 1fr 120px;
    grid-template-rows: auto;
    gap: 20px;
    padding: 24px 60px 48px;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    overflow: visible;
  }
  .product-carousel__track {
    grid-column: 1;
    grid-row: 1;
    display: block;
    padding: 0;
    position: relative;
    aspect-ratio: 4/3;
    max-height: 600px;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 4px;
  }
  .product-carousel__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: none;
    transition: opacity 0.4s ease;
    cursor: zoom-in;
    flex: none;
  }
  .product-carousel__slide.is-active {
    opacity: 1;
    transform: none;
  }
  .product-carousel__slide.clone {
    display: none;
  }
  .product-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  /* Hide carousel arrows on desktop - use thumbnails for navigation */
  .product-carousel__arrow {
    display: none;
  }
  /* Desktop thumbnail strip - vertical on right side */
  .product-carousel::after {
    content: '';
    grid-column: 2;
    grid-row: 1;
  }
  .product-carousel__thumbs {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.15) transparent;
  }
  .product-carousel__thumbs::-webkit-scrollbar {
    width: 4px;
  }
  .product-carousel__thumbs::-webkit-scrollbar-track {
    background: transparent;
  }
  .product-carousel__thumbs::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
  }
  .product-carousel__thumb {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
    background: #f8f8f8;
  }
  .product-carousel__thumb:hover {
    opacity: 0.8;
  }
  .product-carousel__thumb.is-active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--accent);
  }
  .product-carousel__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-details {
    padding: 48px 60px 64px;
    max-width: 1280px;
    margin: 24px auto 0;
    background: #f9f7f4;
    border-radius: 0;
  }
  .product-details__name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .product-details__description {
    font-size: 1rem;
    line-height: 1.85;
    max-width: 720px;
    margin-bottom: 32px;
    color: #555;
  }
  .product-details__attributes li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .product-materials {
    margin-top: 36px;
  }
  .product-materials__title {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .product-materials__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .product-materials__image {
    width: 120px;
    height: 120px;
    border-radius: 4px;
  }

  /* === 12. PRODUCT LAYOUT DESKTOP === */
  .product-layout {
    gap: 32px;
    max-width: 1280px;
  }
  .product-info {
    flex: 0 0 420px;
    padding: 24px;
    background: transparent;
    box-shadow: none;
  }
  .product-info h1 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
  }

  /* === 13. HEADER - Clean, minimal === */
  /* Note: Do NOT set background here - let base CSS + JS handle transparent/scrolled states */
  .site-header {
    padding: 18px 40px;
  }
  /* Scrolled state refinements for desktop */
  .site-header.header--scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  /* Non-hero pages: always solid header on desktop */
  body:not(.has-hero) .site-header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .brand__title {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.12em;
  }
  .brand__subtitle {
    font-size: 0.7rem;
    margin-top: 2px;
  }
  /* Desktop nav text: inherit from base styles, adjust when scrolled */
  .site-header.header--scrolled .top-nav a,
  body:not(.has-hero) .site-header .top-nav a {
    color: #555;
  }
  .top-nav a {
    font-size: 0.9rem;
    font-weight: 400;
    padding: 6px 10px;
    position: relative;
  }
  .top-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 10px;
    right: 10px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }
  .site-header.header--scrolled .top-nav a:hover,
  body:not(.has-hero) .site-header .top-nav a:hover {
    color: var(--accent);
  }
  .top-nav a:hover::after {
    transform: scaleX(1);
  }

  /* === 14. SEE MORE & PAGINATION - Minimal === */
  .see-more-container {
    padding: 64px 20px 100px;
  }
  .see-more-btn {
    padding: 14px 48px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 2px;
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(34,34,34,0.2);
    transition: all 0.3s ease;
  }
  .see-more-btn:hover {
    transform: none;
    background: var(--accent);
    color: #fff;
    box-shadow: none;
  }
  .pagination {
    padding: 64px 20px 100px;
    gap: 20px;
  }
  .pagination__btn {
    padding: 12px 28px;
    font-size: 0.88rem;
    border-radius: 2px;
  }
  .pagination__btn:hover {
    transform: none;
    box-shadow: none;
  }

  /* === 15. COLLECTION PAGE CTA === */
  .collection-other-cta {
    padding: 80px 40px 120px;
    background: #fff;
  }
  .collection-other-cta__btn {
    padding: 14px 48px;
    font-size: 0.9rem;
    border-radius: 2px;
  }
  .collection-other-cta__btn:hover {
    transform: none;
    box-shadow: none;
  }

  /* === COLLECTION PAGE DESKTOP REDESIGN === */
  /* Collection detail page - editorial layout */
  .collection-page .product-intro {
    padding: 64px 80px 48px;
    max-width: 1400px;
    text-align: center;
  }
  .collection-page .product-intro__name {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
  .collection-page .product-intro__desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  /* Collection products flow - cleaner visual rhythm */
  .collection-products-flow {
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Product showcase within collection - refined */
  .collection-product-showcase {
    padding: 80px 0;
  }
  .collection-product-showcase .collections-showcase__header {
    padding: 0 80px 48px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .collection-product-showcase .collections-showcase__title {
    font-size: 2rem;
    letter-spacing: 0.08em;
  }
  .collection-product-showcase .collections-showcase__carousel {
    max-width: 1600px;
    margin: 0 auto;
  }
  .collection-product-showcase .collections-showcase__slide img {
    height: 50vh;
    min-height: 360px;
    max-height: 560px;
  }
  .collection-product-showcase .collections-showcase__progress {
    max-width: 1400px;
    margin: 24px auto 0;
    padding: 0 80px;
  }
  .collection-product-showcase .collections-showcase__name-wrapper {
    max-width: 1400px;
    margin: 12px auto 0;
    padding: 0 80px;
  }
  
  /* Product details within collection - cleaner */
  .collection-product-details {
    background: #faf8f5;
    padding: 64px 80px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .collection-product-details .product-details__name {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
  }
  .collection-product-details .product-details__description {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
  }
  .collection-product-details .product-details__attributes {
    max-width: 600px;
    margin: 0 auto;
  }
  .collection-product-details .product-materials {
    max-width: 800px;
    margin: 32px auto 0;
  }
  .collection-product-details .product-materials__grid {
    justify-content: center;
  }
  
  /* Separator between products in flow */
  .collection-products-flow > section:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  /* Visual breathing room between product sections */
  .collection-products-flow .collection-product-showcase + .collection-product-details {
    margin-top: 0;
  }
  .collection-products-flow .collection-product-details + .collection-product-showcase {
    margin-top: 48px;
  }

  /* === 16. FULLSCREEN GALLERY === */
  .product-fullscreen-close,
  .product-fullscreen-arrow {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.25s ease;
  }
  .product-fullscreen-close:hover,
  .product-fullscreen-arrow:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%);
  }
  .product-fullscreen-close:hover {
    transform: none;
  }
  .product-fullscreen-arrow--prev {
    left: 28px;
  }
  .product-fullscreen-arrow--next {
    right: 28px;
  }
  .product-fullscreen-close {
    top: 20px;
    right: 20px;
  }

  /* === 17. RECOMMENDATION SECTION - Balanced grid === */
  .product-page-content .product-recommendations {
    padding: 64px 60px;
    background: #f9f7f4;
    max-width: 100%;
  }
  .product-page-content .product-recommendations h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 32px;
    text-align: center;
  }
  /* Override product-grid in recommendations for balanced layout */
  .product-recommendations .product-grid,
  .product-recommendations .rec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  /* Ensure cards fill space evenly */
  .product-recommendations .product-card {
    width: 100%;
  }
  /* Hide see more if few items - show only if more than 6 */
  .product-recommendations .see-more-container {
    padding: 40px 0 0;
    text-align: center;
  }

  /* === 18. FOOTER - Minimal presence === */
  .footer-inner {
    padding: 52px 80px 66px;
  }

  /* === 19. SPLASH SCREEN === */
  .splash-inner {
    padding: 48px 56px;
    max-width: 640px;
    border-radius: 8px;
  }
  .splash .logo {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .splash h1 {
    font-size: 2rem;
    font-weight: 500;
  }
  .splash .desc {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
  }
  .splash button {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 2px;
  }

  /* === 20. BACKGROUNDS - Neutral, unified === */
  .page-content,
  .product-page-content,
  .category-page-content {
    background: var(--bg);
  }

  /* === 21. REMOVE VISUAL NOISE === */
  /* Reduce heavy shadows and decorations */
  .card,
  .product-card,
  .group-card {
    box-shadow: none;
  }
  .card:hover,
  .product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }

}
/* === EXTRA WIDE SCREENS (1440px+) - 4 column grids === */
@media (min-width: 1440px) {
  .product-grid,
  .collection-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1440px;
    gap: 36px;
  }
  .product-recommendations .product-grid,
  .product-recommendations .rec-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
  }
}
