/* =========================================

   1. General Styling & Variables

   ========================================= */

:root {
    /* Brand Colors */
    --primary-color: #d63384; /* Vibrant Pink */
    --primary-dark: #a61e5c;  /* Darker shade for hover/text */
    --primary-light: #fce4ec; /* Light Pink Background */
    --soft-pink-bg: #fff5f8;  /* Very subtle pink for body background */
    --accent-gold: #c5a059;   /* Gold for luxury accents */

    /* Neutrals */
    --text-dark: #2d2d2d;     /* Softer black */
    --text-muted: #6c757d;    /* Muted text */
    --white: #ffffff;
    --black: #000000;
    --border-color: #f0f0f0;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(214, 51, 132, 0.15);
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--soft-pink-bg);
    line-height: 1.7; /* Improved readability */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================================
   2. Top Bar & Navbar
   ========================================= */

.top-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}



.nav-link {

    font-weight: 500;

    color: #333 !important;

    font-size: 0.95rem;

    margin: 0 8px;

    transition: color 0.3s;

}



.nav-link:hover, .nav-link.active {

    color: var(--primary-color) !important;

}



.nav-icons .btn-icon {
    color: #333;
    font-size: 1.2rem;
    margin-left: 15px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-block;
}

.nav-icons .badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    pointer-events: none;
    z-index: 10;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: none;
    z-index: 1000;
    margin-top: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.search-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    z-index: -1;
}

