/* General Body Setup */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #eaf5fa;
    overflow-x: hidden;
}

.page-title {
    font-size: 32px;
    font-weight: 600;
}

/* 🔄 Infinite Slider Animation */
.slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0 2rem;
    margin-bottom: 1.5rem;
    margin: 10px;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll-nonstop 10s linear infinite;
    /* Gadi ki speed yahan se control karein */
}

.circle-item {
    width: 150px;
    text-align: center;
    flex-shrink: 0;
    margin: 0 12px;
}

.circle-item img {
    width: 180px;
    height: 180px;
}

.img-frame {
    width: 150px;
    height: 150px;
    border-radius: 50% !important;
    border: 2px solid #110a42;
    padding: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

.circle-item.active .img-frame {
    border: 2px solid #110a42;
    /* Active circle red border */
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.circle-item p {
    font-size: 13px;
    font-weight: 500;
}

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

    to {
        transform: translateX(-50%);
    }
}

/* 🔍 Filter Bar Styling */
.filter-bar {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 1.25rem 0;
    font-size: 14px;
    margin-bottom: 1.5rem;
    margin: 10px;
}

/* 🛍️ Product Card Styling */
.product-card {
    transition: transform 0.3s ease;
    cursor: pointer;
    background-color: white;
}

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

.img-box {
    position: relative;
    overflow: hidden;
}

.badge-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4081;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
}

