/* Global background & font tweaks */
body {
    background-color: #fff6fa; /* very light pink */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Navbar styling */
.navbar {
    border-bottom: 1px solid #f1d9ea;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Make primary color more feminine (rose / mauve) */
.btn-primary,
.btn-outline-primary:hover,
.page-link,
.badge.bg-primary {
    background-color: #e76da9 !important;
    border-color: #e76da9 !important;
}

.btn-outline-primary {
    color: #e76da9;
    border-color: #e76da9;
}

.btn-outline-primary:hover {
    color: #fff;
}

/* Links in navbar */
.navbar-light .navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #e76da9;
}

/* Cards / product tiles */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(231, 109, 169, 0.08);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(231, 109, 169, 0.15);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

/* Product price styling */
.card .card-body strong,
h3.text-primary {
    color: #d25594 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #3b2940;
}

/* Category title spacing */
h1.mb-4 {
    font-weight: 700;
}

/* Footer */
footer {
    background: #f8e9f3 !important;
    color: #7b5a7e;
}

/* Cart page table tweaks */
.table thead th {
    border-bottom-width: 2px;
    border-color: #f1d9ea;
}

.table tbody tr:hover {
    background-color: #fff9fd;
}

/* Buttons – rounded & softer */
.btn {
    border-radius: 999px;
    font-weight: 500;
}

.btn-lg {
    padding: 0.7rem 1.6rem;
}

/* Form controls */
.form-control,
.form-select {
    border-radius: 999px;
    border-color: #f1d9ea;
}

.form-control:focus,
.form-select:focus {
    border-color: #e76da9;
    box-shadow: 0 0 0 0.15rem rgba(231, 109, 169, 0.25);
}

/* Admin tables minor polish */
.table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: #fff9fd;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .card-img-top {
        height: 180px;
    }
}
/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
}

.whatsapp-float a {
    position: relative;  /* IMPORTANT — required for animation + SVG */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* SVG icon inside the button */
.whatsapp-float svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.whatsapp-float a:hover {
    transform: translateY(-3px);
    background-color: #1ebe5d;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

/* Optional pulse animation */
.whatsapp-float a::after {
    content: "";
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
/* Hide the first (duplicate) Shop by Category block */
.shop-by-category:first-of-type {
  display: none !important;
}


/* ========================================
   NEW HEADER STYLE + PINK BACKGROUND
   ======================================== */

/* Force pink background everywhere */
body, main, html {
    background-color: #fff6fa !important;
}

/* Override Bootstrap bg-light to pink */
.bg-light {
    background-color: #fff6fa !important;
}

/* Ensure containers are transparent */
.container, .container-fluid {
    background-color: transparent !important;
    max-width: 1440px;
}

.position-relative {
    background-color: transparent !important;
}

/* Text primary pink */
.text-primary {
    color: #e76da9 !important;
}

/* New Header Navbar */
.navbar {
    background-color: white !important;
    border-bottom: 1px solid #f1d9ea;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #e76da9 !important;
}

/* Navbar links */
.navbar-light .navbar-nav .nav-link,
.navbar .btn-link {
    color: #555;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar .btn-link:hover {
    color: #e76da9 !important;
}

/* Dropdown button styling */
.dropdown-toggle {
    color: #555 !important;
    font-weight: 600;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    color: #e76da9 !important;
}

/* Dropdown menu */
.dropdown-menu {
    border: 1px solid #f1d9ea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background-color: #fff6fa;
    color: #e76da9;
}

/* Search Bar */
.input-group .form-control {
    border-color: #f1d9ea;
}

.input-group .form-control:focus {
    box-shadow: 0 2px 4px rgba(231, 109, 169, 0.2);
    border-color: #e76da9;
}

.input-group-text {
    background-color: white;
    border-color: #f1d9ea;
}

/* ========================================
   FOOTER STYLING - PINK THEME (FIXED!)
   ======================================== */

/* Footer background - light pink instead of dark */
footer {
    background-color: #f8e9f3 !important;
    color: #7b5a7e !important;
    padding: 40px 0 20px 0;
    margin-top: 60px;
}

/* Override any dark backgrounds */
footer.bg-dark,
footer .bg-dark {
    background-color: #f8e9f3 !important;
}

/* Footer headings - pink color */
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #e76da9 !important;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Footer text color */
footer p, footer li, footer span {
    color: #7b5a7e !important;
}

/* Footer links - visible purple-brown */
footer a {
    color: #7b5a7e !important;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #e76da9 !important;
}

/* Footer bottom border */
footer .border-top {
    border-color: #f1d9ea !important;
    padding-top: 20px;
    margin-top: 30px;
}

/* Footer text variants */
footer .text-muted,
footer small {
    color: #9b7a9e !important;
}

/* Footer icons */
footer .bi,
footer i {
    color: #7b5a7e !important;
}

footer .bi:hover,
footer i:hover {
    color: #e76da9 !important;
}
/* ========================================
   FOOTER TEXT VISIBILITY FIX
   Make all footer text DARK instead of white
   ======================================== */

/* Footer link colors - dark purple/brown for visibility */
footer a,
footer a:link,
footer a:visited {
    color: #5a3d5e !important;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #e76da9 !important;
}

/* Footer text - darker for visibility */
footer,
footer p,
footer li,
footer span,
footer div {
    color: #5a3d5e !important;
}

/* Footer headings - pink */
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #e76da9 !important;
    font-weight: 700;
}

/* Copyright and small text - medium dark */
footer small,
footer .text-muted {
    color: #6b4d6f !important;
}

/* Social media icons - dark */
footer .bi,
footer i,
footer svg {
    color: #5a3d5e !important;
}

footer .bi:hover,
footer i:hover,
footer svg:hover {
    color: #e76da9 !important;
}

/* Override any text-white classes in footer */
footer .text-white,
footer .text-light {
    color: #5a3d5e !important;
}

/* ========================================
   MATCH ALL SECTIONS TO PINK THEME
   Remove white boxes, blend with pink background
   ======================================== */

/* Category section - remove white background */
.category-section,
.category-container,
.category-items {
    background-color: transparent !important;
}

/* Product cards - soft pink instead of white */
.card {
    background-color: #fffbfd !important;
    border: 1px solid #f8d9ed !important;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(231, 109, 169, 0.08);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(231, 109, 169, 0.15);
    border-color: #f1d9ea !important;
}

/* Section containers - transparent or light pink */
.container,
.container-fluid {
    background-color: transparent !important;
}

/* Featured Products section */
.featured-section,
.product-section {
    background-color: transparent !important;
}

/* Any white background sections */
.bg-white {
    background-color: #fffbfd !important;
}

/* Row elements */
.row {
    background-color: transparent !important;
}

/* Category tiles/boxes */
.category-box,
.category-card {
    background-color: #fffbfd !important;
    border: 1px solid #f8d9ed !important;
    transition: all 0.3s ease;
}

.category-box:hover,
.category-card:hover {
    background-color: white !important;
    box-shadow: 0 4px 12px rgba(231, 109, 169, 0.12);
}

/* Sections wrapper */
section {
    background-color: transparent !important;
}

/* Main content */
main {
    background-color: #fff6fa !important;
}
