/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== BODY ===== */
body{
    padding-top:100px;
}

/* ===== HEADER ===== */
header{
    background: rgb(253, 231, 143);
    padding:12px 20px;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
}

/* ===== CONTAINER ===== */
.container{
    width:100%;              /* 👈 full width */
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
    padding:0 20px;
}


.logo{
    font-size: 36px;

    /* Calligraphy font */
    font-family: 'Parisienne', cursive;
    
    

    /* Slight elegance */
    text-transform: capitalize;
    font-weight:900;
    letter-spacing:4px;
    text-transform:uppercase;

    color:black;                         /* 👈 fill */
         /* 👈 white outline */

 
    text-shadow: none
}


nav{
    flex:1;
    display:flex;
    justify-content:center;
    

}

/* ===== DESKTOP NAV ===== */
nav ul{
    display:flex;
    list-style:none;
    gap:60px;
    align-items:center;
   
    
}


nav ul li a{
    color:black;
    text-decoration:none;
    font-size:18px;
    font-weight: 600;
    transition:0.3s;
}

  /* ===== MENU ICON ===== */
  .menu-toggle {
    font-size: 22px;
    cursor: pointer;
    display: none;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      position: fixed;
    }
  }

nav ul li a:hover{
    color:black;  /* glow color */

    text-shadow:
        0 0 6px white,
        0 0 10px white,
        0 0 20px white;
    
}



.desktop-btn{
    background:black;
    color:white;
    padding:10px 22px;
    border-radius:3px;
    font-weight: 600;
    text-decoration:none;
}
.mobile-btn{
   
    display:none;
}
/* ===== MENU ICON ===== */
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

.close-menu{
   display: none;
}

/* ===== HERO SECTION ===== */
.hero{
    position: relative;
    height: 70vh;
    overflow: hidden;
}

/* ===== SLIDES ===== */
.slides{
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active{
    opacity: 1;
}

/* ===== CONTENT ===== */
.hero-content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: rgb(255, 255, 255);
    z-index: 2;
}

