/* Color Variables & Base Reset */
:root {
    --bg-cream: #FAF7F2;
    --card-beige: #EFE8DE;
    --sage-green: #A8BBA2;
    --text-dark: #3D352E;
    --text-muted: #7A7067;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-cream);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--sage-green);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem 5% 5rem;
    gap: 4rem;
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage-green);
    font-weight: 600;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin: 0.5rem 0 1rem;
}

.hero-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Specs */
.specs-container {
    background-color: var(--card-beige);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.spec-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.color-options {
    display: flex;
    gap: 0.5rem;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.color-dot.sage { background-color: #A8BBA2; }
.color-dot.sand { background-color: #D8C8B8; }
.color-dot.rose { background-color: #CDB5A8; }

.size-options {
    display: flex;
    gap: 0.5rem;
}

.size-btn {
    border: 1px solid var(--text-dark);
    background: transparent;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.size-btn:hover, .size-btn.active {
    background-color: var(--text-dark);
    color: var(--bg-cream);
}

.cta-btn {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--bg-cream);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--sage-green);
}

/* Lookbook & Grid Sections */
.lookbook-section, .items-section {
    padding: 4rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.lookbook-card {
    background-color: var(--card-beige);
    border-radius: 8px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.lookbook-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.lookbook-info {
    padding: 2rem;
    text-align: center;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.item-card {
    text-align: center;
}

.img-wrapper {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.img-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.img-wrapper img:hover {
    transform: scale(1.03);
}

.item-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.price {
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--card-beige);
    font-size: 0.85rem;
    color: var(--text-muted);
}
/* Media Query للشاشات الصغيرة والموبايل */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
        padding: 0;
    }

    .hero-section {
        flex-direction: column;
        padding: 1rem 3%;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}