:root {
    --black: #000000;
    --white: #FFFFFF;
    --amala: #2C2420;
    --tan: #D6C2A1;
    --gbegiri: #F2A100;
    --ewedu: #2D5A27;
    --obe-ata: #C70000;
    --accent: var(--tan);
    --gray-light: #F5F5F5;
    --gray-medium: #888888;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brutalist-title {
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    display: block;
}

.logo-image {
    height: 60px;
    width: auto;
}

.nav-links-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-link:hover {
    opacity: 0.6;
}

/* Optional: Mix Serif with Sans-serif for Brutalist look */
h1, .section-title {
    font-family: 'Times New Roman', serif; /* Or similar to the logo */
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    margin-top: 15vh;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 0.5em;
    font-weight: 400;
    margin-bottom: 3rem;
}

.cta-btn {
    display: inline-block;
    padding: 20px 40px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
}

/* Collection */
.collection-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gray-medium);
}

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

.product-card {
    position: relative;
    cursor: pointer;
}

.product-image-container {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--gray-light);
    margin-bottom: 20px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.add-to-cart {
    padding: 15px 30px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.add-to-cart:hover {
    background: var(--obe-ata);
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-title {
    font-size: 14px;
    font-weight: 700;
}

.product-price {
    font-size: 14px;
    color: var(--gray-medium);
}

/* Customization & Gallery Styles */
.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.thumbnail-row {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.thumb:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.product-desc {
    font-size: 11px;
    color: var(--gray-medium);
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.customization {
    margin: 15px 0;
    border-top: 1px solid var(--gray-light);
    padding-top: 15px;
}

.customization label {
    display: block;
    font-size: 9px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.customization input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-light);
    font-family: inherit;
    font-size: 12px;
    background: var(--white);
}

.customization input:focus {
    outline: none;
    border-color: var(--black);
}

/* Ethos */
.ethos-section {
    padding: 150px 40px;
    background: var(--black);
    color: var(--white);
    display: flex;
    justify-content: center;
    text-align: center;
}

.ethos-content {
    max-width: 800px;
}

.ethos-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.ethos-accent {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.overlay.visible {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
}

.empty-msg {
    text-align: center;
    color: var(--gray-medium);
    margin-top: 40px;
}

.cart-footer {
    border-top: 1px solid var(--gray-light);
    padding-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 900;
}

.checkout-btn {
    width: 100%;
    padding: 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.checkout-btn:hover {
    background: var(--accent);
}

/* Footer */
.main-footer {
    padding: 100px 40px 40px;
    border-top: 1px solid var(--gray-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

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

.footer-col li {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    cursor: pointer;
}

.footer-col li:hover {
    color: var(--accent);
}

.newsletter p {
    font-size: 13px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px;
    border: 1px solid var(--gray-light);
    font-family: inherit;
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-medium);
}

.social-links span {
    margin-left: 20px;
    cursor: pointer;
}

/* Micro-animations */
@keyframes slideInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.view-animate {
    animation: slideInUp 0.6s ease forwards;
}

/* Product Detail Page */
.pdp-container {
    max-width: 1400px;
    margin: 180px auto 100px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 100px;
}

.pdp-gallery-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdp-img-large {
    width: 100%;
    object-fit: cover;
    background: var(--gray-light);
}

.pdp-sticky-info {
    position: sticky;
    top: 180px;
    height: fit-content;
}

.pdp-title {
    font-family: 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
    text-transform: none;
}

.pdp-price {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 28px;
}

.pdp-hr {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 24px 0;
}

.pdp-size-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-medium);
    margin-bottom: 12px;
    display: block;
}

.pdp-size-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.pdp-size-option {
    border: 1px solid #e0e0e0;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.08em;
    cursor: pointer;
    min-width: 48px;
    transition: border-color 0.2s;
}

.pdp-size-option.active {
    border-color: var(--black);
    border-bottom: 2px solid var(--black);
}

.pdp-add-btn {
    width: 100%;
    padding: 15px;
    background: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
}

.pdp-add-btn:hover {
    background: var(--black);
    color: var(--white);
}

.pdp-buy-shop-btn {
    width: 100%;
    padding: 15px;
    background: #5A31F4;
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 30px;
}

.pdp-feature-list {
    list-style: none;
    font-size: 12px;
    color: var(--black);
    letter-spacing: 0.02em;
    line-height: 2.2;
    text-transform: none;
    padding: 0;
    margin-bottom: 24px;
}

.pdp-feature-list li {
    font-style: italic;
    color: #333;
}

.pdp-input-wrapper {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

@media (max-width: 968px) {
    .pdp-container {
        grid-template-columns: 1fr;
        margin-top: 100px;
        gap: 40px;
    }
    .pdp-gallery {
        position: static;
    }
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-overlay span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

/* Accordion Styles */
.pdp-accordion {
    cursor: pointer;
}

.pdp-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.pdp-accordion-content {
    display: none;
    padding-top: 20px;
    font-size: 11px;
    color: var(--gray-medium);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.pdp-accordion-content p {
    margin-bottom: 15px;
}

.pdp-accordion-content strong {
    color: var(--black);
}
