* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      font-family: 'Panchang', sans-serif;
}

body {
    background: white;
    color: #111;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
    position: absolute;
    width: 100%;
    padding: 30px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.logo {
    text-decoration: none;
    color: white;
    font-size: 16px;
    letter-spacing: 2px;
}
.btn i {
    margin-right: 10px;
    font-size: 14px;
}
.menu-btn {
    display: none;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-text {
    padding-top: 40px;
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
}

.hero-text h1 {
    font-size: 100px;
    font-weight: 900;
    line-height: 1.1;
}

/* HERO ANIMATION ORDER */

.isee {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.fade-2026 {
    font-size: 150px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.2s;
}

.fade-collection {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.8s;
}

.fade-scroll {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 2.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUTTON */

.btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid white;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: black;
}

/* ================= SCROLL INDICATOR ================= */

.scroll-vertical {
    position: absolute;
    bottom: 60px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-vertical span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.scroll-line-vertical {
    width: 2px;
    height: 80px;
    background: white;
    animation: scrollPulse 1.6s infinite;
}
.fade-nav {
    opacity: 0;
    animation: fadeNav 1s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeNav {
    to {
        opacity: 1;
    }
}
.fade-2026-block {
    opacity: 0;
    transform: translateY(40px) rotate(180deg);
    animation: fadeLuxury 1.2s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeLuxury {
    to {
        opacity: 1;
        transform: translateY(-50%) rotate(180deg);
    }
}
@keyframes scrollPulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: bottom; }

}

/* ================= THREAD SECTION ================= */

.spring {
    padding: 100px 10%;
    text-align: center;
    position: relative;
}

.spring h2 {
    font-size: 28px;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.cat {
    cursor: pointer;
    font-size: 14px;
    position: relative;
}

.cat.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: black;
}

/* ================= PRODUCT GROUP SLIDER ================= */

.product-slider-wrapper {
    overflow: hidden;
}
#b{
    border: #000 solid;
}
.product-slider {
    display: flex;
    transition: transform 0.6s ease;
}

.product-group {
    min-width: 100%;
}

.group-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.70);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: background 0.2s, opacity 0.2s;
    user-select: none;
    z-index: 20;
}
.group-arrow:hover { background: #000; opacity: 1; }

.group-arrow-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.70);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: background 0.2s, opacity 0.2s;
    user-select: none;
    z-index: 20;
}
.group-arrow-left:hover { background: #000; opacity: 1; }

/* ================= PRODUCTS ================= */

.products {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: nowrap;
}

.card {
    width: 320px;
    background: white;
    overflow: hidden;
    transition: 0.4s ease;
}

.card:hover {
    transform: translateY(-6px);
}
.card h3 {
    margin-top: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}
.card p {
    color: #888;
    font-size: 13px;
    margin-top: 6px;
}

.card span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* IMAGE SLIDER INSIDE CARD */

.image-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

/* SLIDES CONTAINER */
.slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

/* IMAGES */
.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0; /* VERY IMPORTANT */
}

/* BUTTONS */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #111;
    border: none;
    z-index: 20;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s ease;
}

.slide-btn:hover {
    opacity: 1;
}

.prev { left: 10px; }
.next { right: 10px; }
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .hero-text h1 {
        font-size: 50px;
    }

    .fade-2026 {
        font-size: 70px;
    }


    .menu-btn {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }

    .products {
        flex-direction: column;
        align-items: center;
    }

    .group-arrow {
        right: 15px;
        font-size: 28px;
    }
}

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

.hide {
    opacity: 0 !important;
    pointer-events: none;
}

.quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    background: rgba(0,0,0,0.7);
    color: white;
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    cursor: pointer;
}

/* Reveal on hover */
.image-slider:hover .quick-view {
    transform: translateY(0);
}

/* ================= VERTICAL COLLECTION ================= */

.vertical-collection {
    position: absolute;
    right: 100px;
    top: 50%;
    writing-mode: vertical-rl;
text-orientation: mixed;
transform: none;
    transform-origin: right center;
    display: flex;
    gap: 20px;
    color: white;
    letter-spacing: 6px;
}

.vertical-collection span:first-child {
    font-size: 40px;
    font-weight: 900;
}

.vertical-collection span:last-child {
    font-size: 14px;
    font-weight: 400;
}

.content {
    position: absolute;
    right: -700px;
    top: 60%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 6px;
    color: #111;
    padding-bottom: 100px;
}

.sub {
    font-size: 140px; /* bigger 2026 */
    font-weight: 900;
    
}

