:root {
    --bg: #ffffff;
    --accent: #111111; /* Changed to Black */
    --text: #111111;
    --muted: #6a6a6a;
    --border: #e8e8e8;
    --card: #f9f9f9;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --radius: 0px; 
    --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1 { font-size: 2.5em; font-weight: 700; }
h2 { font-size: 2em; font-weight: 600; }
h3 { font-size: 1.2em; font-weight: 500; }
.eyebrow { 
    text-transform: uppercase; 
    font-size: 0.75em; 
    letter-spacing: 1px; 
    color: var(--muted);
    margin-bottom: 4px;
}

/* Layout helpers */
section {
    padding: 60px 5vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Navigation (Logo | Right Aligned Links & Actions) --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 15px 5vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.logo {
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-right: 40px; 
}

.nav-links {
    display: flex; 
    align-items: center; 
    margin-left: auto; /* Pushes the entire block right */
}
.nav-links a {
    margin: 0 18px; 
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
    text-transform: uppercase;
    font-size: 0.95em;
}
.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
}

/* --- Dropdown Styles --- */
.dropdown {
    position: relative;
    height: 100%; 
    display: flex;
    align-items: center;
}
.dropdown > a { 
    margin: 0 18px;
}

.dropdown-menu {
    position: absolute;
    top: 100%; 
    right: 0; 
    transform: none; 
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    min-width: 150px;
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 101; 
    display: flex;
    flex-direction: column;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu a {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    white-space: nowrap;
    text-transform: none; 
    font-weight: 400;
    font-size: 0.9em;
}
.dropdown-menu a:hover {
    background: var(--card);
}
.dropdown-menu a::after {
    content: none;
}
/* --- End Dropdown Styles --- */


.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 20px;
}

.nav-call {
    padding: 8px 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    background-color: var(--accent);
    color: var(--bg);
    transition: opacity 0.2s;
    font-size: 0.9em;
}
.nav-call:hover {
    opacity: 0.8;
}

.nav-cart {
    font-weight: 500;
    display: flex;
    align-items: center;
}
.cart-count {
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    padding: 1px 6px;
    font-size: 0.7em;
    margin-left: 5px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    margin-left: 10px;
}

/* Hero Section */
.hero {
    min-height: 80vh; 
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 80px;
    margin-bottom: 40px;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-home-bg {
    /* HD T-shirt Photo URL for Hero Background */
    background-image: url('http://googleusercontent.com/image_generation_content/0'); 
    background-color: #333; 
}
.hero-content {
    color: #fff;
    max-width: 500px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
    z-index: 2; /* Bring content above the overlay */
    position: relative;
}
.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    line-height: 1.1;
}
.hero-home-bg .hero-content .btn.outline {
    color: #fff;
    border-color: #fff;
}

/* Buttons and Links */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.2s, opacity 0.2s, border-color 0.2s;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
}
.btn.accent {
    background: var(--accent);
    color: var(--bg);
    border: 1px solid var(--accent);
}
.btn.accent:hover {
    opacity: 0.9;
}
.btn.outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.btn.outline:hover {
    background: var(--accent);
    color: var(--bg);
}
.btn.full {
    width: 100%;
    display: block;
}

/* Features/Info Block */
.two-col-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.info-block {
    text-align: center;
}
.info-block h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}
.info-icon {
    font-size: 3em;
    color: var(--accent);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    display: block;
    cursor: pointer;
    transition: transform 0.2s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 400px; 
    background: var(--card);
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2em;
}
.product-details {
    padding: 15px 0;
    text-align: center;
}
.product-details h3 {
    margin-bottom: 5px;
    font-weight: 500;
}
.product-details .price {
    font-weight: 700;
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--accent);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 5vw 20px 5vw;
}
.footer .logo {
    color: #fff;
    margin-right: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.footer-grid a {
    display: block;
    margin-bottom: 8px;
    color: inherit;
    transition: color 0.2s;
    font-size: 0.9em;
}
.footer-grid a:hover {
    color: var(--bg);
}
.footer-grid p {
    margin-bottom: 8px;
}
.footer .eyebrow {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}
.socials a {
    display: inline-block;
    font-size: 1.2em;
    margin-right: 15px;
}
.footer-note {
    text-align: center;
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.85em;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999; 
    display: flex;
    flex-direction: column;
    gap: 15px; 
}
.floating-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, opacity 0.2s;
}
.floating-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
.floating-call {
    background-color: var(--accent); /* Black */
    color: white;
}
.floating-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
}
.floating-btn::before {
    content: ''; 
    font-family: 'Font Awesome 5 Free', Arial, sans-serif; /* Fallback for symbols */
    font-weight: 900;
    font-size: 20px;
}
/* Updated Icons using Unicode */
.floating-call::before {
    content: '\1F4DE'; /* Telephone Receiver */
}
.floating-whatsapp::before {
    content: '\2709'; /* Envelope/Message Icon */
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive adjustments */
@media (max-width: 960px) {
    .navbar {
        padding: 15px 4vw;
    }
    .logo {
        margin-right: 10px; 
    }
    
    /* Show mobile menu toggle */
    .menu-toggle {
        display: block;
    }
    
    /* Mobile menu styles */
    .nav-links {
        display: none; 
        position: absolute;
        top: 60px;
        right: 4vw;
        background: var(--bg);
        flex-direction: column;
        padding: 15px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        width: 200px;
        align-items: flex-start;
        z-index: 90;
        margin-left: 0; 
    }
    .nav-links.open {
        display: flex; 
    }
    .nav-links a {
        margin: 10px 0;
        padding-bottom: 5px;
        width: 100%;
    }
    
    /* Mobile dropdown styling */
    .dropdown .dropdown-menu {
        display: none;
    }
    .dropdown {
        display: block;
        width: 100%;
        height: auto;
    }
    .dropdown > a {
        margin: 10px 0; 
        display: block;
        width: 100%;
        text-align: left;
    }
    
    /* Actions adjustment for mobile header */
    .nav-actions {
        margin-left: auto; 
        gap: 15px;
    }
    .nav-call {
        display: none; /* Hide 'Call Now' button on mobile view */
    }
    
    /* General mobile adjustments */
    .hero-content h1 {
        font-size: 2.8em;
    }
    section {
        padding: 40px 4vw;
    }
    .footer {
        padding: 40px 4vw 20px 4vw;
    }
    .floating-actions {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    .floating-btn::before {
        font-size: 18px;
    }
}