:root {
    --primary-color: #d63384; /* Hot Pink */
    --secondary-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* 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;
}