:root {
--primary: #C98A7A;
--text: #2B2B2B;
--light: #F8F4F0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--text);
line-height: 1.6;
background: #f9f9f9;
}
/* ================== HEADER ================== */
.header {
position: sticky;
top: 0;
z-index: 9999;
background: #fff;
box-shadow: 0 2px 15px rgba(0,0,0,.08);
}
.nav-container {
max-width: 1400px;
margin: auto;
height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
.alogo{
text-decoration: none;
}
a{
text-decoration: none;
}
.logo h1{
font-size:18px;
white-space:nowrap;
letter-spacing:0.5px;
font-family: 'Playfair Display', serif;
color: var(--primary);
text-decoration: none;
}
.logo span {
color: #2B2B2B;
}
.main-nav ul {
display: flex;
list-style: none;
gap: 32px;
}
.main-nav a {
text-decoration: none;
color: var(--text);
font-weight: 500;
position: relative;
}
.main-nav a:hover {
color: var(--primary);
}
.new:after {
content: "NEW";
position: absolute;
top: -10px;
right: -25px;
background: #e74c3c;
color: white;
font-size: 9px;
padding: 1px 5px;
border-radius: 10px;
}
/* Search Bar */
.search-bar {
display: flex;
align-items: center;
background: #f5f5f5;
border-radius: 50px;
padding: 8px 16px;
position: relative;
}
.search-bar input {
border: none;
background: transparent;
width: 250px;
outline: none;
font-size: 15px;
padding: 8px 12px;
}
/* Icons */
.icon-btn, .login-link {
font-size: 1.5rem;
color: var(--text);
text-decoration: none;
transition: 0.3s;
}
.icon-btn:hover, .login-link:hover {
color: var(--primary);
transform: scale(1.1);
}
.count {
position: absolute;
top: -6px;
right: -6px;
background: var(--primary);
color: white;
font-size: 10px;
width: 18px;
height: 18px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
/* ================== HERO ================== */
.hero {
position: relative;
height: 100vh;
overflow: hidden;
}
.hero-slide img {
width: 100%;
height: 150%;
object-fit: cover;
}
.hero-content {
position: absolute;
top: 50%;
transform: translateY(-50%);
max-width: 700px;
z-index: 10;
padding: 0 40px;
color: white;
text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-content h2 {
font-size: 58px;
font-family: 'Playfair Display', serif;
margin-bottom: 15px;
}
.hero-content h3 {
font-size: 26px;
font-weight: 400;
}
.shop-btn {
display: inline-block;
padding: 14px 40px;
background: var(--primary);
color: white;
border-radius: 50px;
text-decoration: none;
margin-top: 20px;
font-weight: 600;
transition: 0.3s;
}
.shop-btn:hover {
transform: translateY(-3px);
}
/* ================== NEW ARRIVALS & COLLECTION ================== */
.new-arrivals {
padding: 70px 5%;
background: #fff;
}
.arrival-heading h2 {
text-align: center;
font-size: 42px;
margin-bottom: 50px;
font-family: 'Playfair Display', serif;
color: #2B2B2B;
}
/* FIXED GRID */
.arrival-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 25px;
max-width: 1400px;
margin: 0 auto;
}
.arrival-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,.08);
transition: all 0.4s;
height: 100%;
}
.arrival-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 30px rgba(201, 138, 122, 0.18);
}
.arrival-image {
position: relative;
}
.arrival-image img {
width: 100%;
height: 260px;
object-fit: cover;
}
.badge {
position: absolute;
top: 12px;
left: 12px;
background: #e74c3c;
color: white;
padding: 4px 10px;
font-size: 12px;
border-radius: 20px;
font-weight: bold;
}
.arrival-content {
padding: 15px;
}
.arrival-content h3 {
font-size: 15.5px;
line-height: 1.4;
margin-bottom: 8px;
font-weight: 600;
}
.arrival-price {
font-size: 18px;
font-weight: 700;
color: var(--primary);
margin: 8px 0 12px;
}
.arrival-btn {
width: 100%;
padding: 10px;
background: var(--primary);
color: white;
border: none;
border-radius: 50px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: 0.3s;
}
.arrival-btn:hover {
background: #2B2B2B;
}
/* ================== FOOTER ================== */
.footer {
background: #1d1d1d;
color: #fff;
margin-top: 80px;
}
.newsletter {
text-align: center;
padding: 60px 20px;
border-bottom: 1px solid rgba(255,255,255,.1);
}
.newsletter h2 {
font-size: 38px;
margin-bottom: 12px;
}
.newsletter p {
color: #bbb;
margin-bottom: 25px;
}
.newsletter-form {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
max-width: 500px;
margin: 0 auto;
}
.newsletter-form input {
width: 350px;
padding: 14px 20px;
border: none;
border-radius: 50px;
font-size: 15px;
}
.newsletter-form button {
background: var(--primary);
color: white;
border: none;
padding: 14px 30px;
border-radius: 50px;
cursor: pointer;
font-weight: 600;
}
.footer-container {
max-width: 1400px;
margin: auto;
padding: 60px 5%;
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
}
.footer-col h3 {
margin-bottom: 15px;
color: #C98A7A;
}
.footer-col a {
display: block;
color: #bbb;
text-decoration: none;
margin-bottom: 10px;
}
.footer-col a:hover {
color: var(--primary);
}
.footer-bottom {
text-align: center;
padding: 20px;
border-top: 1px solid rgba(255,255,255,.1);
color: #999;
font-size: 14px;
}
/* WhatsApp Button */
.whatsapp-btn {
position: fixed;
right: 20px;
bottom: 20px;
width: 60px;
height: 60px;
background: #25D366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 28px;
box-shadow: 0 5px 20px rgba(0,0,0,.3);
z-index: 9999;
text-decoration: none;
}
/* ================== RESPONSIVE ================== */
@media(max-width: 1100px) {
.main-nav { display: none; }
.search-bar input { width: 180px; }
}
@media(max-width: 768px) {
.arrival-container {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 18px;
}
.arrival-image img { height: 220px; }
.newsletter-form input { width: 100%; }
}
@media(max-width: 480px) {
.arrival-container {
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
}
/* Extra Attractive Touches */
.hero-content {
text-shadow: 0 3px 15px rgba(0,0,0,0.5);
}
.arrival-card {
border: 1px solid #eee;
}
.arrival-btn {
font-weight: 600;
letter-spacing: 0.5px;
}
/* Top Bar */
.top-bar {
background: linear-gradient(135deg, #C98A7A, #e8a38a);
color: white;
text-align: center;
padding: 12px 0;
font-size: 15px;
font-weight: 500;
}
/* Make logo more premium */
.logo h1 {
font-size: 32px;
font-weight: 700;
}
/* ================== MOBILE MENU ================== */
.mobile-menu {
position: fixed;
top: 0;
left: -100%;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.95);
z-index: 100000;
transition: all 0.4s ease;
display: flex;
align-items: center;
justify-content: center;
}
.mobile-menu.active {
left: 0;
}
.mobile-menu-content {
background: white;
width: 85%;
max-width: 380px;
height: 90%;
border-radius: 20px;
padding: 30px 25px;
position: relative;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
overflow-y: auto;
}
.close-mobile-menu {
position: absolute;
top: 20px;
right: 25px;
font-size: 32px;
background: none;
border: none;
color: #333;
cursor: pointer;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}
.mobile-menu ul {
list-style: none;
margin-top: 40px;
}
.mobile-menu ul li {
margin-bottom: 18px;
}
.mobile-menu ul li a {
display: block;
padding: 12px 0;
font-size: 18px;
color: #333;
text-decoration: none;
border-bottom: 1px solid #eee;
font-weight: 500;
}
.mobile-menu ul li a:hover {
color: var(--primary);
padding-left: 10px;
}
/* Mobile Toggle Button */
.mobile-menu-toggle {
display: none;
background: none;
border: none;
font-size: 28px;
color: #333;
cursor: pointer;
padding: 8px;
}
/* Show mobile toggle on small screens */
@media (max-width: 1100px) {
.main-nav {
display: none;
}
.mobile-menu-toggle {
display: block;
}

.nav-right {
gap: 12px;
}
.search-bar input {
width: 160px;
}
}
/* Very small screens */
@media (max-width: 480px) {
.mobile-menu-content {
width: 92%;
height: 88%;
}
}
/* ================== NAVBAR RIGHT SIDE FIX ================== */
.nav-right {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: nowrap; /* Yeh important hai */
}
.nav-right .search-bar {
margin-right: 8px;
}
.icon-btn, .login-link {
display: flex;
align-items: center;
gap: 4px;
font-size: 1.4rem;
color: #333;
text-decoration: none;
white-space: nowrap;
}
.login-link {
font-size: 15px;
font-weight: 500;
padding: 6px 12px;
border-radius: 8px;
transition: all 0.3s;
}
.login-link:hover {
background: #f5f5f5;
color: var(--primary);
}
/* User Icon + Login Fix */
.user-menu {
display: flex;
align-items: center;
}
/* Make sure everything stays in one line */
@media (max-width: 1100px) {
.nav-right {
gap: 12px;
}
.search-bar input {
width: 160px;
}
}
@media (max-width: 768px) {
.nav-right {
gap: 10px;
}

.icon-btn {
font-size: 1.35rem;
}
.login-link {
font-size: 14px;
padding: 5px 10px;
}
}
/* ===========================================
PART 2A - PRODUCTS & COLLECTION
=========================================== */
.new-arrivals{
padding:80px 5%;
background:#fff;
}
.arrival-heading{
text-align:center;
margin-bottom:55px;
}
.arrival-heading h2{
font-family:'Playfair Display',serif;
font-size:42px;
color:#222;
position:relative;
display:inline-block;
}
.arrival-heading h2::after{
content:"";
position:absolute;
left:50%;
transform:translateX(-50%);
bottom:-12px;
width:70px;
height:3px;
background:var(--primary);
border-radius:10px;
}
.product-link{
text-decoration:none;
color:inherit;
}
.arrival-container{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(260px,1fr));
gap:28px;
}
.arrival-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.35s;
display:flex;
flex-direction:column;
height:100%;
border:1px solid #efefef;
}
.arrival-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,.15);
}
.arrival-image{
position:relative;
overflow:hidden;
}
.arrival-image img{
width:100%;
height:140px;
object-fit:cover;
transition:.45s;
}
.arrival-card:hover img{
transform:scale(1.08);
}
.badge{
position:absolute;
top:15px;
left:15px;
background:#e74c3c;
color:#fff;
padding:6px 12px;
font-size:12px;
font-weight:600;
border-radius:30px;
letter-spacing:.5px;
}
.arrival-content{
padding:18px;
display:flex;
flex-direction:column;
flex:1;
}
.arrival-content h3{
font-size:17px;
line-height:1.5;
margin-bottom:10px;
color:#222;
min-height:50px;
}
.arrival-price{
color:var(--primary);
font-size:24px;
font-weight:700;
margin-bottom:15px;
}
.product-desc{
color:#777;
font-size:14px;
line-height:1.6;
margin-bottom:18px;
flex:1;
}
.arrival-btn{
width:100%;
border:none;
cursor:pointer;
padding:14px;
border-radius:50px;
background:var(--primary);
color:#fff;
font-size:15px;
font-weight:600;
transition:.3s;
}
.arrival-btn:hover{
background:#222;
}
.arrival-btn:active{
transform:scale(.97);
}
/* Hover Icons */
.arrival-image::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.08);
opacity:0;
transition:.35s;
}
.arrival-card:hover .arrival-image::before{
opacity:1;
}
/* Collection spacing */
.new-arrivals:nth-child(even){
background:#fafafa;
}
/* Price */
.arrival-price::before{
content:"₹ ";
}
/* Better Button */
.shop-btn,
.arrival-btn{
box-shadow:0 8px 20px rgba(201,138,122,.25);
}
.shop-btn:hover,
.arrival-btn:hover{
box-shadow:0 12px 30px rgba(201,138,122,.4);
}
/* Smooth */
.arrival-card,
.arrival-btn,
.shop-btn,
.icon-btn{
transition:all .35s ease;
}
/* ===========================================
PART 2B - FOOTER + NEWSLETTER
=========================================== */
.footer{
margin-top:90px;
background:#1d1d1d;
color:#fff;
}
.newsletter{
padding:70px 20px;
text-align:center;
border-bottom:1px solid rgba(255,255,255,.08);
}
.newsletter h2{
font-size:42px;
font-family:'Playfair Display',serif;
margin-bottom:15px;
}
.newsletter p{
color:#bbb;
margin-bottom:30px;
font-size:15px;
}
.newsletter-form{
display:flex;
justify-content:center;
align-items:center;
gap:12px;
flex-wrap:wrap;
}
.newsletter-form input{
width:380px;
max-width:100%;
padding:16px 22px;
border:none;
border-radius:50px;
outline:none;
font-size:15px;
}
.newsletter-form button{
padding:16px 35px;
border:none;
border-radius:50px;
cursor:pointer;
background:var(--primary);
color:#fff;
font-weight:600;
transition:.35s;
}
.newsletter-form button:hover{
background:#fff;
color:#222;
}
/* ================= FOOTER GRID ================= */
.footer-container{
max-width:1400px;
margin:auto;
padding:70px 5%;
display:grid;
grid-template-columns:
2fr
1fr
1fr
1fr;
gap:45px;
}
.footer-col h3{
color:var(--primary);
margin-bottom:20px;
font-size:20px;
}
.footer-col p{
color:#bcbcbc;
line-height:1.8;
font-size:14px;
}
.footer-col a{
display:block;
color:#bcbcbc;
margin-bottom:12px;
transition:.3s;
font-size:14px;
}
.footer-col a:hover{
color:#fff;
padding-left:8px;
}
.footer-bottom{
border-top:1px solid rgba(255,255,255,.08);
padding:22px;
text-align:center;
color:#999;
font-size:14px;
}
/* ================= SOCIAL ICONS ================= */
.social-icons{
display:flex;
gap:15px;
margin-top:20px;
}
.social-icons a{
width:42px;
height:42px;
border-radius:50%;
background:rgba(255,255,255,.08);
display:flex;
align-items:center;
justify-content:center;
transition:.35s;
color:#fff;
font-size:18px;
}
.social-icons a:hover{
background:var(--primary);
transform:translateY(-4px);
}
/* ================= WHATSAPP ================= */
.whatsapp-btn{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
border-radius:50%;
background:#25D366;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:28px;
box-shadow:0 10px 30px rgba(0,0,0,.25);
z-index:99999;
transition:.3s;
}
.whatsapp-btn:hover{
transform:scale(1.12);
}
/* ================= PREMIUM EFFECTS ================= */
::selection{
background:var(--primary);
    color:#fff;
}
::-webkit-scrollbar{
    width:9px;
}
::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:30px;
}
::-webkit-scrollbar-track{
    background:#f1f1f1;
}
button{
    font-family:inherit;
}
input{
    font-family:inherit;
}
.arrival-card,
.shop-btn,
.arrival-btn,
.icon-btn,
.footer-col a,
.social-icons a{
    transition:all .35s ease;
}
/* ===========================================
   PART 3 - MOBILE RESPONSIVE
=========================================== */
/* ---------- Laptop ---------- */
@media (max-width:1200px){
.nav-container{
grid-template-columns:180px 1fr auto;
gap:18px;
}
.search-bar{
width:240px;
}
.main-nav ul{
gap:25px;
}
.hero{
height:520px;
}
.hero-content h2{
font-size:48px;
}
}
/* ---------- Tablet ---------- */
@media (max-width:992px){
.main-nav{
display:none;
}
.mobile-menu-toggle{
display:block;
}
.nav-container{
display:grid;
grid-template-columns:50px 1fr auto;
grid-template-areas:
"menu logo icons"
"search search search";
padding:15px;
gap:15px;
}
.mobile-menu-toggle{
grid-area:menu;
font-size:28px;
}
.logo{
grid-area:logo;
text-align:center;
}
.logo h1{
   font-size:18px;
    white-space:nowrap;
    letter-spacing:0.5px;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    text-decoration: none;
font-size:30px;
}
.nav-right{
grid-area:icons;
justify-content:flex-end;
gap:12px;
}
.search-bar{
grid-area:search;
width:100%;
}
.search-bar input{
width:100%;
}
.hero{
height:420px;
}
.hero-content{
left:40px;
max-width:500px;
}
.hero-content h2{
font-size:42px;
}
.hero-content h3{
font-size:20px;
}
.arrival-container{
grid-template-columns:repeat(2,1fr);
gap:20px;
}
.footer-container{
grid-template-columns:repeat(2,1fr);
}
}
/* ---------- Mobile ---------- */
@media (max-width:768px){
body{
overflow-x:hidden;
}
.nav-container{
    display:grid;
    grid-template-columns:40px 1fr auto;
    grid-template-areas:
        "menu logo icons"
        "search search search";
    gap:10px;
}
.mobile-menu-toggle{
    grid-area:menu;
}
.logo{
    grid-area:logo;
    text-align:center;
}
.nav-right{
    grid-area:icons;
}
.search-bar{
    grid-area:search;
    width:100%;
    margin-top:8px;
}
/* ================= MOBILE HEADER ================= */
@media (max-width:768px){
.main-nav{
    display:none;
}
.nav-container{
    display:grid;
    grid-template-columns:40px 1fr auto;
    grid-template-areas:
    "menu logo icons"
    "search search search";
    align-items:center;
    gap:10px;
    padding:10px 12px;
}
/* Menu */
.mobile-menu-toggle{
    display:block;
    grid-area:menu;
    font-size:22px;
}
/* Logo */
.logo{
    grid-area:logo;
    display:flex;
    justify-content:center;
    align-items:center;
       font-size:18px;
    white-space:nowrap;
    letter-spacing:0.5px;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    text-decoration: none;
}
.logo h1{
    font-size:20px; /* Pehle 32 tha */
    white-space:nowrap;
    letter-spacing:0.5px;
}
/* Icons */
.nav-right{
    grid-area:icons;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
}
/* Hide Login */
.login-link{
    display:none !important;
}
/* Hide Wishlist */
.wishlist-icon{
    display:none !important;
}
/* Search niche */
.search-bar{
    grid-area:search;
    width:100%;
    margin-top:6px;
    padding:8px 14px;
}
.search-bar input{
    width:100%;
    font-size:14px;
}
/* Hero */
.hero{
    height:240px;
}
.hero-slide img{
    height:240px;
    object-fit:cover;
}
.hero-content{
    display:none;
}
}
/* Hero */
.hero{
height:250px;
}
.hero-slide img{
height:250px;
object-fit:cover;
}
.hero-content{
display:none;
}
}
.hero{
height:260px;
}
.hero-slide img{
height:260px;
object-fit:cover;
}
.hero-content{
display:none;
}
.swiper-button-next,
.swiper-button-prev{
transform:scale(.6);
}
.arrival-heading h2{
font-size:32px;
}
.arrival-container{
grid-template-columns:repeat(2,1fr);
gap:14px;
}
.arrival-image img{
height:180px;
}
.arrival-content{
padding:12px;
}
.arrival-content h3{
font-size:14px;
min-height:42px;
}
.arrival-price{
font-size:18px;
}
.arrival-btn{
padding:10px;
font-size:13px;
}
.newsletter{
padding:45px 20px;
}
.newsletter h2{
font-size:30px;
}
.newsletter-form{
flex-direction:column;
}
.newsletter-form input{
width:100%;
}
.newsletter-form button{
width:100%;
}
.footer-container{
grid-template-columns:1fr;
text-align:center;
gap:35px;
}
.social-icons{
justify-content:center;
}
.whatsapp-btn{
width:52px;
height:52px;
font-size:24px;
right:15px;
bottom:15px;
}
}
/* ---------- Small Phones ---------- */
@media (max-width:480px){
.logo h1{
    white-space:nowrap;
    letter-spacing:0.5px;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    text-decoration: none;
font-size: 15px;
}
.hero{
height:220px;
}
.hero-slide img{
height:220px;
}
.arrival-container{
grid-template-columns:repeat(2,1fr);
gap:10px;
}
.arrival-image img{
height:150px;
}
.arrival-content{
padding:10px;
}
.arrival-content h3{
font-size:13px;
}
.arrival-price{
font-size:17px;
}
.arrival-btn{
padding:9px;
font-size:12px;
}
.search-bar{
padding:8px 12px;
}
.search-bar input{
font-size:13px;
}
.mobile-menu-content{
width:92%;
height:90%;
}
}
/* ---------- Large Screens ---------- */
@media (min-width:1600px){
.container,
.nav-container,
.footer-container,
.arrival-container{
max-width:1500px;
}
.hero{
height:720px;
}
.hero-content h2{
font-size:72px;
}
.hero-content h3{
font-size:30px;
}
}
@media (max-width:768px){
.search-bar{
    grid-area:search;
    width:100%;
    max-width:100%;
    margin-top:8px;
}
.search-bar input{
    width:100%;
}
.search-bar button{
    border:none;
    background:none;
}
}
/* Desktop */
.mobile-menu-toggle{
    display:none;
}
/* Mobile */
@media (max-width:768px){
.mobile-menu-toggle{
    display:block !important;
}
}
.mobile-menu{
position:fixed;
top:0;
left:-100%;
width:100%;
height:100vh;
background:rgba(0,0,0,.95);
transition:.4s;
z-index:999999;
}
.mobile-menu.active{
left:0;
}
@media (max-width:768px){
.search-bar{
    width:100%;
    display:flex;
    margin-top:10px;
}
.search-bar input{
    flex:1;
    width:100%;
}
.search-bar button{
    width:45px;
    border:none;
    background:transparent;
}
}
@media (max-width:768px){
.nav-container{
    display:grid;
    grid-template-columns:40px 1fr auto;
    grid-template-areas:
        "menu logo icons"
        "search search search";
    gap:10px;
}
.mobile-menu-toggle{
    grid-area:menu;
}
.logo{
    grid-area:logo;
}
.nav-right{
    grid-area:icons;
    display:flex;
    justify-content:flex-end;
}
.search-bar{
    grid-area:search;
    width:100%;
    display:flex;
}
}
.footera{
    color: white;
}