/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}
/* =========================
   NAVIGATION
========================= */

.lux-nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    z-index: 1000;
    border-bottom: 1px solid #333;
    transition: 0.3s ease;
}

.nav-inner {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 500;
    color: white;
	white-space: nowrap;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
	align-items: center;
	font-weight: bold;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
	font-weight: bold;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
}

/* Scroll effect */
.lux-nav.scrolled {
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.lux-nav.scrolled .brand,
.lux-nav.scrolled .nav-menu a,
.lux-nav.scrolled .nav-icons a {
    color: black;
}

/* =========================
   HERO
========================= */

.hero {
    margin-top: 90px;
    height: 90vh;
    background: url("images/closet2.jpeg") no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 80px;
    letter-spacing: 8px;
}

.hero p {
    margin-top: 20px;
    letter-spacing: 3px;
}

.hero-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 40px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
}

.hero-btn:hover {
    background: white;
    color: black;
}

/* =========================
   FEATURED
========================= */

.featured {
    padding: 120px 8%;
    background: #ffffff;
}

.featured-header {
    text-align: center;
    margin-bottom: 70px;
}

.featured-header h2 {
    font-size: 36px;
    letter-spacing: 4px;
}

.featured-header p {
    margin-top: 10px;
    color: #777;
}

/* GRID */

.featured-grid {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

/* PRODUCT */

.product {
    text-align: center;
    text-decoration: none;
    color: #111;
}

.product img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product:hover img {
    transform: scale(1.05);
}

.product h3 {
    margin-top: 15px;
}

.product span {
    color: #555;
}

/* =========================
   MOBILE RESPONSIVE
========================= */



    

/* LOOKBOOK */

.lookbook {
    padding: 100px 10%;
}

.lookbook-header {
    text-align: center;
    margin-bottom: 50px;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}


/* =========================
   EDITORIAL
========================= */

.editorial {
    padding: 140px 10%;
    background: #f8f8f8;
    text-align: center;
}

.editorial-text {
    max-width: 700px;
    margin: auto;
}

.editorial h2 {
    font-size: 40px;
    letter-spacing: 4px;
}

.editorial p {
    margin-top: 25px;
    line-height: 1.8;
    color: #555;
}

.editorial-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 12px 40px;
    border: 1px solid black;
    text-decoration: none;
    color: black;
}

.editorial-btn:hover {
    background:black;
	color: white;
	}
	/* =========================
   FOOTER
========================= */

.footer {
    background: #111;
    color: white;
    padding-top: 80px;
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-col p {
    color: #aaa;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

/* bottom copyright */

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaa;
}
	@media (max-width: 768px) {

    /* NAVBAR */
    .lux-nav {
        background: black;
    }

    .nav-inner {
        height: 99px;
        padding: 0 15px;
    }

    .brand {
        font-size: 30px;
    }

    .nav-icons a {
        font-size: 42px;
    }

    /* HAMBURGER */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        display: block;
    }

    /* MOBILE MENU */
    .nav-menu {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: black;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        display: none;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        font-size: 60px;
        letter-spacing: 1px;
    }

    .nav-menu.active {
        display: flex;
    }

    /* HERO */
    .hero h1 {
        font-size: 60px;
        letter-spacing: 3px;
    }

    .hero p {
        font-size: 60px;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }


		
}

	
	.add-look-cart{
    margin-top:15px;
    padding:10px 25px;
    border:none;
    background:black;
    color:white;
    cursor:pointer;
    letter-spacing:1px;
}

.add-look-cart:hover{
    background:#333;
}
	.about-page{
    padding:140px 12%;
    max-width:900px;
    margin:auto;
}

.about-page h1{
    font-size:40px;
	}
	
	.look-item video{
    width:100%;
    border-radius:15px;
    transition:0.4s ease;
}

.look-item video:hover{
    transform:scale(1.03);
}
.about{
padding:120px 10%;
background:#f8f8f8;
}

.about-container{
max-width:800px;
margin:auto;
text-align:center;
}

.about h1{
font-size:40px;
letter-spacing:4px;
margin-bottom:30px;
}

.about p{
margin-bottom:20px;
line-height:1.8;
color:#555;
}

.back-btn{
display:inline-block;
margin:20px;
padding:12px 35px;
border:1px solid black;
text-decoration:none;
color:black;
}

.back-btn:hover{
background:black;
color:white;
}
.video-modal{
position:fixed;
top:0;
left:0;
width:70%;
height:70%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:2000;
}

.video-modal video{
max-width:80%;
max-height:80%;
}

.close-modal{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

.scrollTopBtn{
    position: fixed;
    bottom: 40px;
    right: 30px;
    padding: 12px 16px;
    font-size: 18px;
    border: none;
    background: black;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    display: none;
}

.scrollTopBtn:hover{
    background: #444;
}


.modal{
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content{
    display: block;
    margin: auto;
    max-width: 600px;
    width: 80%;
}

.close{
    position: absolute;
    top: 40px;
    right: 60px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover{
    color: #ccc;
}
.hamburger{
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}
.hamburger span{
	width: 25px;
	height: 3px;
	background: white;
	display: block;
}

/* =========================
   PRODUCT PAGE UPGRADE
========================= */

.product-page {
    padding-top: 120px;
}

.product-container {
    display: flex;
    gap: 60px;
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* IMAGE SIDE */

.product-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 8px;
}

/* DETAILS SIDE */

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-details h1 {
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* SIZE */

.size-section h4 {
    margin-bottom: 10px;
}

#size-select {
    width: 200px;
    padding: 12px;
    border: 1px solid #ccc;
    margin-bottom: 25px;
}

/* BUTTON */

.add-to-cart {
    width: 220px;
    padding: 15px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
}

.add-to-cart:hover {
    background: #333;
}
.product-details {
    max-width: 500px;
}

	/* =========================
   CART PAGE
========================= */

.cart-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-img {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-info p {
    color: #555;
    margin-bottom: 5px;
}

.cart-info button {
    margin-top: 10px;
    padding: 8px 20px;
    border: none;
    background: black;
    color: white;
    cursor: pointer;
}

.cart-info button:hover {
    background: #333;
}

/* TOTAL */

#cart-total {
    margin-top: 30px;
    font-size: 22px;
    font-weight: bold;
}

@media (max-width: 768px) {

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-img {
        width: 100%;
        height: auto;
    }
}

/* =========================
   MOBILE FIXES (FINAL)
========================= */

@media (max-width: 768px) {

    /* PRODUCT PAGE */
    .product-container {
        flex-direction: column;
        gap: 30px;
    }

    .product-image img {
        height: auto;
    }

    .product-details h1 {
        font-size: 28px;
    }

    .price {
        font-size: 22px;
    }

    .product-details p {
        font-size: 16px;
    }

    .size-section h4 {
        font-size: 16px;
    }

    .add-to-cart {
        width: 100%;
    }

    #size-select {
        width: 100%;
    }

    /* CART PAGE */
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

.cart-img {
    width: 100%;
    max-width: 200px;
    height: auto;
}
    
}
