/* -- Hero section ------------------------------------------------------------- */
.hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 180px 10vw 80px 10vw;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 0.85;
    margin-bottom: 40px;
    text-shadow:
        2px 2px 0px rgba(0, 0, 0, 0.8),
        4px 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* -- Value Propositions (Spinning Animation & Color Transition) --------- */
.value-propositions {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    min-height: 150vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.vp-center-text {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.vp-center-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: inherit;
    margin: 0;
    letter-spacing: 2px;
}

.vp-spin-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    margin-top: -400px;
    margin-left: -400px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
    pointer-events: none;
}

.circular-text-svg {
    width: 100%;
    height: 100%;
}

.circular-text-svg text {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 900;
    fill: var(--accent);
    letter-spacing: 5.5px;
}

.vp-outer-icons {
    width: 1000px;
    height: 1000px;
    margin-top: -500px;
    margin-left: -500px;
    z-index: 0;
}

.vp-outer-icons img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    margin-top: -55px;
    margin-left: -55px;
    object-fit: contain;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
}

.vp-outer-icons img:nth-child(1) {
    transform: rotate(0deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(2) {
    transform: rotate(30deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(3) {
    transform: rotate(60deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(4) {
    transform: rotate(90deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(5) {
    transform: rotate(120deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(6) {
    transform: rotate(150deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(7) {
    transform: rotate(180deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(8) {
    transform: rotate(210deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(9) {
    transform: rotate(240deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(10) {
    transform: rotate(270deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(11) {
    transform: rotate(300deg) translateY(-500px);
}

.vp-outer-icons img:nth-child(12) {
    transform: rotate(330deg) translateY(-500px);
}

@media (max-width: 768px) {
    .vp-spin-ring.text-ring {
        width: 500px;
        height: 500px;
        margin-top: -250px;
        margin-left: -250px;
    }

    .vp-outer-icons {
        width: 650px;
        height: 650px;
        margin-top: -325px;
        margin-left: -325px;
    }

    .vp-outer-icons img {
        width: 70px;
        height: 70px;
        margin-top: -35px;
        margin-left: -35px;
    }

    /* Re-map orbital radius for mobile */
    .vp-outer-icons img:nth-child(1) {
        transform: rotate(0deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(2) {
        transform: rotate(30deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(3) {
        transform: rotate(60deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(4) {
        transform: rotate(90deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(5) {
        transform: rotate(120deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(6) {
        transform: rotate(150deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(7) {
        transform: rotate(180deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(8) {
        transform: rotate(210deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(9) {
        transform: rotate(240deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(10) {
        transform: rotate(270deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(11) {
        transform: rotate(300deg) translateY(-325px);
    }

    .vp-outer-icons img:nth-child(12) {
        transform: rotate(330deg) translateY(-325px);
    }

    .value-propositions {
        min-height: 90vh;
    }
}

/* -- Featured Products Carousel ----------------------------------------------- */
.featured-drops {
    padding: 100px 0 150px 0;
    min-height: 100vh;
    text-align: center;
    background-color: transparent;
    background-image: radial-gradient(var(--divider-color) 1px, transparent 1px);
    background-size: 25px 25px;
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

#featuredHeading {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.carousel-container {
    position: relative;
    width: 70%;
    max-width: 1600px;
    margin: 0 auto;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item {
    position: absolute;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Base image/placeholder styling */
.carousel-img-link {
    display: block;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #fff;
    overflow: hidden;
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #e6dfd3 0%, #cfc6b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #555;
    opacity: 0.6;
}

/* Metadata content container */
.carousel-item-content {
    margin-top: 25px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    width: 120%;
}

.carousel-item-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--accent);
    line-height: 1.2;
}

.carousel-item-content p {
    font-size: 0.95rem;
    color: rgba(244, 240, 234, 0.7);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-shop {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
}

.btn-shop:hover {
    background: #ba2b2b;
    transform: translateY(-2px);
}

/* Position States computed by JS */
.carousel-item.active {
    z-index: 10;
    opacity: 1;
    transform: scale(1.15) translateX(0);
    pointer-events: auto;
}

.carousel-item.active .carousel-item-content {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.prev-1 {
    z-index: 5;
    opacity: 0.65;
    transform: scale(0.85) translateX(-140%);
    cursor: pointer;
    pointer-events: auto;
}

.carousel-item.next-1 {
    z-index: 5;
    opacity: 0.65;
    transform: scale(0.85) translateX(140%);
    cursor: pointer;
    pointer-events: auto;
}

.carousel-item.prev-2 {
    z-index: 3;
    opacity: 0.25;
    transform: scale(0.65) translateX(-270%);
    cursor: pointer;
    pointer-events: auto;
}

.carousel-item.next-2 {
    z-index: 3;
    opacity: 0.25;
    transform: scale(0.65) translateX(270%);
    cursor: pointer;
    pointer-events: auto;
}

/* Nav Buttons */
.carousel-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-header);
    cursor: pointer;
    z-index: 20;
    padding: 20px;
    opacity: 0.4;
    transition: opacity 0.3s, transform 0.3s, color 0.3s;
}

.carousel-nav:hover {
    opacity: 1;
    color: var(--bg-header);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.left {
    left: 10%;
}

.carousel-nav.right {
    right: 10%;
}

@media (max-width: 768px) {

    .carousel-item.prev-1,
    .carousel-item.next-1 {
        opacity: 0;
        pointer-events: none;
    }

    .carousel-nav.left {
        left: 0;
    }

    .carousel-nav.right {
        right: 0;
    }
}

/* -- Product Catalog  ------------------------------------- */
.product-catalog {
    padding: 100px 5vw;
    background-color: transparent;
}

.catalog-header {
    text-align: center;
    margin-bottom: 60px;
}

.catalog-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 600px);
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.catalog-card {
    position: relative;
    display: block;
    height: 750px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background-color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.catalog-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.catalog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 20%, transparent 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.catalog-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.catalog-content h3 {
    margin: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.catalog-arrow {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Interactivity (Hover Overrides) */
.catalog-card:hover .catalog-image-wrapper img {
    transform: scale(1.08);
}

.catalog-card:hover .catalog-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.05) 100%);
}

.catalog-card:hover .catalog-content h3 {
    transform: translateX(10px);
}

.catalog-card:hover .catalog-arrow {
    opacity: 1;
    transform: translateX(8px);
}

@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card {
        height: 450px;
    }

    .catalog-header h2 {
        font-size: 2.5rem;
    }
}

/* -- Ticker Divider ----------------------------------------------------------- */
.ticker-bar {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    background-color: var(--accent);
    color: #ffffff;
    height: 50px;
    display: flex;
    align-items: center;
}

.ticker-wrapper {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-ticker 30s linear infinite;
}

.ticker-list {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-list span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
}

.ticker-list span::after {
    content: "\2022";
    color: rgba(255, 255, 255, 0.4);
    margin-left: 40px;
    font-size: 18px;
    vertical-align: middle;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}