@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,800;1,800&display=swap');

*{
    font-family: "Mulish", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #141414;
}


p, h1, h2, h3{
    font-family: "Mulish", sans-serif;
    /* color: #fada5e; */
    color: #e6e6e6;
    background: transparent;
}

button{
    padding: 9px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease 0s;
    background-color: #141414;
}

li, a, button{
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fada5e;
    text-decoration: none;
    background-color: #141414;
}

.color-change:hover{
    color: #141414;
}

.new-nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.new-nav ul{
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
}

.diff-button{
    padding: 9px 25px;
    border: 1px solid white;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease 0s;
    /* background-color: white; */
    color: #e6e6e6;
}

.diff-button:hover {
    background-color: #e6e6e6;
    color: #141414;
}

#subscribe-btn:hover{
    background-color: #fada5e;
    border: none;
}

/* --- Wishlist Button Styles --- */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

.wishlist-icon {
    width: 24px;
    height: 24px;
    stroke: #ffffff; /* White outline */
    stroke-width: 1.5;
    fill: none; /* Empty inside */
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.wishlist-btn.active .wishlist-icon {
    fill: #E53E3E; /* Red fill when active */
    stroke: #E53E3E; /* Red outline when active */
}

.wishlist-btn:hover .wishlist-icon {
    fill: rgba(229, 62, 62, 0.2); /* Faint red fill on hover */
}

.promo{
    background-color: #282828;
}

.navigation{
    margin: auto;
    /* margin-top: -10px; */
    align-content: center;
    background-color: #282828;
    font-size: 10px;
}

.inner-shirt{
    background: transparent;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

.inner-shirt img{
    background: transparent;
    width: 98%;
    height: auto;
}

.other-inner-shirt{
    background: transparent;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

.other-inner-shirt img{
    background: transparent;
    width: 103%;
    height: auto;
}

.different-shirt{
    background: transparent;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

.different-shirt img{
    background: transparent;
    width: 113%;
    height: auto;
    margin: -22% 0px -10%;
}

.female-inner-shirt{
    background: transparent;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

.female-inner-shirt img{
    background: transparent;
    width: 95%;
    height: auto;
}


/* NEW CSS */
header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #141414;
    height: 5vh;
    position: relative;
}

.navgation{
    text-align: center;
}

header a {
    display: block; /* Make the anchor an inline-block for better spacing */
}

.logo {
    cursor: pointer;
    max-width: 80px;
    width: 100%; /* Allow it to scale down */
    height: auto; /* Maintain aspect ratio */
    background-color: #141414;
}

.header-logo{
    flex-shrink: 0;
    width: 50px;
}

.nav_links {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin-left: 5%;
    align-items: center;
    justify-content: center;
    background-color: #141414;
}

.nav_links div {
    padding: 0 15px; /* Adjust padding */
    background-color: #141414;
}

.nav_links li {
    padding: 0; /* Remove padding from li, let the div handle it */
}

.nav_links li a,
.nav_links div a {
    transition: all 0.3s ease 0.1s;
    display: block; /* Make the anchor fill the div for easier clicking */
    padding: 10px 0; /* Add vertical padding */
}

.nav_links li a:hover,
.nav_links div a:hover {
    color: rgba(245, 245, 245, 1);
}

.side-buttons {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    background-color: #141414;
}

.side-buttons a {
    margin: 0;
}

.side-buttons button {
    padding: 8px; /* Adjust button padding */
    border-radius: 50%; /* Make them circular */
}

.icon-1,
.icon-2,
.icon-3 {
    width: 20px;
    height: auto;
    display: block; /* Ensure the SVG scales properly within the button */
    background-color: transparent; /* Inherit background from button */
}

.side-buttons .eta button {
    position: relative; /* Needed for positioning the counter */
}

.cart-counter {
    position: absolute;
    top: 2px;
    right: -13px;
    background-color: #fff; /* Red color */
    color: #000;
    border-radius: 50%;
    padding: 2px 3px;
    font-size: 12px;
    font-weight: bold;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
}

.cart-counter.visible {
    opacity: 1;
    transform: scale(1);
    display: block;
}

/* --- Price Display Styling --- */
.price {
    font-size: 1.1rem;
    font-weight: 500;
}

.price .original-price {
    text-decoration: line-through;
    color: #ef4444; /* A muted red */
    font-size: 0.9em;
    margin-right: 0.5rem;
}

.price .current-price {
    color: white;
    font-weight: 600;
}

/* --- Delivery Options Styling --- */
.delivery-options-group {
    margin-bottom: 1.5rem;
}
.delivery-options-group > label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.delivery-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--gray-button-bg);
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    cursor: pointer;
}
.delivery-option input[type="radio"] {
    margin-right: 0.75rem;
}
.delivery-option label {
    flex-grow: 1;
    cursor: pointer;
}

/* Media query for smaller screens (e.g., tablets and phones) */
@media screen and (max-width: 768px) {
    header {
        /* flex-direction: column;
        align-items: center;
        text-align: center; */
        justify-content: space-between;
        padding: 10px;
        height: 5vh;
    }

    .logo{
        order: 0;
        max-width: 60px;
    }

    .mobile-nav-links li a{
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .side-buttons {
        display: flex;
        align-items: center;
        order: 1;
        margin-left: auto;
        margin-top: 0;
    }

    .side-buttons a button img{
        width: 18px;
    }

    .dropdown-button{
        font-size: 1.5rem;
        padding: 5px;
    }

    header a {
        margin-bottom: 10px; /* Add space below the logo */
    }

    .header-logo{
        display: flex;
        align-items: center;
        align-self: center;
        width: 10%;
    }

    .nav_links {
        flex-direction: column; /* Stack navigation links vertically */
        width: 100%; /* Take full width */
    }

    .nav_links div {
        display: block; /* Make each div a block element */
        padding: 10px 0;
        text-align: center;
    }

    .nav_links li {
        display: block; /* Make each list item a block element */
        padding: 0;
    }
}

.loop-videos {
    width: 100%;
    display: block; /* Prevent extra space below the video */
}

/* New container for the video and overlay elements */
.video-container-desktop {
    position: relative;
    height: 50vh;
    overflow: hidden;
}
.video-container-mobile {
    display: none;
}

@media screen and (max-width: 768px){
    .video-container-desktop {
    display: none;
    }

    .video-container-mobile{
        position: relative;
        display: block;
        width: 100%;
        height: auto;
    }
}

.logo-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%; /* Adjust as needed */
    max-height: 80%;
    height: auto;
    background: none;
    opacity: 0.8;
    z-index: 1; /* Ensure it's above the video */
}

.shop {
    position: absolute;
    top: 70%; /* Adjust vertical position */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem; /* Use relative units */
    padding: 15px 30px;
    width: auto; /* Adjust width based on content */
    height: auto;
    margin-top: 0; /* Remove fixed margin-top */
    text-decoration: none;
    color: whitesmoke;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid whitesmoke;
    border-radius: 200px;
    box-shadow: inset 0 0 0 0 #141414;
    z-index: 1; /* Ensure it's above the video */
}

@media screen and (max-width: 768px) {
    .logo-middle {
        max-width: 60%; /* Adjust size on smaller screens */
    }

    .shop {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}

.home-shop {
    background-color: #141414;
    text-align: center;
    padding: 20px; /* Add some padding around the section */
}

.heaven_guard {
    display: flex;
    justify-content: center; /* Center the inner divs */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.clothes-grid{
    background-color: #141414;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 3 equal columns */
    grid-template-rows: repeat(2, 1fr);    /* Creates 3 equal rows */
    gap: 10px;                             /* Adds spacing between grid items */
    width: 100%;                            /* Adjust as needed */
    height: 100%;
}

.clothes-container{
    border: 1px solid aquamarine;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
}

.grid-container {
    background: transparent;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 40px;
    width: 100%;
}

.grid-cell {
    background: transparent;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-item {
    background: transparent;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.grid-label {
    background: transparent;
    margin-top: 8px;
    color: white;
    font-size: 1rem;
    text-align: center;
}

@media only screen and (max-width: 768px){
    .grid-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

.signup-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 88vh;
    padding: 20px;
    background-color: #141414;
}

.signup-split{
    display: flex;
    max-width: 1200px;
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

.signup-left,
.signup-right{
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.signup-right-text {
    text-align: center;
    margin-bottom: 20px;
    background: transparent;
}

.signin-right-text {
    text-align: center;
    margin-bottom: 20px;
    background: transparent;
}

.signup-right-text, form{
    background: transparent;
}

.signup-right-text h1, .signup-right-text p, .signin-right-text h1{
    background: transparent;
}

.signup-right {
    background-color: #1a1a1a;
    color: #e6e6e6;
    gap: 20px;
    height: 100vh;
}

.signup-right p{
    font-size: 14px;
    background: transparent;
}

.signup-right form{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    background: transparent;
}

.signup-right form input{
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #222;
    color: #e6e6e6;
}

.signup-right form button{
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fada5e;
    color: #141414;
    cursor: pointer;
}

.signup-right form input{
    background: transparent;
}

.signup-left{
    background-color: #1a1a1a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add or modify these styles for mobile responsiveness */
@media screen and (max-width: 768px) {
    .signup-split {
        flex-direction: column;
    }

    .signup-left {
        display: none; /* Hide the left side on mobile */
    }

    .signup-right {
        flex: 1 1 100%; /* Ensure the right side takes full width */
        height: auto;
    }
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corner-img{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    background: transparent;
}

.login-option{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 10px;
}

.login-option p{
    margin: 0;
    font-size: 12px;
    background: transparent;
}

.login-option button{
    background-color: #fada5e;
    color: #141414;
    border-radius: 50px;
    border: none;
}

.inner-sweats {
    background: transparent;
    text-align: center;
    flex-basis: calc(50% - 40px); /* Two items per row on larger screens */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.inner-sweats img {
    background: transparent;
    width: 50%;
    max-width: 100%; /* Make images responsive within their container */
    height: auto;
}

.confirm-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 10px;
    height: 250px;
    width: auto;
    margin: 18%;
}

.confirm-container a{
    display: block;
    margin-top: 16px;
}

.confirm-container a button{
    color: #fff;
}

.confirm-container a button:hover{
    color: #fada5e;
}


/* Media query for smaller screens (one item per row) */
@media screen and (max-width: 600px) {
    .inner-sweats {
        flex-basis: 100%; /* One item per row */
    }
}

.split {
    display: flex;
    height: auto;
    flex-direction: row;
    background-color: #e6e6e6;
}

.left-side,
.right-side {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6e6e6;
    min-height: 300px; /* Ensure a minimum height */
}

.left-side-text {
    padding: 20px;
    background-color: #e6e6e6;
    text-align: center; /* Center text within the left side */
}

.left-side-text h1, .left-side-text p{
    color: #141414;
}

.right-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-side img {
    max-width: 100%; /* Make image responsive */
    max-height: 50vh; /* Keep a maximum height */
    object-fit: contain; /* Or cover, depending on desired effect */
    background-color: #e6e6e6;
    border-radius: 10px;
}

#lookbook-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    background-color: #141414;
}

@media screen and (max-width: 768px) {
    .split {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        width: 100%;
        min-height: auto; /* Adjust min-height for stacked layout */
        max-height: none; /* Remove max-height when stacked */
    }

    .right-side img {
        max-height: none; /* Remove max-height when stacked */
        object-fit: cover; /* Adjust object-fit for stacked layout */
    }

    .left-side {
        overflow-y: auto;
    }
}

.newsletter {
    background-color: #141414;
    text-align: center;
    padding: 30px 15px; /* Add horizontal padding */
}

.newsletter h1 {
    font-size: 1.8rem; /* Use relative units */
}

.newsletter p {
    font-size: 0.8rem; /* Use relative units */
}

.newsletter button {
    padding: 12px 30px;
    font-size: 1rem; /* Use relative units */
}

.desktop-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center; /* Ensure it's displayed on larger screens */
}

.mobile-nav {
    display: none; /* Hide it by default on larger screens */
    background-color: transparent;
}

.dropdown-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: none; /* Initially hidden on larger screens */
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #141414;
    display: none; /* Initially hidden */
    position: absolute;
    top: 100%; /* Position below the header */
    left: 0;
    width: 100%;
    z-index: 10; /* Ensure it's above other elements */
    text-align: center; /* Center the links */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow */
}

.mobile-nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid #282828; /* Optional separator */
}

.mobile-nav-links li:last-child {
    border-bottom: none; /* Remove border from the last item */
}

.mobile-nav-links li a {
    display: block; /* Make the entire li clickable */
    padding: 10px 20px;
    text-decoration: none;
    color: #fada5e;
    transition: background-color 0.3s ease;
}

.mobile-nav-links li a:hover {
    background-color: #282828;
}

.mobile-nav-links.open{
    display: block;
}

/* Media query for smaller screens (e.g., tablets and phones) */
@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none; /* Hide desktop navigation */
    }

    /* .mobile-nav {
        display: flex;
        align-items: center;
    } */

    .mobile-nav {
        display: flex; /* Keep mobile nav hidden until toggled */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #141414;
        z-index: 10;
        text-align: center;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    .dropdown-button {
        display: block; /* Show the dropdown button */
        margin-left: auto; /* Push it to the right */
    }

    /* .side-buttons {
        margin-left: 10px;
    } */
}

/* --- Fade-on-Scroll Animation --- */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Search Overlay Styles --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    line-height: 1;
}

.search-modal {
    width: 90%;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.5rem;
    color: #fff;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #555;
    text-align: center;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-bottom-color: #facc15; /* Yellow */
}

.search-results {
    margin-top: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #e0e0e0;
    padding: 15px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.search-result-item:hover {
    background-color: #2a2a2a; /* A solid, slightly lighter dark color */
}

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.search-result-item-info {
    /* Ensure this container is transparent */
    background-color: transparent;
}

.search-result-item-info h4,
.search-result-item-info p,
.search-result-item-info img {
    margin: 0;
    /* Ensure text elements are transparent */
    background-color: transparent; 
}

.search-result-item-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.search-result-item-info p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.email-input,
gmp-place-autocomplete::part(input) {
    width: 100%;
    background-color: var(--gray-button-bg);
    color: var(--text-light);
    border-radius: 0.375rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    outline: none;
    box-sizing: border-box; /* Important for padding */
    /* Add font styles to ensure consistency */
    /* font-family: 'Inter', sans-serif; */
    font-size: 1rem;
}

/* Style for the text inside our new accessible label */
.label-text {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    background-color: transparent;
}

/* --- Size Charts Page Styles --- */
.size-charts-container {
    padding: 20px;
}

.size-chart-table {
    width: 80%;
    border-collapse: collapse;
    margin-top: 20px;
}

.size-chart-table th,
.size-chart-table td {
    border: 1px solid #e6e6e6;
    padding: 10px;
    text-align: center;
}

.size-chart-table th {
    background-color: #282828;
}

.size-chart-table p {
    background: transparent;
}