@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* --- Incarnage.com Precision Overhaul --- */

/* Hide Cluttered Header Sections */
.header-top, .header-middle, .header-bottom .primary-menu-button, .view-category-wrapper {
    display: none !important;
}

/* Minimalist Header Redesign */
.header-area {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: #fff !important;
    font-family: 'Montserrat', sans-serif;
}

.header-bottom {
    background: transparent !important;
    padding: 10px 0;
}

.header-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-menu {
    margin: 0 auto !important;
}

.site-menu li a {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 10px 15px !important;
    color: #000 !important;
}

.site-menu li a:hover, .site-menu li a.active {
    background: transparent !important;
    color: #555 !important;
}

/* Hero Section */
.category-hero-section {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 900;
    font-style: italic;
    color: #fff !important;
    line-height: 0.9;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #fff !important;
    letter-spacing: 6px;
    font-weight: 500;
    margin-bottom: 30px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Category Cards - Large & Portrait */
.incarnage-category-card {
    border-radius: 0;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 4 / 5;
    background: #f1f1f1;
}

.incarnage-category-card:hover .card-bg-image img {
    transform: scale(1.05);
}

.card-bg-image {
    width: 100%;
    height: 100%;
}

.card-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    text-align: left;
}

.category-name-overlay {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    margin: 0;
}

/* Product Cards Consistency - Perfect Incarnage 2:3 Ratio */
.incarnage-product-card {
    border: none !important;
    background: #fff;
    margin-bottom: 40px;
}

.product-image-ratio {
    display: block;
    aspect-ratio: 2 / 3; /* Exact Fashion Ratio */
    overflow: hidden;
    position: relative;
    background: #f1f1f1;
}

.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-info-minimal {
    padding: 12px 0;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.product-title-refined {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.product-title-refined a {
    color: #000 !important;
}

.product-price-refined {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.product-price-refined .amount {
    color: #D72128; /* Incarnage Red for Prices */
}

/* Color Swatches placeholder */
.product-colors-placeholder {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.color-dot {
    width: 15px;
    height: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    display: inline-block;
}

/* Global Polish */
body {
    font-family: 'Outfit', sans-serif;
    color: #000;
}

.pt-60 { padding-top: 100px; }
.pb-60 { padding-bottom: 100px; }

@media (max-width: 991px) {
    .hero-title { font-size: 4rem; }
    .category-hero-section { height: 60vh; }
}

/* Hero Buttons Styling */
.btn-hero-black {
    background-color: #fff !important;
    color: #000 !important;
    padding: 16px 45px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    letter-spacing: 2px;
    border-radius: 5px;
    border: 2px solid #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero-black:hover {
    background-color: transparent !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.hero-btns {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 575px) {
    .hero-btns {
        flex-direction: column;
        padding: 0 20px;
    }
    .btn-hero-black {
        margin: 5px 0;
        width: 100%;
        padding: 12px 30px !important;
    }
}

/* Landscape Category Cards */
.modern-landscape-category {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.modern-landscape-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-landscape-ratio {
    display: block;
    position: relative;
    background: #f8f9fa;
    text-decoration: none !important;
}

.category-landscape-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.modern-landscape-category:hover .category-landscape-img {
    transform: scale(1.08);
}

.category-landscape-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
    z-index: 2;
}

.category-landscape-title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 1px;
}

.category-landscape-btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.modern-landscape-category:hover .category-landscape-btn {
    opacity: 1;
}

.category-landscape-btn::after {
    content: "→";
    transition: transform 0.3s;
}

.modern-landscape-category:hover .category-landscape-btn::after {
    transform: translateX(5px);
}