:root {
    --primary-color: #111111;
    --secondary-color: #333333;
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--primary-color);
    overflow-x: hidden;
}

a {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.6;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 80px 0 40px 0;
    letter-spacing: 2px;
    text-transform: capitalize;
}

/* --- BUTTONS --- */
.btn-dark {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    font-size: 0.75rem;
    border: none;
    cursor: pointer;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-dark:hover {
    background-color: var(--secondary-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    font-size: 0.7rem;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* --- NAVIGATION HEADER --- */
header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 40px;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    background-color: #eae1da;
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
}

.hero-content {
    width: 50%;
    padding-left: 8%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-image {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 35%;
    height: 90%;
}

/* --- NEW ARRIVALS GRID --- */
.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: #fff;
    padding: 40px;
}

.product-card {
    background: #fff;
    text-align: center;
}

.product-img-wrapper {
    height: 350px;
    overflow: hidden;
    background-color: #f7f7f7;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-price {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.75rem;
}

.discount-label {
    color: #999;
    font-size: 0.75rem;
}

.product-rating {
    font-size: 0.65rem;
    color: #aaa;
    margin-bottom: 15px;
}

/* --- COLLECTION GRID --- */
.collection-wrapper {
    background-color: #fff;
    padding: 40px;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.collection-left {
    position: relative;
    height: 620px;
}

.collection-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.col-item {
    position: relative;
    height: 300px;
    background-color: #f7f7f7;
    overflow: hidden;
}

.col-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #111;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    letter-spacing: 0.5px;
}

/* --- BESTSELLER SECTION --- */
.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: #fff;
    padding: 40px;
}

.bs-card {
    position: relative;
}

.bs-img-wrapper {
    height: 380px;
    position: relative;
    background-color: #f7f7f7;
}

.heart-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    z-index: 10;
}

.heart-icon.active {
    color: #e74c3c;
}

.bs-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.bs-info h4 {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.bs-info span {
    font-size: 0.8rem;
    color: #666;
}

.cart-btn {
    background: none;
    border: 1px solid #ccc;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.cart-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* --- NEWSLETTER SECTION --- */
.newsletter {
    background-color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid #f4ece6;
}

.newsletter h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.newsletter p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 0;
    border: none;
    border-bottom: 1px solid #999;
    font-size: 0.85rem;
    outline: none;
    background: transparent;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
}

/* --- BRAND ESSENCE --- */
.essence-section {
    background-color: #fff;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.essence-content {
    width: 50%;
}

.essence-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.essence-content>p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.essence-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1rem;
    color: #8c7a6b;
    width: 20px;
    text-align: center;
}

.essence-image {
    width: 50%;
    height: 450px;
    background-color: #f7f7f7;
}

/* --- FOOTER --- */
footer {
    background-color: #f4ece6;
    padding: 60px 40px 30px 40px;
    font-size: 0.75rem;
    border-top: 1px solid #e5dacb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #555;
    text-transform: none;
}

.map-box {
    height: 120px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 40%, #e5e5e5 10%, transparent 20%),
        linear-gradient(45deg, #dfdfdf 25%, transparent 25%),
        linear-gradient(-45deg, #dfdfdf 25%, transparent 25%);
    background-size: 20px 20px;
    background-color: #f0f0f0;
    position: relative;
}

.map-marker {
    position: absolute;
    top: 40%;
    left: 65%;
    color: #e74c3c;
    font-size: 1.2rem;
}

/* --- MEDIA QUERIES (RESPONSIVE DESIGN) --- */
@media (max-width: 1024px) {

    .arrivals-grid,
    .bestseller-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .essence-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .essence-content,
    .essence-image {
        width: 100%;
    }
}

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

    .logo {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 20px 15px;
        height: auto;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        padding-left: 0;
    }

    .hero-content p {
        margin: 0 auto 30px auto;
    }

    .hero-image {
        display: none;
    }

    footer {
        padding: 40px 20px 20px 20px;
    }

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

    .arrivals-grid,
    .bestseller-grid {
        padding: 20px 0;
        gap: 15px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-left {
        height: 400px;
    }
}

/* --- CONTACT FORM --- */
.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
    background: #fff;
    padding: 40px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 500;
}

/* --- TABLE STYLES --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

table th {
    background-color: #f9f9f9;
    font-weight: 500;
}

.table-responsive {
    overflow-x: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-size: 0.9rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 810px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #fff;
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 810px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}