/* GENERAL SETTINGS */
:root {
    --accent: #d4a373; /* Luxury Gold/Nude Tone */
    --dark: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.text-accent { color: var(--accent); }
.btn-accent {
    background-color: var(--accent);
    color: white;
    border: none;
}
.btn-accent:hover {
    background-color: #bc8a5f;
    color: white;
}

/* SECTION: Promo Bar Styling */
.promo-bar {
    background-color: #000000 !important; /* Solid Black */
    color: #ffffff !important; /* Pure White */
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Makes it look more professional */
}

/* Ensuring the link inside stays white and has a nice hover */
.promo-bar a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.promo-bar a:hover {
    opacity: 0.8;
    color: #ffffff;
}

/* HERO SECTION */
/* SECTION: HERO PADDING & ALIGNMENT */
.hero-container {
    /* Large padding to separate from Sticky Nav (140px) and Bottom Section (100px) */
    padding: 160px 0 120px 0 !important; 
    background-color: #fafafa;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Bullet Points Padding */
.benefit-list li {
    margin-bottom: 22px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

/* IMAGE WRAPPER & 70% WIDTH LOGIC */
.hero-image-wrapper {
    position: relative;
    display: inline-block; /* Wraps tightly around the 70% image */
    width: 100%;
}

.main-hero-img {
    width: 70% !important; /* Your specific requirement */
    height: 520px; 
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Overlay Positioned relative to the 70% image */
.prod-info-overlay {
    position: absolute;
    bottom: 40px;
    right: 15%; /* Adjusted for 70% width to stay on the image edge */
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 15px 0 0 15px;
    box-shadow: -15px 15px 30px rgba(0,0,0,0.1);
    border-right: 6px solid var(--accent);
    text-align: left;
    z-index: 5;
}

/* Ensuring the Left text doesn't touch the image */
.hero-content {
    padding-right: 40px;
}

/* Responsive Padding Fix */
@media (max-width: 991px) {
    .hero-container {
        padding: 120px 0 60px 0 !important;
    }
    .main-hero-img {
        width: 100% !important;
        height: 400px;
    }
    .prod-info-overlay {
        right: 0;
    }
}
/* Custom Fonts for Benefit Section */
.extension-title {
    font-family: 'Playfair Display', serif; /* লাক্সারি লুকের জন্য */
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.extension-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.85;
}

/* SECTION: BENEFITS DARK THEME (Updated for Extensions) */
.bg-black-section {
    background-color: #000000 !important;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.benefit-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 2.5rem; 
    color: var(--accent); 
    display: inline-block;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.benefit-card:hover .icon-box {
    color: #ffffff; 
}

.text-secondary {
    color: #a0a0a0 !important; 
}

#benefits.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}
/* SECTION: WHY CHOOSE US STYLING */

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.why-img-wrapper {
    padding: 20px; /* Space for the floating badge */
}

.why-img-wrapper img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.why-img-wrapper:hover img {
    filter: grayscale(0%);
}

/* Floating Experience Badge */
.exp-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    min-width: 160px;
    border-bottom: 5px solid var(--accent);
}

.ls-1 { letter-spacing: 1px; }

/* Reason Icon Styling */
.reason-icon {
    width: 60px;
    height: 60px;
    background-color: #f9f6f2; /* Soft beige background */
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.reason-item:hover .reason-icon {
    background-color: var(--accent);
    color: #fff;
    transform: rotateY(360deg);
}

.reason-item h5 {
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.reason-item:hover h5 {
    color: var(--accent);
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .why-img-wrapper img {
        height: 400px;
    }
    .exp-badge {
        right: 20px;
        bottom: 10px;
    }
}




/* SECTION: PRODUCT COLLECTION HOVER EFFECT */

.product-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Image Container Logic */
.img-container {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.img-container img {
    width: 100%;
    height: 100%; /* Fixed height for uniformity */

    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Image Setup */
.hover-img {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0; /* Hidden by default */
    transform: scale(1.05); /* Slight zoom for effect */
}

/* Hover Trigger */
.product-wrapper:hover .base-img {
    opacity: 0;
}

.product-wrapper:hover .hover-img {
    opacity: 1;
    transform: scale(1); /* Return to normal scale */
}

/* Card Shadow Hover */
.product-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
    transform: translateY(-5px);
}

/* Overlay Button Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-wrapper:hover .overlay {
    opacity: 1;
}
/* LIVE SALE POPUP */
.sale-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    z-index: 1000;
    border-left: 5px solid var(--accent);
    transform: translateY(200px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sale-popup.show {
    transform: translateY(0);
}

.user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.x-small { font-size: 10px; }


/* SECTION: PREMIUM FAQ STYLING */

#faq {
    background-color: #fcfbf9 !important; /* Very soft warm white */
}

.accordion-item {
    border: none !important;
    margin-bottom: 15px;
    border-radius: 12px !important;
}

.accordion-button {
    padding: 20px 25px;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    font-size: 1.1rem;
    box-shadow: none !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--accent) !important;
    border-bottom: 1px solid #eee;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* Custom arrow color */
.accordion-button::after {
    filter: grayscale(1);
}

.accordion-body {
    padding: 25px;
    background-color: #ffffff;
    line-height: 1.8;
}

/* Animation on hover */
.accordion-item:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}


/* BANNER SECTION STYLING */
#banner-section {
    background-color: #fff;
    margin-bottom: 50px; /* Space before the next section */
}

.banner-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Optional: subtle animation on load */
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustment: Ensures image stays clear on mobile */
@media (max-width: 768px) {
    #banner-section {
        margin-bottom: 30px;
    }
    .banner-img {
        min-height: 200px; /* Prevents it from getting too small on phones */
        object-position: center;
    }
}