.hero-content h1{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p{
    margin: 15px 0;
    font-size: 28px;
    -webkit-text-stroke: 1px black;
}

/* ===== BUTTONS ===== */
.hero-buttons{
    margin-top: 20px;
}

.btn-dark{
    border: 1px solid white;
    background: black;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-light{
    border: 1px solid white;
    color: white;
    background: #111;
    padding: 12px 25px;
    text-decoration: none;
}

/* SECTION */
.products{
    padding:80px 20px;
    text-align:center;
    background:#f8f8f8;
}

.products h2{
    font-size:28px;
}

.subtitle{
    margin:10px 0 30px;
    color:#555;
}

/* SLIDER */
.slider{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.slider-window{
    overflow:hidden;
}

/* TRACK */
.product-container{
    display:flex;
    transition:0.5s ease;
    gap: 20px;
}

/* CARD */
.product-card{
    
    padding:15px;
    box-sizing:border-box;
    border-radius:15px;   /*  rounded card */
    overflow:hidden;      /*  VERY IMPORTANT (keeps image inside rounded corners) */
    background:rgb(249, 247, 220);
    
}

.product-card img{
    width:100%;
    aspect-ratio: 4/3;
    object-fit:cover;
    border-radius:10px;
}

.product-card h3{
    margin:10px 0;
}

.price{
    font-weight:bold;
}

.btn{
    display:inline-block;
    margin-top:10px;
    background:black;
    color:white;
    padding:8px 15px;
    text-decoration:none;
    border-radius:5px;
}








/* ===== ABOUT SECTION ===== */
.about{
    padding:50px 20px;
    background:beige;
}

/* CONTAINER */
.about-container{
    max-width:900px;

    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/* TEXT SIDE */
.about-text{
    flex:1;
  
}

.about-text h2{
    font-size:32px;
    margin-bottom:10px;
}

.about-text h4{
    font-size:18px;
    color:#555;
    margin-bottom:15px;
}

/* LINE */
.line{
    width:60px;
    height:2px;
    background:black;
    margin:15px 0;
}

/* PARAGRAPH */
.about-text p{
    color:#444;
    line-height:1.6;
    margin-bottom:20px;
}

/* BUTTON */
.about-btn{
    display:inline-block;
    background:black;
    color:white;
    padding:10px 20px;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.about-btn:hover{
    background:#333;
}

/* IMAGE */
.about-image{
    display: flex;
    justify-content: flex-end;
}

.about-image img{
    width:320px;
    height: 200px;

    border-radius:12px;
    object-fit:cover;
}



/* ===== FEATURES SECTION ===== */
.features{
    padding:60px 20px;
    text-align:center;
    background:#f5f5f5;
}

.features h2{
    font-size:26px;
    letter-spacing:2px;
}

.subtitle{
    color:#777;
    margin:10px 0 40px;
}

/* CONTAINER */
.features-container{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

/* CARD */
.feature{
    max-width:220px;
}

/* ICON CIRCLE */
.icon{
    width:70px;
    height:70px;
    margin:0 auto 15px;
    border-radius:50%;
    background:#eae3d2;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:black;
}

/* TEXT */
.feature h3{
    margin:10px 0 5px;
    font-size:16px;
}

.feature p{
    font-size:14px;
    color:#666;
}
.reviews{
    padding:60px 50px;
    
    background:#fbf5d2;
    text-align:center;
}
.reviews h2
{
    margin-top: -1.5%;
    padding-bottom: 25px;
}
.review-slider{
    overflow:hidden;
    width:100%;
    padding: 0 10px;
    margin: auto;
}

.review-track{
    display:flex;
    gap:20px;
    transition:0.5s;
   
   
}

/* CARD */

.review-card{
    flex:0 0 calc(50% - 10px);
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-sizing:border-box;
}
/* TOP SECTION */
.review-top{
    display:flex;
    align-items:center;
    gap:15px;
}

/* IMAGE */
.review-top img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

/* NAME */
.review-top h3{
    margin:0;
    font-size:16px;

}

/* STARS */
.stars{
    color:#f4b400;
    font-size:14px;
}

/* TEXT */
.review-card p{
    margin-top:15px;
    color:#444;
    font-size:14px;
}

/* ===== FOOTER ===== */
.footer{
    background: linear-gradient(to right, #2c2c2c, #1a1a1a);
    color:#ddd;
    padding:50px 20px 20px;
}

/* CONTAINER */
.footer-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

/* COLUMN */
.footer-col{
    flex:1;
    min-width:200px;
}

/* HEADINGS */
.footer-col h3{
    color:white;
    margin-bottom:15px;
    position:relative;
}

/* LINE UNDER TITLE */
.footer-col h3::after{
    content:"";
    display:block;
    width:60px;
    height:2px;
    background:#aaa;
    margin-top:8px;
}

/* LINKS */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin:8px 0;
    cursor:pointer;
    transition:0.3s;
}

.footer-col ul li:hover{
    color:white;
}

/* SOCIAL ICONS */
.socials{
    display:flex;
    gap:15px;
    margin-top:10px;
}

.socials i{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#444;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.3s;
}

.socials i:hover{
    background:white;
    color:black;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    border-top:1px solid #444;
    margin-top:30px;
    padding-top:15px;
    font-size:14px;
    color:#aaa;
}
.stars{
    color: #f4b400;   
    font-size: 16px;
    display: flex;
    gap: 3px;
}
.header-icons{
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
}
.cart-icon{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    background: rgb(0, 0, 0);          /* clean look */
    color: rgb(255, 255, 255);

    border-radius: 8px;
    font-size: 16px;

    box-shadow: 0 2px 6px rgba(0,0,0,0.1);

    transition: 0.3s ease;
}
/* ===== ABOUT HERO ===== */
.about-hero{
    background: #e6d48f;
    border-bottom: 2px solid rgba(0,0,0,0.1);
  
    text-align: center;
    padding: 80px 20px;
}

.about-hero h1{
    font-size: 36px;
}

.about-hero p{
    color: #555;
}

/* ===== ABOUT PAGE ===== */
.about-page{
    padding: 60px 10%;
}

.about-container{
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text{
    flex: 1;
}

.about-text h2{
    margin-bottom: 15px;
}

.about-image img{
    width: 100%;
    border-radius: 10px;
}
.footer a{
    color: white;
    text-decoration: none;
}

/* ===== SHOP HERO ===== */
.shop-hero{
    background: #e6d48f;
    text-align: center;
    padding: 60px 20px;
}

/* ===== GRID ===== */
.shop-products{
    padding: 50px 10%;
}

/* ===== SHOP PAGE FIX (SAFE) ===== */
.products-grid .product-card{
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

/* fix image */
.products-grid .product-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ensure proper grid */
.products-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
/* ===== CONTACT HERO ===== */
.contact-hero{
    background: #e6d48f;
    text-align: center;
    padding: 60px 20px;
}

.contact-hero h1{
    font-size: 36px;
}

.contact-hero p{
    color: #555;
}

/* ===== CONTACT FORM ===== */
.contact-section{
    padding: 60px 10%;
    display: flex;
    justify-content: center;
}

.contact-form{
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea{
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline: none;
    border-color: #e6d48f;
}

/* BUTTON */
.contact-form button{
    background: black;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contact-form button:hover{
    background: #333;
}
.product-page{
    padding: 120px 20px 60px; /* space for fixed header */
    display: flex;
    justify-content: center;
}

.product-detail{
    max-width: 500px;
    text-align: center;
}

/* IMAGE TOP CENTER */
.product-detail img{
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* TEXT */
.product-info h2{
    font-size: 26px;
}

.product-info p{
    margin: 10px 0;
}

.desc{
    color: #555;
    margin: 15px 0;
}
/* RESPONSIVE */
@media(max-width:768px){
    .about-container{
        flex-direction: column;
    }
}
/* ===== MOBILE ===== */
@media (max-width:768px){
    .product-detail{
        flex-direction: column;
        text-align: center;
    }

    .product-detail img{
        width: 100%;
    }
    /* show menu icon */
    .menu-toggle{
        display:block;
    }
   
     .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .footer-col h3::after{
        margin:8px auto;
    }

    .socials{
        justify-content:center;
    }
    /* hide menu initially */
    nav ul{
        position:fixed;
        top:0;
        right:-100%;
        width:50%;
        height:100vh;
        background:#111;

        display:flex;
        flex-direction:column;

        justify-content:center;
        align-items:center;

        transition:0.4s ease;
        z-index:999;
    }

    /* show menu on click */
    nav ul.active{
        right:0;
    }

    /* menu items */
    nav ul li{
        width:100%;
        text-align:center;
        padding:15px 0;
    }

    /* divider lines */
    nav ul li:not(:last-child){
        border-bottom:1px solid rgba(255,255,255,0.2);
    }

    /* links */
    nav ul li a{
        color:white;
        font-size:18px;
        display:block;
    }
    .mobile-btn{
        display:flex;              /*  make it flex */
        justify-content:center;    /*  center horizontally */
        margin-top:20px;
        width:100%;
    }

    .mobile-btn a{
        background:white;          /*  white button */
        color:black;               /*  black text */
        padding:10px 25px;
        border-radius:5px;
        text-decoration:none;
        font-weight:600;
    }
   

     /* 👇 SHOW button inside menu */
     .close-menu{
        display:block;
        position:absolute;
        top:20px;
        right:20px;
        font-size:28px;
        color:white;
        cursor:pointer;
    }


    /* 👇 HIDE desktop button */
    .desktop-btn{
        display:none;
    }

    .hero-content h1{
        font-size: 36px;
    }

    .hero-content
    {
        left:5%;
    }



.slider-window{
    overflow: hidden;
}

.product-container{
    display: flex;
    justify-content: flex-start; /* important for slider */
   
}


/* CARD SIZE (NARROW + CENTERED) */
.product-card{
    flex: 0 0 100%;        /*  reduce width */
    max-width: 100%;
   
}

/* IMAGE LONG (TALL LOOK) */
.product-card img{
    width:100%;
         /* 👈 make image longer */
    object-fit:cover;

}

   

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .line{
        margin:15px auto;
    }

    .about-text h2{
        font-size:26px;
    }

    .about-text h4{
        font-size:16px;
    }

    .about-image img{
        height:250px;
    }

    .features-container{
        flex-direction:column;
        align-items:center;
        gap:30px;
    }
   
}

/* MOBILE (default) */
.product-card{
    flex: 0 0 100%;
    max-width: 100%;

}

/* 2 cards */
@media (min-width:600px){
    .product-card{
        flex: 0 0 calc((100% - 20px)/2);
        max-width: calc((100% - 20px)/2);
        
    }
    .review-card{
        flex: 0 0 100%;
        max-width: 100%;
        
    }
  
    
   
}


/* 3 cards */
@media (min-width:900px){
    .product-card{
        flex: 0 0 calc((100% - 40px)/3);
        max-width: calc((100% - 40px)/3);
    }

    

    .review-card{
        flex:0 0 calc((100% - 40px)/3);
    }
}
@media (min-width:600px){
   
   
    

}
/* 4 cards */
@media (min-width:1200px){
    .product-card{
        flex: 0 0 calc((100% - 60px)/4);
        max-width: calc((100% - 60px)/4);
       
    }
   
}




@media (max-width:430px){
    .review-card{
        flex: 0 0 100%;
        max-width: 100%;
       
    }
}
@media(max-width:768px){

    .review-card{
        flex:0 0 100%;
    }

}
/* ===== CART SIDEBAR ===== */
#cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background: #000;
  color: #fff;
  padding: 20px;
  transition: 0.3s ease;
  z-index: 1000;

  display: flex;
  flex-direction: column;
}

#cart-sidebar.active {
  right: 0;
}

/* CLOSE BUTTON */
#close-cart {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

/* TITLE */
#cart-sidebar h2 {
  margin-top: 40px;
  text-align: center;
}

/* ITEMS */
#cart-items {
  flex: 1;
  margin-top: 20px;
  overflow-y: auto;
}

/* SINGLE ITEM */
.cart-item {
  border-bottom: 1px solid #444;
  padding: 10px 0;
  text-align: center;
}

.cart-item h4 {
  font-size: 16px;
}

.cart-item p {
  font-size: 14px;
  color: #ccc;
}

/* QTY */
.qty-controls {
  margin-top: 8px;
}

.qty-controls button {
  padding: 5px 10px;
  margin: 0 5px;
  border: none;
  background: #f5d27a;
  color: #000;
  cursor: pointer;
  border-radius: 5px;
}

/* FOOTER */
.cart-footer {
  border-top: 1px solid #444;
  padding-top: 15px;
  text-align: center;
}
.cart-footer .btn {
    background: #ffffff;   
    color: #000000;        
    border: 1px solid #000; /* optional nice border */
    
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
  }
  .cart-img {
    width: 60px;        /* fixed width */
    height: 60px;       /* fixed height */
    object-fit: cover;  
    border-radius: 8px;
  }
  /* ===== LOOKBOOK HERO ===== */
.lookbook-hero{
    background: #e6d48f;
    text-align: center;
    padding: 80px 20px;
  }
  
  .lookbook-hero h1{
    font-size: 36px;
  }
  
  .lookbook-hero p{
    color: #555;
  }
  
  /* ===== LOOKBOOK GRID ===== */
  .lookbook{
    padding: 50px 10%;
  }
  
  .lookbook-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
  }
  
  .lookbook-grid img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
  }
  
  .lookbook-grid img:hover{
    transform: scale(1.05);
  }

  .slider-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:25px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#bbb;
    cursor:pointer;
    transition:0.3s;
}
.dot.active{
    background:black;
}
/* HIDE DOTS ON MOBILE */
@media(max-width:600px){

    .slider-dots{
        display:none;
    }

}