.search-dropdown .input-group {
    background: #f8f9fa;
    border-radius: 30px;
    padding: 5px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.search-dropdown .input-group:focus-within {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}

.search-dropdown .form-control {
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.search-dropdown .form-control:focus {
    box-shadow: none;
}

.search-dropdown .btn-outline-secondary {
    border: none !important;
    background: transparent !important;
    color: #999 !important;
    padding: 0 15px;
    transition: color 0.3s ease;
}

.search-dropdown .btn-outline-secondary:hover {
    color: var(--primary-color) !important;
}

.search-dropdown.active {
    display: block;
    animation: slideDownFade 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes slideDownFade {
    from { 
        opacity: 0; 
        transform: translateY(-15px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@media (max-width: 991px) {
    .search-dropdown {
        width: 100%;
        left: 0;
        right: 0;
        position: fixed;
        top: 60px; /* Adjust based on navbar height */
        margin-top: 0;
    }
}

.close-search:hover {
    transform: rotate(90deg);
    color: var(--primary-color);
}




/* =========================================
   3. Hero Section
   ========================================= */

.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--soft-pink-bg) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 230, 240, 0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-tag {
    background-color: white;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--primary-light);
    opacity: 0.5;
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-img {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}



/* =========================================

   4. Luxury Beauty Section

   ========================================= */

.luxury-section {

    padding: 80px 0;

}



.feature-pill {

    background-color: var(--primary-light);

    color: #333;

    padding: 8px 18px;

    border-radius: 30px;

    font-weight: 600;

    font-size: 0.85rem;

    display: inline-flex;

    align-items: center;

    margin-right: 10px;

    margin-bottom: 10px;

}



.feature-pill i {

    color: var(--primary-color);

    margin-right: 8px;

}



.luxury-img-container {

    position: relative;

    border-radius: 15px;

    overflow: hidden;

}



.limited-badge {

    background-color: var(--primary-color);

    color: white;

    padding: 8px 20px;

    border-radius: 30px;

    font-weight: 700;

    font-size: 0.8rem;

    display: inline-block;

    position: absolute;

    bottom: 30px;

    left: 30px;

    z-index: 2;

}



/* =========================================

   5. Brand Grid (Enhanced)

   ========================================= */

.brand-grid-item {
    text-align: center;
    margin-bottom: 20px;
}

.brand-card-inner {
    background: white;
    border-radius: 50%; /* Circle shape */
    width: 120px;
    height: 120px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 3px solid #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transform: scale(0.8);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 0;
}

.brand-grid-item:hover .brand-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(214, 51, 132, 0.25);
    border-color: var(--primary-light);
}

.brand-grid-item:hover .brand-card-inner::before {
    opacity: 0.05; /* Subtle pink glow background */
    transform: scale(1);
}

.brand-img-logo {
    width: 100%;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.brand-grid-item:hover .brand-img-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}



/* =========================================

   6. Brand Marquee

   ========================================= */

.brand-marquee {

    background-color: var(--primary-color);

    padding: 20px 0;

    overflow: hidden;

    white-space: nowrap;

    margin-bottom: 50px;

}



.marquee-content {

    display: inline-block;

    animation: marquee 20s linear infinite;

}



.marquee-item {

    color: white;

    font-weight: 800;

    font-size: 1.5rem;

    margin: 0 40px;

    text-transform: uppercase;

    letter-spacing: 2px;

}



@keyframes marquee {

    0% { transform: translateX(0); }

    100% { transform: translateX(-50%); }

}



/* =========================================

   7. Collection Section

   ========================================= */

.collection-item {

    cursor: pointer;

}



.collection-card {

    background: white;

    border-radius: 15px;

    padding: 25px 15px;

    text-align: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    border: 1px solid rgba(0,0,0,0.02);

}



.collection-item:hover .collection-card {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.15); /* Soft Pink Shadow */

    border-color: rgba(255, 20, 147, 0.2);

}



.collection-img {

    width: 100px;

    height: 100px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 15px;

    transition: transform 0.3s, box-shadow 0.3s;

    border: 3px solid #fff;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

}



.collection-item:hover .collection-img {

    transform: scale(1.1);

    border-color: var(--primary-color);

}



.collection-title {

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 5px;

    color: #333;

}



.collection-count {

    font-size: 0.85rem;

    color: #888;

    background: #f8f9fa;

    padding: 4px 12px;

    border-radius: 20px;

    display: inline-block;

    transition: all 0.3s;

}



.collection-item:hover .collection-count {

    background: var(--primary-light);

    color: var(--primary-color);

}



/* =========================================
   8. Product Cards (Featured & Discount)
   ========================================= */

.section-header {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-header h2 {
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: inline-block;
    position: relative;
}

/* Section header underline removed */

.product-card-enhanced {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.product-card-enhanced:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-img-container {
    position: relative;
    height: 300px; /* Slightly taller */
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-enhanced:hover .product-img-container img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(214, 51, 132, 0.3);
}

.discount-badge {
    position: absolute;
    top: 45px;
    left: 15px;
    background-color: #ff4757;
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.product-action-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--text-dark);
    transition: var(--transition-base);
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    transform: translateX(10px);
}

.product-card-enhanced:hover .product-action-btn {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: white;
}

.product-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-box {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 12px;
}

.original-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.add-to-cart-btn-block {
    display: block;
    width: 100%;
    background-color: var(--primary-color); /* Pink button */
    color: white;
    text-align: center;
    padding: 14px 0;
    border: none;
    font-weight: 600;
    transition: var(--transition-base);
    border-radius: 0; /* Flush with bottom */
    margin-top: auto;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.add-to-cart-btn-block:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Discount Section Cards */
.discount-card {
    border: none;
    border-radius: 12px;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.discount-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.discount-card .p-3 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 25px !important;
}

.discount-card .add-to-cart-btn-block {
    margin-top: auto;
}



.discount-header {

    background-color: var(--primary-light);

    color: var(--primary-color);

    display: inline-block;

    padding: 5px 20px;

    border-radius: 20px;

    font-weight: 600;

    font-size: 0.9rem;

    margin-bottom: 15px;

}



.discount-save-text {

    font-size: 0.85rem;

    color: #28a745;

    font-weight: 600;

    margin-top: 5px;

}



/* =========================================

   9. Deal of the Day

   ========================================= */

.deal-section {

    background-color: var(--white);

    border-radius: 20px;

    box-shadow: 0 0 20px rgba(0,0,0,0.05);

    overflow: hidden;

}



.deal-content {

    padding: 50px;

}



.deal-tag {

    background-color: var(--primary-light);

    color: var(--primary-color);

    padding: 5px 15px;

    border-radius: 20px;

    font-size: 0.85rem;

    font-weight: 600;

    display: inline-block;

    margin-bottom: 10px;

}



/* =========================================

   10. Customer Reviews (Video)

   ========================================= */

.review-card-video {

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    background: var(--white);

    height: 100%;

    border: 1px solid #f0f0f0;

    transition: transform 0.3s;

}



.review-card-video:hover {

    transform: translateY(-5px);

}



.review-video-thumb {

    position: relative;

    height: 250px;

    overflow: hidden;

}



.review-video-thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s;

}



.review-card-video:hover .review-video-thumb img {

    transform: scale(1.05);

}



.play-btn-overlay {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 50px;

    height: 50px;

    background: rgba(255, 255, 255, 0.9);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s;

    color: var(--primary-color);

    font-size: 1.2rem;

}



.play-btn-overlay:hover {

    background: var(--primary-color);

    color: white;

    transform: translate(-50%, -50%) scale(1.1);

}



.social-tag {

    position: absolute;

    top: 15px;

    right: 15px;

    padding: 4px 10px;

    border-radius: 4px;

    color: white;

    font-size: 0.7rem;

    font-weight: 600;

    text-transform: uppercase;

    z-index: 2;

}



.tag-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

.tag-youtube { background-color: #ff0000; }

.tag-facebook { background-color: #1877f2; }



.user-role-tag {

    position: absolute;

    top: 15px;

    left: 15px;

    background-color: #333;

    color: white;

    padding: 4px 10px;

    border-radius: 4px;

    font-size: 0.7rem;

    font-weight: 600;

    z-index: 2;

}



.user-role-tag.role-expert { background-color: #f39c12; }

.user-role-tag.role-artist { background-color: #9b59b6; }

.user-role-tag.role-customer { background-color: #3498db; }



.video-caption {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    background: rgba(0,0,0,0.7);

    color: white;

    padding: 10px 15px;

    font-size: 0.8rem;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}



.review-content {

    padding: 20px;

}



.reviewer-profile {

    display: flex;

    align-items: center;

    margin-bottom: 12px;

}



.reviewer-img {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    margin-right: 10px;

    border: 2px solid var(--primary-light);

}



.verified-badge {

    color: var(--primary-color);

    font-size: 0.7rem;

    margin-left: 5px;

    background: var(--primary-light);

    padding: 2px 6px;

    border-radius: 10px;

    font-weight: 600;

}



.review-text {

    font-size: 0.85rem;

    color: #555;

    line-height: 1.5;

    margin-bottom: 15px;

}



.review-stats {

    display: flex;

    justify-content: space-between;

    color: #999;

    font-size: 0.8rem;

    border-top: 1px solid #eee;

    padding-top: 12px;

}



/* =========================================

   11. Instagram Feed

   ========================================= */

.insta-card {

    border-radius: 15px;

    overflow: hidden;

    position: relative;

    height: 300px;

    cursor: pointer;

}



.insta-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s;

}



.insta-card:hover img {

    transform: scale(1.1);

}



.insta-play-btn {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 45px;

    height: 45px;

    background: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-color);

    font-size: 1.2rem;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    transition: all 0.3s;

}



.insta-card:hover .insta-play-btn {

    transform: translate(-50%, -50%) scale(1.1);

}



.video-duration {

    position: absolute;

    bottom: 10px;

    left: 10px;

    background: rgba(0,0,0,0.6);

    color: white;

    padding: 2px 6px;

    border-radius: 4px;

    font-size: 0.7rem;

    font-weight: 600;

}



.btn-instagram {

    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);

    color: white;

    border: none;

    font-weight: 600;

    padding: 12px 30px;

}



.btn-instagram:hover {

    color: white;

    opacity: 0.9;

}



/* =========================================

   12. Contact & Location

   ========================================= */

.contact-card, .location-card {

    background: white;

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

    height: 100%;

    border: 1px solid #eee;

}



.contact-header {

    background-color: var(--primary-color);

    color: white;

    padding: 25px;

}



.contact-body {

    padding: 30px;

}



.contact-icon-wrapper {

    width: 40px;

    height: 40px;

    background-color: var(--primary-light);

    color: var(--primary-color);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 15px;

    flex-shrink: 0;

}



.form-control-custom {

    background-color: #f9f9f9;

    border: 1px solid #eee;

    padding: 12px 15px;

    border-radius: 5px;

}



.form-control-custom:focus {

    border-color: var(--primary-color);

    box-shadow: none;

    background-color: white;

}



.btn-contact {

    background-color: var(--primary-color);

    color: white;

    width: 100%;

    padding: 12px;

    font-weight: 600;

    border: none;

    transition: background-color 0.3s;

}



.btn-contact:hover {

    background-color: #b02a6b;

    color: white;

}



/* =========================================

   13. Features & Footer

   ========================================= */

.feature-icon-circle {

    width: 80px;

    height: 80px;

    background-color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #d62976; /* Dark pink icon color */

    font-size: 1.8rem;

    box-shadow: 0 4px 10px rgba(0,0,0,0.05);

}



.feature-title {

    color: #333;

    margin-bottom: 5px;

}



.feature-desc {

    font-size: 0.9rem;

}



/* Cleaned up services-section */



.service-item {

    text-align: center;

    padding: 20px;

    transition: transform 0.3s;

}



.service-item:hover {

    transform: translateY(-5px);

}



.service-icon {

    width: 70px;

    height: 70px;

    background-color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    color: var(--primary-color);

    font-size: 1.8rem;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    border: 1px solid var(--primary-light);

}



.footer-clean {
    background: linear-gradient(180deg, #ffffff 0%, var(--soft-pink-bg) 100%);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
    padding-bottom: 40px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-clean h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-clean ul li {
    margin-bottom: 12px;
}

.footer-clean ul li a {
    color: var(--text-muted);
    transition: var(--transition-base);
}

.footer-clean ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark) !important;
    margin-bottom: 25px;
    display: inline-block;
    letter-spacing: -1px;
}

.footer-logo span {
    color: var(--primary-color);
}

.social-btn-footer {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: var(--transition-base);
    border: 1px solid var(--primary-color);
}

.social-btn-footer:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.4);
}



/* =========================================

   14. Floating Buttons

   ========================================= */

.chat-btn {

    position: fixed;

    bottom: 30px;

    right: 30px;

    background-color: #25d366;

    color: white;

    padding: 12px 25px;

    border-radius: 30px;

    font-weight: 600;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    z-index: 1000;

    display: flex;

    align-items: center;

    transition: transform 0.3s;

}



.chat-btn:hover {

    transform: scale(1.05);

    color: white;

}



.scroll-top-btn {

    position: fixed;

    bottom: 90px;

    right: 30px;

    width: 45px;

    height: 45px;

    background-color: #000;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 999;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s;

    border: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

}



.scroll-top-btn.show {

    opacity: 1;

    visibility: visible;

}



.scroll-top-btn:hover {

    background-color: var(--primary-color);

    transform: translateY(-3px);

}





/* Enhanced Instagram Section */
.insta-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16; /* Vertical format like Instagram Reels */
    height: auto; /* Override fixed height to prevent overlap */
    width: 100%; /* Ensure it fits in column */
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #f0f0f0;
    transform: translateZ(0); /* Hardware acceleration */
    margin: 0; /* Remove margin as we use grid gap */
}

.insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), filter 0.3s ease;
    filter: brightness(0.95); /* Slight dim for better white text visibility */
}

.insta-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* Gradient Overlay on Hover */
.insta-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.insta-card:hover::after {
    opacity: 1;
}

/* Play Button Enhancement */
.insta-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.insta-card:hover .insta-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
    color: #d62976;
    border-color: white;
}

