@font-face {
    font-family: 'PP Hatton';
    src: url('./fonts/PP Hatton Ultralight 200.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Hatton Regular';
    src: url('./fonts/hatton-regular.ttf') format('opentype');
    font-weight: 300;
    font-style: normal;
}


@font-face {
    font-family: 'PP Hatton';
    src: url('./fonts/PP Hatton Medium 500.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PP Hatton';
    src: url('./fonts/PP Hatton Bold 700.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Crimson Text', serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    z-index: 20;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: color 0.3s;
    padding-bottom: 8px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E8D5B1;
    box-shadow: 0 0 10px #E8D5B1;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover {
    color: #E8D5B1;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.mobile-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
}

.mobile-menu-button.open {
    position: fixed;
    right: 20px;
    top: 20px;
}


.mobile-menu-button div {
    width: 2rem;
    height: 0.2rem;
    background: #E8D5B1;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu-button.open div:first-child {
    transform: rotate(45deg);
}

.mobile-menu-button.open div:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-button.open div:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    padding: 8rem 2.5rem 3rem 2.5rem;
    text-align: left;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 15;
    list-style: none;
}

.mobile-menu.open {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.mobile-nav-links a {
    font-family: 'PP Hatton', serif;
    font-size: 2rem;
    display: block;
    text-transform: uppercase;
    padding: 1rem 0;
    letter-spacing: 0.5rem;
    color: #E8D5B1;
    text-decoration: none;
    transition: color 0.3s linear;
}

.mobile-nav-links a:hover {
    color: #fff;
}

.mobile-contact-btn {
    padding: 18px 40px;
    border: 2px solid #E8D5B1;
    background: transparent;
    color: #E8D5B1;
    text-decoration: none;
    text-align: center;
    font-family: 'PP Hatton', serif;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    transition: all 0.3s;
}

.mobile-contact-btn:hover {
    background: #E8D5B1;
    color: #000;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #090909;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Hatton Regular', serif;
    font-weight: 300;
    font-size: clamp(3.5rem, 10vw + 1rem, 8rem);
    letter-spacing: clamp(8px, 2vw, 15px);
    margin-bottom: 20px;
    /* color: #d3ab55d2; */
    color: #E8D5B1;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 12px;
    margin-bottom: 50px;
    color: #ccc;
    opacity: 0.9;
    text-transform: uppercase;
}

.deco-line {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E8D5B1, transparent);
    margin: 30px auto;
}

.btn-deco {
    display: inline-block;
    padding: 18px 40px;
    border: 2px solid #E8D5B1;
    /* border: 2px solid #b6934a; */
    background: transparent;
    color: #E8D5B1;
    /* color: #b6934a; */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-deco::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #E8D5B1;
    /* background: #b6934a; */
    transition: left 0.3s;
    z-index: -1;
}

.btn-deco:hover::before {
    left: 0;
}

.btn-deco:hover {
    color: #000;
}

.section {
    padding: 120px 0;
    overflow: hidden;
}

.products-section {
    background: #0a0a0a;
    color: #fff;
}

#highlights.products-section,
#reviews.products-section {
    background: #090909;
}

.section-title {
    text-align: center;
    font-family: 'PP Hatton', cursive;
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    letter-spacing: clamp(4px, 1.5vw, 8px);
    margin-bottom: 60px;
}

.product-card {
    color: white;
    text-decoration: none;
    background: #000;
    border: 1px solid #333;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.products-grid {
    margin-left: 50px;
    margin-right: 50px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin-top: 40px;
}

.products-grid .product-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.products-grid .product-card:hover {
    transform: translateY(-5px);
}

.sold-out-tag {
    position: absolute;
    top: 22px;
    left: -38px;
    transform: rotate(-45deg);
    background: #e1e1e1;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 0;
    width: 150px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 25px;
    background-color: #111;
    padding: 20px;
    border: 1px solid #444;
    overflow: hidden;
}

.product-image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-image-container.video-enabled {
    padding: 0;
    border: 1px solid #444;
    background-color: #000;
}

.product-image-container iframe,
.product-image-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.product-name {
    text-align: left;
    font-family: 'PP Hatton', serif;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-description {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.7;
    flex-grow: 1;
    font-family: 'Crimson Text', serif;
    font-weight: 200;
}
.product-price {
    color: #e6d0a7;
    font-size: 1.2rem;
    text-align: left;
    opacity: 0.7;
    flex-grow: 1;
    font-family: 'Crimson Text', serif;
    font-weight: 200;
}


.buy-button {
    background: transparent;
    border: 2px solid #E8D5B1;
    /* border: 2px solid #b6934a; */
    color: #E8D5B1;
    /* color: #b6934a; */
    /* padding: 18px 20px; */
    /* width: 100%; */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}

.sold-out-button {
    background: #a5a4a1;
    border: 2px solid #a5a4a1;
    /* border: 2px solid #b6934a; */
    color: black;
    /* color: #b6934a; */
    /* padding: 18px 20px; */
    /* width: 100%; */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #E8D5B1;
    /* background: #b6934a; */
    transition: left 0.3s;
    z-index: -1;
}

.buy-button:hover {
    color: #000;
}

.buy-button:hover::before {
    left: 0;
}

.carousel-container {
    position: relative;
}

.carousel-container.second {
    margin-top: 30px;
}


.carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
}
.cv-v1{
    margin-left: 80px;
    margin-right: 80px;
    width: auto;
}
.ct-v1{
    margin-top: 10px;
    margin-bottom: 10px;
}

.carousel-slide {
    flex-shrink: 0;
    width: calc((100% - 90px) / 4);
}
.carousel-slide-3 {
    flex-shrink: 0;
    width: calc((100% - 90px) / 3);
}
.carousel-slide-2 {
    flex-shrink: 0;
    width: calc((100% - 90px) / 2);
}


.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #E8D5B1;
    font-size: 28px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-button:hover{
    background: rgba(232, 213, 177, 0.15);
    outline: none;
}

.carousel-button.prev {
    left: 0px;
}

.carousel-button.next {
    right: 0px;
}

.review-card {
    margin: 1px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.review-card:hover{
    border: 1px solid #e8d5b16e;
    cursor: default;
}

.reviewer-name {
    font-family: 'Montserrat', sans-serif;
    color: #E8D5B1;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-description {
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}

.star-rating {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #E8D5B1;
    font-size: 1.3rem;
    margin-right: 5px;
}

.star-rating .filled {
    color: #E8D5B1;
}

.star-rating .empty {
    color: rgba(255, 255, 255, 0.3);
}

.reviews-carousel .carousel-button {
    display: none;
}

.reviews-carousel .carousel-track.scrolling-active {
    animation: continuous-scroll var(--scroll-duration) linear infinite;
    animation-play-state: running;
}
.reviews-carousel .carousel-track.scrolling-active:hover{
    animation-play-state: paused;
}

@keyframes continuous-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(var(--scroll-width));
    }
}

