@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #0088cc;
    /* Light Blue */
    --primary-dark: #006699;
    --secondary: #f0f7ff;
    /* Very Light Blue */
    --text: #333333;
    --text-muted: #666666;
    --bg: #ffffff;
    --card-bg: #ffffff;
    --accent: #ff8c00;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --header-height: 80px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand-name {
    font-family: 'Playfair Display', serif;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    /* Increased padding for better gaps */
}

section {
    padding: 100px 0;
}

main {
    margin-top: 40px;
}

/* --- Header --- */
header {
    height: var(--header-height);
    background: white;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 45px;
    transition: var(--transition);
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav-center {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.action-icon {
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.1);
}

.action-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 136, 204, 0.2);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px solid white;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* --- Page Banner (Hidden) --- */
.page-banner {
    display: none;
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.05);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 12px;
    /* More modern slightly rounded corners instead of pill */
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: #0088cc;
    /* Solid premium blue */
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #0077b3;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

/* --- Products --- */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.product-img-wrapper {
    width: 100%;
    height: 420px;
    margin-bottom: 25px;
    background: #f8faff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 136, 204, 0.1);
}

.product-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.1) rotate(2deg);
}

.product-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text);
    min-height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}

.btn-tiny {
    padding: 8px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    width: auto;
    white-space: nowrap;
}

/* --- Footer --- */
footer {
    padding: 80px 0 30px;
    background: #fff;
}

.footer-top-line {
    border-top: 3px solid var(--primary);
    margin-bottom: 50px;
    opacity: 0.1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-info h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom-line {
    border-top: 1px solid #eee;
    padding-top: 30px;
    text-align: center;
    margin-top: 50px;
}

/* --- Modals --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    width: 95%;
    max-width: 550px;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }

    .nav-center {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .nav-center.active {
        display: flex;
        animation: slideIn 0.5s ease;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nav-links a {
        font-size: 1.8rem;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand-name {
        font-size: 22px;
    }

    .logo-img {
        height: 40px;
    }

    .product-img-wrapper {
        height: 320px;
    }

    .section-title {
        font-size: 2.22rem;
    }

    .nav-right {
        gap: 12px;
    }

    .action-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .btn {
        width: 100%;
        padding: 18px 20px;
    }
}