/* Badge (Reel/Post) */
.insta-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.insta-card:hover .insta-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Hover Content (Likes/Comments) */
.insta-hover-content {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0;
}

.insta-card:hover .insta-hover-content {
    bottom: 0;
    opacity: 1;
}

.insta-stats {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 600;
}

.insta-stats i {
    margin-right: 6px;
}



/* Instagram Profile Header */



.insta-header-profile {



    display: flex;



    align-items: center;



    gap: 15px;



    background: white;



    padding: 15px 25px;



    border-radius: 50px;



    box-shadow: 0 5px 20px rgba(0,0,0,0.05);



    display: inline-flex;



}







.insta-profile-img {



    width: 50px;



    height: 50px;



    border-radius: 50%;



    object-fit: cover;



    border: 2px solid #d62976;



    padding: 2px;



}







.insta-profile-info h5 {



    margin: 0;



    font-size: 1rem;



    font-weight: 700;



}







.insta-profile-info p {



    margin: 0;



    font-size: 0.8rem;



    color: #666;



}







.btn-follow-sm {



    background: #d62976;



    color: white;



    border: none;



    padding: 5px 15px;



    border-radius: 20px;



    font-size: 0.8rem;



    font-weight: 600;



    margin-left: 10px;



    transition: background 0.3s;



}