.content h3 {
    font-size: 16px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 25px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    opacity: 0.85;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-4px);
    background: white;
    color: black;
}
.footer {
    background: white;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-socials a {
    color: #333;
    font-size: 20px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    color: rgb(131, 62, 148);
    transform: translateY(-4px);
}

.footer p {
    font-size: 12px;
    color: #888;
    letter-spacing: 2px;
}
.quantity-container {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-container button {
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s;
}

.quantity-container button:hover {
    background-color: #333;
}

.quantity-container .quantity {
    min-width: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}
.floating-cart {
    position: fixed;
    top: 40px;
    left: 0;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.25s ease;
    background: black;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}

.floating-cart i {
    font-size: 22px;
}

.floating-cart.active {
    transform: translateX(0);
}

/* Badge */
.cart-count {
    position: absolute;
    top: 6px;
    right: 6px;
    background: red;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
     transition: transform 0.15s ease;
}
/* ================= COLOR PICKER ================= */

/* ================= COLOR PICKER ================= */

.color-picker {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 15px;
}

.color-option {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
}

/* Base Colors */
.color-option.red {
    background: #c1121f;
}

.color-option.purple {
    background: #6a0dad;
}

.color-option.white {
    background: #f5f5f5;
    border: 1px solid #ddd;
}

/* ACTIVE STATE */
.color-option.active {
    transform: scale(1.4);
    z-index: 2;
}

/* Clean ring effect */
.color-option.active::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #000;
    opacity: 0.2;
}

/* Premium ring effect */
.color-option.active::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #000;
    opacity: 0.15;
}

/* Glow effect depending on color */
.color-option.red.active {
    box-shadow: 0 0 0 4px rgba(193,18,31,0.2);
}

.color-option.purple.active {
    box-shadow: 0 0 0 4px rgba(106,13,173,0.25);
}
/* ================= SIZE PICKER ================= */

.size-picker {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.size-option {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #111;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.size-option:hover {
    background: #111;
    color: white;
    transform: translateY(-2px);
}

/* Active */
.size-option.active {
    background: #111;
    color: white;
    transform: scale(1.1);
}
/* ================= SHAKE ANIMATION ================= */

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.4s ease;
}


/* ================= SLIDE POLISH ================= */

/* Make image transitions feel smoother */
.slides {
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}


/* ================= COLOR PICKER ENHANCEMENT ================= */

/* Slight hover grow */
.color-option:hover {
    transform: scale(1.15);
}

/* When active, stronger depth */
.color-option.active {
    transform: scale(1.5);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}


/* ================= SIZE PICKER ENHANCEMENT ================= */

/* Smooth press effect */
.size-option:active {
    transform: scale(0.95);
}

/* When active, slightly stronger */
.size-option.active {
    background: #111;
    color: white;
    transform: scale(1.15);
}


/* ================= ERROR VISUAL FEEDBACK ================= */

/* When shaking color or size container */
.color-picker.shake,
.size-picker.shake {
    animation: shake 0.4s ease;
}

/* Optional subtle red glow during error */
.color-picker.shake .color-option,
.size-picker.shake .size-option {
    box-shadow: 0 0 8px rgba(255,0,0,0.2);
}
html {
    scroll-behavior: smooth;
}
/* ================================================

/* ================================================
   MOBILE ≤ 768px — hide arrows, enable touch swipe
   ================================================ */
@media (max-width: 768px) {
  /* Hide both nav arrows — swipe handles it */
  .group-arrow,
  .group-arrow-left {
    display: none !important;
  }

  /* Products stack */
  .spring { padding: 80px 16px 80px; }
  .products {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .card {
    width: 100%;
    max-width: 420px;
  }

  /* Wishlist button sits cleanly under Add to Cart */
  .card .add-to-cart-btn,
  .card .add-to-wish-btn {
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }
  .card .add-to-wish-btn {
    margin-top: 8px;
  }

  /* Make product slider touch-friendly — no cursor override needed */
  .product-slider-wrapper {
    touch-action: pan-y pinch-zoom;
    cursor: default;
  }
}

/* ================================================
   TABLET 769px – 1024px — show arrows + allow swipe
   ================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Both arrows visible — inherit base style from above (position:absolute, same design) */
  .group-arrow,
  .group-arrow-left {
    display: flex !important;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  /* Touch-enabled slider */
  .product-slider-wrapper {
    touch-action: pan-y pinch-zoom;
  }

  /* Products wrap on tablet */
  .products {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }
  .card { width: 280px; }

  /* Wishlist under add-to-cart */
  .card .add-to-cart-btn,
  .card .add-to-wish-btn {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
  .card .add-to-wish-btn { margin-top: 8px; }
}
    display: block;
    box-sizing: border-box;
  }
  .card .add-to-wish-btn { margin-top: 8px; }
]

/* ================================================
   TOUCH-SCREEN LAPTOPS — pointer:coarse + hover:none
   Swipe works via pointer events in JS
   ================================================ */
@media (hover: none) and (pointer: coarse) {
  .product-slider-wrapper {
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }
}
