/* General Body Setup */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #e8f5f7;
    overflow-x: hidden;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.page-title {
    font-size: 32px;
    font-weight: 600;
}

/* 🔄 Infinite Slider Animation */
.slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
    margin: 0 auto;
}

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

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

.img-frame {
    width: 150px;
    height: 150px;
    border-radius: 50% !important;
    border: 2px solid #110a42;
    padding: 3px;
    margin-bottom: 8px;
    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: 12px 0;
    font-size: 14px;
    margin: 0;
}

/* 🛍️ 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; /* Holi Pink */
    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;
    height: 40px;
    overflow: hidden;
}

.stars {
    font-size: 11px;
    color: #000;
}

.price {
    font-weight: bold;
    font-size: 15px;
    margin-top: 5px;
}

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

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

.footer-logo span {
    color: #ff4081; /* Holi Pink */
}

.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;
}

/* Page container padding to avoid elements touching screen edges */
.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Ensure product cards have comfortable spacing in grid columns */
.product-card {
    margin: 0;
    padding: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .circle-item { width: 120px; margin: 0 8px; }
    .img-frame { width: 120px; height: 120px; }
}

@media (max-width: 480px) {
    .circle-item { width: 100px; margin: 0 6px; }
    .img-frame { width: 100px; height: 100px; }
}

/* 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); }
}