.btn-follow-sm:hover {



    background: #b02a6b;



    color: white;



}





/* Updated Hero Styles - Enhanced */

.fw-black { font-weight: 900; }
.ls-1 { letter-spacing: 1px; }

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a80 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Button Effects */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: #b02a6b;
    border-color: #b02a6b;
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.hover-lift { transition: transform 0.3s, box-shadow 0.3s; }
.hover-lift:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(214, 51, 132, 0.3) !important; }

.hover-fill { transition: all 0.3s; }
.hover-fill:hover { background: #212529; color: white; }

/* Icon Circle */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.bg-soft-primary { background-color: rgba(214, 51, 132, 0.1); }

/* Glass Effect Caption */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 80%;
}

/* Enhanced Slider */
.hero-slider-enhanced {
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid white;
}
.hero-slider-enhanced .carousel-item {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slider-enhanced .carousel-indicators {
    margin-bottom: 2rem;
}
.hero-slider-enhanced .carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: white;
    opacity: 0.6;
    border: 2px solid rgba(255,255,255,0.8) !important;
    margin: 0 6px !important;
    transition: all 0.3s;
}
.hero-slider-enhanced .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--primary-color);
    border-color: white !important;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.min-vh-75 {
    min-height: 75vh;
}

.z-index-1 { z-index: 1; }



/* =========================================

   15. Hero Slider Customization

   ========================================= */

.hero-slider-card {

    border: 5px solid white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);

}



/* Force hide any navigation arrows */

.hero-slider-card .carousel-control-prev,

.hero-slider-card .carousel-control-next {

    display: none !important;

}



/* Define Aspect Ratio / Height */

.hero-slider-card .carousel-item {

    height: 400px;

    background-color: #fff;

}



.hero-slider-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    background-color: #fff;

}



@media (max-width: 991px) {

    .hero-slider-card .carousel-item { height: 500px; }

    #heroCarousel .carousel-item { height: 500px; min-height: 500px; }

}



@media (max-width: 576px) {

    .hero-slider-card .carousel-item { height: 400px; }

    #heroCarousel .carousel-item { height: 400px; min-height: 400px; }

}



/* Slide 3 Specific Image Alignment */

.hero-slide-3-img {

    object-position: center !important;

}


/* Instagram Gradient Title */
.insta-title-gradient {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
