:root {
    --primary-color: #d63384; /* Hot Pink */
    --secondary-color: #f8f9fa;
    --dark-color: #212529;
}

html {
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Override Bootstrap Primary Text Color */
.text-primary {
    color: var(--primary-color) !important;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}
.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 10px;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1561181286-d3fee7d55364?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.btn-main {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}
.btn-main:hover {
    background-color: #a61e61;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.4);
}

/* Sections General */
section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-color);
}
.section-title span {
    color: var(--primary-color);
}

/* Featured Products */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    background: white;
}
.product-card:hover {
    transform: translateY(-10px);
}
.product-img-wrapper {
    overflow: hidden;
    height: 250px;
}
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover img {
    transform: scale(1.1);
}

/* Gallery */
.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}
.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(70%);
}

/* Contact & Map */
.contact-box {
    padding: 30px;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 10px;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    border: none;
}

footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1030;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
.bottom-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.bottom-nav-item:hover, .bottom-nav-item:active {
    color: var(--primary-color);
}
.mobile-cart-badge {
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 0.55rem;
    padding: 0.35em 0.5em;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 70px; /* Space for the bottom nav */
    }
}

/* Lightbox Overlay */
.lightbox {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.show {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: white;
    font-weight: bold;
    cursor: pointer;
    z-index: 2010;
    user-select: none;
    transition: color 0.3s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--primary-color); }
.lightbox-close { top: 20px; right: 30px; font-size: 40px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); font-size: 50px; padding: 20px; background: rgba(0,0,0,0.2); border-radius: 5px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }