/* ================= BRIDE PROFILES ================= */

.bride-section {
    padding: 50px 0 80px;
    background: #fff4f6;
    text-align: center;
}

/* HEADER */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: -10px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.section-header span {
    color: #f43f5e;
}

.section-header .line {
    width: 70px;
    height: 2px;
    background: #f43f5e;
}

.section-subtitle {
    margin: 12px 0 50px;
    color: #666;
    font-size: 16px;
}

/* SLIDER */
.bride-section .bride-slider {
    position: relative;
    max-width: 1320px;   /* 4 cards × 300 + gaps */
    margin: 0 auto; 
    padding: 0 60px;     /* center the whole slider */
    display: block;
}

.bride-viewport{
    overflow: hidden;
    width: 100%;
    padding: 0;  
    position: relative;
}

/* TRACK */
.bride-track {
    display: flex;
    gap: 28px;
    transition: transform 0.45s ease;
    overflow: visible;
    width: max-content;
}

.bride-track::-webkit-scrollbar {
    display: none;
}

/* ARROWS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff5a7a, #f43f5e);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn.left {
    left: 10px;
}

.slider-btn.right {
    right: 10px;
}

/* CARD */
.bride-card {
    width: 300px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    position: relative;
    flex-shrink: 0;
    margin-left: 0;

}

.bride-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* PROFILE ID */
.profile-id {
    position: absolute;
    top: 210px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #f43f5e;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* BODY */
.card-body {
    padding: 18px 20px 22px;
}

.bride-name {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

/* META GRID */
.bride-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
    margin-bottom: 18px;
}

.bride-meta-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bride-meta-grid li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.bride-meta-grid i {
    color: #f43f5e;
    font-size: 14px;
}

/* VIEW PROFILE BUTTON */
.btn-view {
    display: block;
    background: #f43f5e;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-view:hover {
    background: #e11d48;
}

/* DOTS */
.slider-dots {
    margin: 30px 0 20px;
    text-align: center;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #f43f5e;
    transform: scale(1.2);
}

.dot.active {
    background: #f43f5e;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bride-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px;
    }
    
    .slider-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 22px;
        white-space: nowrap;
    }

    .bride-section {
        margin-top: 0;
        padding-top: 20px;
    }

    .bride-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px;
    }

    .bride-slider::-webkit-scrollbar {
        display: none;
    }

    .bride-card {
        scroll-snap-align: start;
        margin-left: 0;
    }
}
