/* =================================================================== */
:root {
    --section_bg_1:
        radial-gradient(circle at 85% 12%, rgba(0, 113, 227, 0.16), transparent 42%),
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.06), transparent 32%),
        var(--bg_sections);

    --section_bg_2:
        radial-gradient(circle at 18% 12%, rgba(0, 113, 227, 0.16), transparent 42%),
        radial-gradient(circle at 85% 82%, rgba(255, 255, 255, 0.06), transparent 32%),
        var(--bg_sections);
}

/* Start Breadcrumb2 */
.breadcrumb2 {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(/img/dc.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
/* end Breadcrumb2 */

/* Start Headlight Section */
.headlights_sec,
.accessories_sec,
.gesture_sec,
.Flo_acc_section,
.gift_cards_sec {
    background: var(--section_bg_2);
}
.headlight-info-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 45px;
    z-index: 2;
}

.main-paragraph {
    font-size: clamp(16px, 2vw, 30px);
    line-height: clamp(22px, 2.5vw, 30px);
    font-weight: 550;
    color: #868686;
}

.main-heading {
    font-weight: 550;
    font-size: clamp(28px, 6vw, 70px);
    line-height: clamp(32px, 6.5vw, 70px);
    color: #000000;
}

.main_heading_small {
    font-size: clamp(24px, 4.5vw, 50px);
    line-height: clamp(28px, 5vw, 55px);
}

/* btn secondary */
.btn_primary_transparent {
    background-color: transparent;
    border: 1px solid #f1ebe4;
}

/* End Headlight Section */

/* Start composite Section */

.composite_sec,
.pro_acc_section,
.halo_acc_section,
.safety_glass_section {
    background: var(--section_bg_1);
}
.card-heading {
    font-size: clamp(18px, 2.5vw, 25px);
    line-height: 1.5;
    color: #ffffff;
}
.card_button {
    width: 98px;
    height: 25px;
    border: 0;
    border-radius: 40px;
    background-color: #0071e3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.card_button_transparent {
    background-color: transparent;
    border: 1px solid #f1ebe4;
}
.card_button {
    color: #fff;
    font-size: 14px;
    line-height: 16.7px;
    font-weight: 550;
}
.composite_card {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
    border: 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
    height: 450px;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    background: #1a1a1a;
    border-radius: 24px;
    isolation: isolate;
}
/* End composite Section */

/* Start Gift Cards Section */
/* Gift Card */
.gift_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
}

/* Background Wrapper */
.gf-images {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(20px, 4vw, 50px) clamp(10px, 2vw, 20px);
    width: 100%;
    aspect-ratio: 4 / 5; /* بدل height ثابت */
    background-image: url(/img/bg-gift-cards@2x.webp);
    background-size: cover; /* أهم تعديل */
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
}

/* Logo */
.gc-logo-icon {
    position: absolute;
    top: clamp(15px, 3vw, 50px);
    left: clamp(15px, 3vw, 40px);
    width: clamp(25px, 4vw, 40px);
}

/* Card */
.gc-price-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1d1d1f;
    border-radius: 16px;
    width: min(90%, 330px);
    min-height: clamp(150px, 25vw, 214px);
    padding: clamp(15px, 3vw, 25px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center احترافي */
}

/* Price */
.gc-bf-card-prices {
    color: white;
    font-size: clamp(22px, 5vw, 40px);
    line-height: 1.2;
    font-weight: 600;
}

/* Footer */
.gc-signature-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

/* Logo Row */
.gc-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gc-logo-wrapper img {
    width: clamp(16px, 3vw, 21px);
}

.gc-logo-wrapper span {
    color: #fff;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 500;
    border-left: 1px solid #fff;
    padding-left: 6px;
}

/* Signature */
.gc-signature {
    color: #fff;
    font-size: clamp(12px, 2vw, 14px);
}

/* Bottom Text */
.gc-bf-card-text {
    text-align: center;
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 500;
    color: #868686;
    margin-top: clamp(10px, 2vw, 20px);
}
/* End Gift Cards Section */