:root {
    --primary: #6A1B9A;
    /* Deep Purple */
    --secondary: #00838F;
    /* Teal/Cyan */
    --accent: #D81B60;
    /* Magenta Pop */
    --dark: #121212;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Navigation & Logo */
nav {
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

/* Logo Sizing */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 150px;
    /* Controls logo size */
    width: auto;
    object-fit: contain;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
}

/* Hero Section (Shop Photo Background) */
.hero {
    /* The linear-gradient adds a purple/teal tint so text is readable over the photo */
    background: linear-gradient(rgba(106, 27, 154, 0.8), rgba(0, 131, 143, 0.7)), url('images/shop-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    background: white;
    color: var(--primary);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.2s;
}

.hero-btn:hover {
    transform: scale(1.05);
}

/* Product Section */
.product-section {
    padding: 5rem 0;
    background: var(--white);
}

.product-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.product-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.badge {
    background: var(--accent);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
}

/* Services */
.services {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #e9ecef;
    /* Light gray for contrast with white body but light enough for black text */
    color: var(--dark);
    padding: 3rem 0;
    text-align: center;
    margin-top: auto;
}

.logo-white {
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.logo-white span {
    color: var(--secondary);
}

.phone-link {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
    /* In case the logo needs to be readable on dark background, we can add a simple background or filter. 
       Assuming PNG is transparent and text is readable or contrast is sufficient. 
       If not, uncomment the next line to add a white glow */
    /* filter: drop-shadow(0 0 2px white); */
}

.social-links {
    margin: 1rem 0;
}

.social-link {
    color: var(--dark);
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--secondary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* In a real site, you'd replace this with a hamburger menu */
    .hero {
        padding: 5rem 0;
    }
}