.about-section {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    color: #fff;
}

.about-content {
    display: grid;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content-1 {
    grid-template-areas: "text visual";
    grid-template-columns: 1fr 1fr;
}

.about-content-2 {
    grid-template-areas: "visual text";
    grid-template-columns: 1fr 1fr;
}

.about-text {
    grid-area: text;
}

.about-text-title{
    margin: 0;
    text-align: center;
    font-family: 'PP Hatton', cursive;
    font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
    margin-bottom: 100px;
    margin-top: 0px;

}

.about-text h2 {
    font-family: 'PP Hatton', cursive;
    font-weight: 500;
    font-size: clamp(1.5rem, 4vw + 1rem, 2.5rem);
    letter-spacing: 6px;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 200;
}

.about-visual {
    grid-area: visual;
    height: 500px;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
}

.footer {
    margin-left: 20px;
    margin-right: 20px;
    background: #000;
    border-top: 1px solid #333;
    padding: 40px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact,
.footer-social {
    flex: 1;
    min-width: 280px;
}

.footer-center {
    text-align: center;
}

.footer-contact {
    text-align: left;
}

.footer-social {
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.contact-item a:hover {
    color: #E8D5B1;
}

.contact-item i {
    color: #E8D5B1;
    margin-right: 12px;
}

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

.social-icons a {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #E8D5B1;
}

.footer-logo {
    font-family: 'PP Hatton', cursive;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: 8px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copyright {
    letter-spacing: 2px;
    opacity: 0.7;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

/* Start Carousel CSS */
#highlightsCarousel {
    max-width: 1200px;
    margin: 0 auto;
}

.splide__slide {
    display: flex;
    justify-content: center;
}

.product-card {
    display: block;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background: #000;
    overflow: hidden;
    position: relative;
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #111;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.splide__arrow {
    /* background: transparent; */
    background: #E8D5B1;
    color: #E8D5B1;
    border: none;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.splide__arrow:hover {
    background: rgba(232, 213, 177, 0.2);
}

.splide__arrow--prev {
    left: -25px;
}

.splide__arrow--next {
    right: -25px;
}

@media (max-width: 1024px) {
    .splide__arrow {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
        border-radius: 1%;
    }
}

@media (max-width: 640px) {
    .splide__arrow {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
    }
}
/* END CAROUSEL CSS */

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "text";
    }

    .about-content-2 {
        grid-template-areas:
            "visual"
            "text";
    }

    .about-visual {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .about-content {
        margin-left: 100px;
        margin-right: 100px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact,
    .footer-social {
        text-align: center;
        order: 2;
    }

    .contact-item,
    .contact-item a {
        justify-content: center;
    }

    .footer-center {
        order: 1;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .carousel-slide {
        width: calc(100% - 40px);
        margin: 0 20px;
    }

    .carousel-track {
        gap: 0;
    }

    .carousel-button {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .carousel-button.prev {
        left: -20px;
    }

    .carousel-button.next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }
}

@media (min-width: 769px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-button {
        display: none;
    }

    .mobile-menu {
        display: none;
    }
}