.product-name {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

/* Footer Main Styling */
.footer-section {
    background-color: #fcf8f5;
    padding: 80px 0 30px;
    border-top: 1px solid #eee;
    color: #333;
}

.footer-logo {
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #ff4081;
}

.footer-about {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

/* Blue line hatane ke liye special code */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    text-decoration: none !important;
    /* No blue line */
    color: #555;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #ff4081;
    padding-left: 5px;
    /* Chota sa animation */
}

/* Social Media Icons Styling */
.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #fff;
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.instagram:hover {
    background: #E1306C;
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.footer-contact {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.copyright-text {
    font-size: 13px;
    color: #999;
}

.add-cart{
    background-color: #e7f194;
    color: #000000;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

/* Link se blue line hatane ke liye */
.circle-item a {
    text-decoration: none !important; /* Underline khatam karne ke liye */
    color: inherit; /* Taki text ka color black hi rahe blue na ho */
    display: block;
}

/* Link jaisa feel dene ke liye Hover Effect */
.circle-item a p:hover {
    color: #ff4081; /* Mouse le jane par color pink ho jayega */
    transform: scale(1.05); /* Thoda sa bada dikhega */
    transition: all 0.3s ease;
}

/* Ek choti si attractive dot ya line hover par (Idea) */
.circle-item a p {
    position: relative;
    display: inline-block;
}

/* Blue line ki jagah niche ek stylish dot dikhegi jab mouse jayega */
.circle-item a p::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #ff4081;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Announcement bar (thin fixed top bar) */
.announcement-bar{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 34px;
background: #fff3e6;
border-bottom: 1px solid rgba(0,0,0,0.04);
display:flex;
align-items:center;
overflow:hidden;
z-index:9999;
font-family: Arial, sans-serif;
}

/* Track that scrolls left→right */
.announcement-track{
display:flex;
align-items:center;
width: max-content;
animation: scroll-right 22s linear infinite;
}

/* Items */
.announcement-track span{
white-space:nowrap;
padding:6px 28px;
font-size:13px;
font-weight:600;
color:#111;
}

/* Pause when hovering */
.announcement-bar:hover .announcement-track{
animation-play-state: paused;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
.announcement-track { animation: none; }
}

/* Keyframes: start shifted left (-50%) then move to 0 → left-to-right motion */
@keyframes scroll-right{
0% { transform: translateX(-50%); }
100% { transform: translateX(0); }
}

/* Header / Navigation (improved) */
/* Sticky header with soft background, rounded corners and gentle shadow for separation */
.site-header {
	background: #eaf5fa(255,250,242,0.98);
	border-bottom: 1px solid rgba(184,134,11,0.06);
	position: sticky;
	top: 8px; /* slight offset from very top so it floats with rounded feel */
	z-index: 80;
	padding: 8px 0;
	margin: 0 8px; /* breathe room on wide screens */
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(217, 191, 113, 0.06);
}

.nav-row { display:flex; 
    align-items:center; 
    gap:1rem; 
    padding:0.3rem 0; 
}
.logo { 
    font-weight:800; 
    color:var(--gold);
    text-decoration:none; 
    font-size:1.15rem; 
    letter-spacing:0.6px; 
    padding:6px 8px; 
}

/* Accessible, integrated search area (desktop). Hidden at small widths via media queries for compact header */
.search-wrap { 
    flex:1; 
    display:flex; 
    align-items:center; 
    max-width:640px; 
    margin:0 1rem; 
}
.search-input { 
    flex:1; 
    padding:0.7rem 0.9rem; 
    border:1px solid rgba(0,0,0,0.06); 
    border-radius:999px 0 0 999px; 
    outline:none; 
    background:transparent; 
    font-size:0.95rem; 
}
.search-input:focus { 
    box-shadow: 0 6px 14px rgba(184,134,11,0.12); 
}
.search-btn { 
    padding:0.66rem 0.92rem; 
    border:none; 
    border-radius:0 999px 999px 0; 
    background:var(--gold); 
    color:white; 
    cursor:pointer; 
    font-weight:700; }

/* Nav actions: larger tap targets, visual contrast for icons */
.nav-actions { 
    display:flex; 
    align-items:center; 
    gap:0.6rem; }
.cart-btn { 
    position:relative; 
    border:none; 
    background:transparent; 
    cursor:pointer; 
    font-size:1.2rem; 
    padding:8px; 
    border-radius:8px; }
.cart-btn:focus { 
    outline: 3px solid rgba(184,134,11,0.18); }
.cart-count { 
    position:absolute; 
    top:-6px; right:-6px; 
    background:#c0392b; 
    color:white; 
    font-size:0.72rem; 
    padding:3px 6px; 
    border-radius:999px; 
}
.menu-toggle { 
    display:none; 
    border:none; 
    background:transparent; 
    font-size:1.25rem; 
    cursor:pointer; 
    padding:8px; 
    border-radius:8px; 
}

/* Utility: visually hidden text for screen readers */
.sr-only { 
    position:absolute !important; 
    height:1px; 
    width:1px; 
    overflow:hidden; 
    clip:rect(1px,1px,1px,1px); 
    white-space:nowrap; }

/* Mobile menu */
.mobile-menu { 
    background:linear-gradient(180deg, rgba(255,250,240,0.98), rgba(255,245,230,0.98));
     padding:0.6rem 1rem; 
     display:flex; 
     flex-direction:column; 
     gap:0.6rem; 
    }
    
.mobile-menu a { 
    text-decoration:none; 
    color:var(--text);
     padding:0.4rem 0; }

/* Hero */
.hero { 
    position:relative; 
    padding:3.5rem 0; 
    margin-bottom:1rem; 
    background-image: url('https://images.unsplash.com/photo-1526318472351-c75fcf0701b5?auto=format&fit=crop&w=1600&q=60'); background-size:cover; background-position:center; color:white; }
.hero-overlay { 
    position:absolute; 
    inset:0; 
    background:linear-gradient(180deg, rgba(20,15,10,0.35), rgba(10,7,3,0.6)); 
    border-bottom-left-radius:16px; 
    border-bottom-right-radius:16px; }
.hero-content { 
    position:relative; 
    padding:4rem 0; 
    text-align:center; 
}
.hero-title { 
    font-size:2.2rem; 
    margin:0 0 0.6rem; 
    color:#fff8e6; 
    text-shadow: 0 3px 18px rgba(0,0,0,0.4); 
}
.hero-sub { 
    margin:0 0 1rem; 
    color:#fdeec8; }
.btn-primary { 
    display:inline-block;
    background:var(--gold); 
    color:white; 
    padding:0.75rem 1.1rem; 
    border-radius:999px; 
    text-decoration:none; 
    box-shadow: 0 8px 24px rgba(184,134,11,0.18); }

/* Smooth scrolling for internal links */
html { 
    scroll-behavior: smooth; }

/* Desktop primary nav */
.main-nav { 
    display:flex; 
    gap:1rem; 
    margin-left:1.2rem; }
.main-nav a { 
    text-decoration:none; 
    color:var(--text); 
    padding:0.45rem 0.6rem; 
    border-radius:8px; 
    font-weight:600; }
.main-nav a:hover { 
    background: rgba(184,134,11,0.08); 
    color:var(--gold); 
}


/* Categories grid */
.categories { 
    padding:1.6rem 0 2.2rem; 
}
.categories-grid { 
    display:grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap:1rem; 
    margin-top:1rem; 
}
.category-card { 
    background:var(--card-bg); 
    border-radius:12px; 
    overflow:hidden; 
    box-shadow:0 8px 30px rgba(0,0,0,0.06); 
    text-align:center; 
    padding-bottom:1rem; 
    transition:transform 220ms ease; 
    box-shadow: 220ms ease; 
}
.category-card img { 
    width:100%; 
    height:180px; 
    object-fit:cover; 
    display:block; }
.category-card h3 { 
    margin:0.8rem 0 0.25rem; 
}
.category-card p { 
    margin:0 1rem; 
    color:var(--muted); 
    font-size:0.95rem; 
}
.category-card:hover { 
    transform: translateY(-6px); 
    box-shadow:0 20px 50px rgba(0,0,0,0.12); 
}

/* Categories section: removed inactive `.category-card.sale-card` rules to reduce clutter. */
/* Cart drawer */
.cart-drawer { 
    position:fixed; 
    right:0; 
    top:0; 
    width:340px; 
    height:100vh; 
    background:#fffaf3; 
    box-shadow: -6px 0 24px rgba(0,0,0,0.12); 
    transform: translateX(110%); 
    transition: transform 260ms ease; 
    z-index:80; 
    display:flex; 
    flex-direction:column; 
}
.cart-drawer.open { 
    transform: translateX(0); 
}
.cart-header { 
    display:flex; 
    justify-content:space-between; 
    align-items:center; 
    padding:1rem; 
    border-bottom:1px solid rgba(0,0,0,0.04); 
}
.cart-items { 
    padding:1rem; 
    overflow:auto; 
    flex:1; 
}
.cart-footer { 
    padding:1rem; 
    border-top:1px solid rgba(0,0,0,0.04); 
}
.empty { 
    color:var(--muted); 
}

/* Responsive rules */
@media (max-width: 900px) {
	.grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
	.hero-title { 
        font-size:1.6rem; 
    }
	.main-nav { 
        display:none; 
    }
	.categories-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 640px) {
    .nav-row { 
        gap:0.5rem; 
    }
    
    .search-wrap { 
        display:none; 
    }
    .menu-toggle { 
        display:inline-block; 
    }
    .grid { 
        grid-template-columns: 1fr; 
    }
    .collections-grid { 
        flex-direction:column; 
    }
    .footer-grid { 
        flex-direction:column; 
    }
	.main-nav { 
        display:none; 
    }
	.categories-grid {
        grid-template-columns: 1fr; 
    }
    .category-card img { 
        height:160px; 
    }
}