/* Attire Section */
.attire-section {
    padding: 80px 20px 40px;
    background: transparent;
    position: relative;
}

.attire-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 50px 60px;
    background: #FFFEF9;
    border: 1px solid rgba(93, 122, 79, 0.55);
    border-radius: 24px;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.16)) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.08));
}

.attire-content::before {
    content: '';
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(93, 122, 79, 0.25);
    border-radius: 18px;
    pointer-events: none;
}

.attire-content h2 {
    font-family: 'Alex Brush', cursive;
    font-size: 3.5rem;
    color: #A0826D;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 400;
    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.8),
        -1px -1px 0 rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05);
}

.attire-theme {
    font-size: 1rem;
    font-style: italic;
    color: #6B5D52;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Color Swatches */
.attire-swatches {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 40px;
}

.attire-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
    flex-shrink: 0;
}

/* Ladies / Gentlemen Blocks */
.attire-block {
    margin-bottom: 36px;
}

.attire-block:last-child {
    margin-bottom: 0;
}

.attire-block-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 6px;
}

.attire-block-desc {
    font-style: italic;
    color: #6B5D52;
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Photo Placeholder */
.attire-photo-slot {
    width: 100%;
    min-height: 200px;
    background: #FFFEF9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
}

.attire-photo-slot img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    object-fit: contain;
    background: #FFFEF9;
}

.attire-placeholder-text {
    color: rgba(160, 130, 96, 0.55);
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .attire-content {
        padding: 36px 28px;
    }
    .attire-content h2 {
        font-size: 2.8rem;
    }
    .attire-swatch {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .attire-section {
        padding: 60px 16px 30px;
    }
    .attire-content {
        padding: 32px 20px;
    }
    .attire-content h2 {
        font-size: 2.4rem;
    }
    .attire-swatch {
        width: 36px;
        height: 36px;
    }
    .attire-swatches {
        gap: 10px;
    }
    .attire-block-title {
        font-size: 1.5rem;
    }
}
