/* TOP BAR */
.topbar {
    position: sticky;
    background-color: #FFFFFF;
    border-bottom: 1px solid #f0f0f0;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    font-family: "Times New Roman", Times, serif;
    font-size: 28px;
    font-weight: bold;
}
/* Store Name – Luxury Font */
/*.brand {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;*/ /* Reference size */
    /*font-weight: 400;*/ /* Great Vibes normal weight */
    /*color: #2b2b2b;
    letter-spacing: 1px;
}*/

/* Buttons */
.top-actions {
    display: flex;
    gap: 16px;
}

.nav-link {
    font-family: 'Times New Roman', Times, serif; 
    font-size: 14px;
    padding: 9px 22px;
    border-radius: 30px;
    text-decoration: none;
    color: #2b2b2b;
    background-color: #f6f6f6;
    transition: all 0.25s ease;
}


    .nav-link:hover {
        background-color: #eaeaea;
    }

    .nav-link.outline {
        background: transparent;
        border: 1px solid #2b2b2b;
    }

        .nav-link.outline:hover {
            background-color: #2b2b2b;
            color: #ffffff;
        }

/* Page content spacing */
.main-content {
    padding: 32px 24px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .topbar-inner {
        flex-direction: column;
        gap: 12px;
    }

    .top-actions {
        width: 100%;
        justify-content: center;
    }
}


.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.about-container {
    max-width: 900px;
    margin: auto;
    padding: 0 16px;
}

.company-info h3 {
    font-family: 'Great Vibes', cursive; /* Luxury brand feel */
    font-size: 28px;
    margin-bottom: 12px;
    color: #2b2b2b;
}

.company-info p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    margin: 4px 0;
    color: #333;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 16px;
    color: #555;
}
.social-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease;
}

    .social-btn i {
        font-size: 16px;
    }

    /* Individual Colors */
    .social-btn.facebook {
        background-color: #3b5998;
    }

    .social-btn.instagram {
        background-color: #e1306c;
    }

    .social-btn.tiktok {
        background-color: #010101;
    }

    .social-btn.whatsapp {
        background-color: #25d366;
    }

    /* Hover effect */
    .social-btn:hover {
        opacity: 0.85;
    }
/* About Page Background */
.about-container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.85); /* content readable over image */
    border-radius: 12px;
    /* Shadow for nice effect */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    /* Background image will be set on body */
}

/* Full page background */
body {
    background-image: url('/image/BG.png'); /* <-- tumhara background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/*Image Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px auto;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

    .slide.active {
        display: block;
    }

    .slide img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 12px;
    }

.overlay-text {
    position: absolute;
    top: 20%;
    left: 10%;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

    .overlay-text h1 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin: 0 0 10px 0;
    }

    .overlay-text p {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        margin: 0;
    }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    display: inline-block;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.active-dot {
    background-color: #717171;
}
/*grid css*/

.products-section {
    padding: 50px;
    background: #f9f9f9;
}

.products-section {
    position: relative;
    z-index: 1;
}

.slider-container {
    position: relative;
    z-index: 0;
}


.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
    }

.price {
    color: #e91e63;
    font-weight: bold;
    margin-top: 8px;
}

/*footer*/
.footer {
    text-align: center;
    padding: 15px 0;
    background-color: #f1f1f1;
    position: fixed;
    bottom: 0;
    width: 100%;
}
/*product details page*/
.product-details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px;
    justify-content: center;
}

.product-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info {
    max-width: 500px;
}

    .product-info h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .product-info .price {
        color: #e91e63;
        font-weight: bold;
        margin-bottom: 15px;
    }



.buy-now {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
}


    .buy-now:hover {
        background-color: #128c7e;
    }
/*button  View Details */

.details-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 25px;
    background: #2b2b2b;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

    .details-btn:hover {
        background: #000;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s;
    z-index: 10;
}

    .slider-btn:hover {
        background-color: rgba(0,0,0,0.7);
    }

    .slider-btn.left {
        left: 10px;
    }

    .slider-btn.right {
        right: 10px;
    }

.search-input-custom {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    width: 250px;
    outline: none;
}

.search-wrapper {
    width: 100%;
    max-width: 350px;
}

.search-box {
    width: 100%;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #ea1d5d;
    outline: none;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch !important;
    }

    .search-wrapper {
        max-width: 100%;
    }

    .search-box {
        width: 100%;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
