/* ==========================================
   SUITS SECTION - ULTRA-LUXURY LAYOUT
========================================== */

.suits-container {
    padding: 20px 8% 100px 8%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Gold top and bottom lines on Suits section header — matching Sectors style */
.suits-container .elegant-section-header {
    border-top: 1px solid rgba(196, 163, 90, 0.35);
    border-bottom: 1px solid rgba(196, 163, 90, 0.35);
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 0;
}

.suits-hero {
    width: 100%;
    height: 580px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.8s var(--ease-luxury);
}

.suits-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease-luxury);
}

.suits-hero:hover .suits-hero-bg {
    transform: scale(1.05);
}

.suits-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.suits-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.badge-flagship {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #C4A35A;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-flagship::before {
    content: '';
    width: 40px;
    height: 1px;
    background: #C4A35A;
}

.suits-hero-title {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 68px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.suits-hero-body {
    font-family: var(--font-main);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.btn-suit-hero {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 35px;
    border: 1px solid #C4A35A;
    color: #C4A35A;
    border-radius: var(--radius-pill);
    font-family: var(--font-main);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s var(--ease-luxury);
    cursor: pointer;
}

.btn-suit-hero:hover {
    background: #C4A35A;
    color: #ffffff;
}

.suit-watermark {
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: var(--font-accent);
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    user-select: none;
    z-index: 1;
}

.suits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.suit-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.6s var(--ease-luxury);
    border: 1px solid rgba(0, 0, 0, 0.03);
    min-height: 600px;
    /* Increased height */
    display: flex;
    flex-direction: column;
}

.suit-card-image {
    height: 380px;
    /* Fixed larger height for images */
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.suit-card-image div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease-luxury);
}

.suit-card:hover .suit-card-image div {
    transform: scale(1.08);
}

.suit-card-info {
    padding: 40px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    /* Allow content to fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.suit-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C4A35A;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.suit-tag::before {
    content: '';
    width: 25px;
    height: 1px;
    background: #C4A35A;
}

.suit-headline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 36px;
    color: #7A1A1A;
    margin-bottom: 12px;
    position: relative;
}

.suit-body {
    font-family: var(--font-main);
    font-weight: 300;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.suit-watermark-small {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    font-family: var(--font-accent);
    font-size: 8rem;
    color: rgba(122, 26, 26, 0.03);
    z-index: -1;
    pointer-events: none;
}

.btn-suit-card {
    display: block;
    width: auto; /* Changed from 100% */
    align-self: flex-end; /* Push to right */
    margin-left: auto; /* Push to right */
    padding: 18px 40px;
    border: 1px solid #C4A35A;
    color: #C4A35A;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    font-family: var(--font-main);
    transition: all 0.4s var(--ease-luxury);
}

.suit-card:nth-child(1) .btn-suit-card:hover {
    background: #591010;
    border-color: #591010;
    color: #ffffff;
}

.suit-card:nth-child(2) .btn-suit-card:hover {
    background: #591010;
    border-color: #591010;
    color: #ffffff;
}

/* Accent Line Sweep */
.suit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #7A1A1A, #C4A35A);
    transition: left 0.8s var(--ease-luxury);
}

.suit-card:hover::after {
    left: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .suits-grid {
        grid-template-columns: 1fr;
    }

    .suits-hero {
        height: 500px;
        padding: 40px;
    }

    .suits-hero-title {
        font-size: 48px;
    }

    .suit-card {
        height: auto;
    }

    .suit-card-image {
        height: 250px;
    }
}
