:root {
    --bg-color: #ffffff;
    --text-color: #1f2326;
    --gator-green: #00A36C;
    --light-grey: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-color);
    border-bottom: 2px solid var(--light-grey);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Eurostile Bold Extended', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-img {
    height: 20px;
    width: auto;
    vertical-align: middle;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gator-green);
}

.cart-btn {
    font-weight: 600;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f4f4 100%);
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #555;
}

/* Sharp Edged Button for "Gator" feel */
.btn-primary {
    background-color: var(--gator-green);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); /* Angular cut */
    transition: transform 0.2s, background 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #008256;
    transform: scale(1.05);
}

/* Store & Filters */
.store-section {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--text-color);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--text-color);
    color: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--light-grey);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    /* Sharp bottom right corner */
    border-bottom-right-radius: 20px; 
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--gator-green);
}

.product-card img {
    max-width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: normal;
    font-family: Helvetica, Arial, sans-serif;
}

.product-price {
    font-weight: 600;
    color: var(--gator-green);
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background: var(--text-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: var(--gator-green);
}

.about-section {
    padding: 80px 5%;
}

footer {
    text-align: center;
    padding: 40px;
    background: var(--light-grey);
    font-size: 0.9rem;
}
/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.popup-overlay.active {
    display: flex;
}
.popup-box {
    background: var(--bg-color);
    max-width: 420px;
    width: 90%;
    padding: 2.5rem 2rem;
    position: relative;
    text-align: center;
    border-bottom-right-radius: 20px;
    border: 1px solid var(--light-grey);
    animation: popIn 0.3s ease;
}
@keyframes popIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #999;
}
.popup-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gator-green);
    margin-bottom: 0.5rem;
}
.popup-box h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.popup-box p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}
.popup-email {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--light-grey);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.2s;
}
.popup-email:focus {
    border-color: var(--gator-green);
}
.popup-submit {
    width: 100%;
    padding: 12px;
    background: var(--gator-green);
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
    transition: background 0.2s;
}
.popup-submit:hover {
    background: #008256;
}
.popup-decline {
    display: block;
    margin: 12px auto 0;
    font-size: 0.8rem;
    color: #aaa;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
}
.popup-decline:hover {
    color: #555;
}