/* ===== Root Variables ===== */
:root {
    --primary-color: #FFB6C1;
    --secondary-color: #FFC0CB;
    --accent-color: #FF69B4;
    --dark-pink: #FF1493;
    --light-pink: #FFE4E1;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-bg: #FFF5F7;
    --border-color: #FFD6E0;
    --shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
    --shadow-hover: 0 8px 25px rgba(255, 182, 193, 0.3);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    /*max-width: auto;*/
    max-width: 100%;
    height: auto;
}

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar p {
    margin: 0;
}

.top-link {
    color: var(--white);
    margin-left: 15px;
}

.top-link:hover {
    color: var(--text-dark);
}

/* ===== Navigation ===== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: var(--dark-pink);
}

.logo-img {
    height: 60px;
    vertical-align: middle;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
    padding-left: 25px;
}

.navbar-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    color: var(--text-dark);
    font-size: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.nav-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--dark-pink);
    color: var(--white);
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 50%;
}

/* ===== Hero Section ===== */
.hero-section {
    margin-top: 0;
}

/*.hero-slide {*/
/*    min-height: clamp(480px, 80vh, 700px);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    position: relative;*/
/*}*/
.hero-slide {
    position: relative;
    width: 100%;
    min-height: auto;
}
.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,182,193,0.25) 0%,
        rgba(255,182,193,0.10) 40%,
        rgba(255,182,193,0.0) 70%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}
/*.slide-1 {*/
/*    background: url('banner-1.png') center/cover no-repeat;*/
/*    position: relative;*/
/*}*/

/*.slide-1::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgba(255, 182, 193, 0.08);*/
/*}*/

/*.slide-2 {*/
/*    background: url('banner-2.png') center/cover no-repeat;*/
/*    position: relative;*/
/*}*/

/*.slide-2::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgba(255, 182, 193, 0.08);*/
/*}*/

/*.slide-3 {*/
/*    background: url('banner-3.png') center/cover no-repeat;*/
/*    position: relative;*/
/*}*/

/*.slide-3::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgba(255, 182, 193, 0.08);*/
/*}*/

/*.hero-content {*/
/*    padding: 60px 0;*/
/*    animation: fadeInUp 1s ease;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

.hero-subtitle {
    color: var(--dark-pink);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--accent-color);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators button {
    background-color: var(--accent-color);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--dark-pink));
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    background: linear-gradient(135deg, var(--dark-pink), var(--accent-color));
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.btn-light {
    background: var(--white);
    color: var(--accent-color);
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Features Section ===== */
.features-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 3px 10px rgba(255, 182, 193, 0.1);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-box i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-box h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

/* ===== Section Headers ===== */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--dark-pink));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
}

/* ===== Categories Section ===== */
.categories-section {
    padding: 80px 0;
}

.category-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 182, 193, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-info {
    padding: 25px;
    background: var(--white);
    text-align: center;
}

.category-info h4 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.category-info p {
    color: var(--text-light);
    margin: 0;
}

/* ===== Products Section ===== */
.products-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
}

.product-badge.sale-badge {
    background: var(--dark-pink);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* Hover Image Effect (Novessa.pk style) */
.product-image-hover {
    position: relative;
}

.product-image-main,
.product-image-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.product-image-main {
    opacity: 1;
    z-index: 1;
}

.product-image-hover-img {
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-image-hover-img {
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    bottom: 0;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--accent-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-icon:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-rating {
    margin-bottom: 10px;
}

.product-rating i {
    color: #FFD700;
    font-size: 14px;
}

.product-rating span {
    color: var(--text-light);
    font-size: 13px;
    margin-left: 5px;
}

.product-price {
    margin-bottom: 10px;
}

.product-price .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
}

.product-price .old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-colors {
    display: flex;
    gap: 8px;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: var(--accent-color);
}

/* ===== Banner Section ===== */
.banner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.banner-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--white);
}

.banner-image {
    text-align: center;
}

.banner-image i {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-pink), var(--primary-color));
}

.newsletter-icon {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.newsletter-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.newsletter-section p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 15px;
}

.newsletter-form .input-group {
    box-shadow: var(--shadow);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 15px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.newsletter-form .btn {
    padding: 15px 35px;
    border-radius: 0 50px 50px 0;
}

.newsletter-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-widget p {
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--dark-pink);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #CCCCCC;
    transition: all 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #CCCCCC;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom p {
    color: #CCCCCC;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.payment-methods i {
    font-size: 32px;
    color: #CCCCCC;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--primary-color);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--dark-pink));
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ===== About Page Styles ===== */
.about-hero {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.about-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 22px;
    color: var(--text-light);
    font-weight: 500;
}

.about-content {
    padding: 80px 0;
}

.about-text {
    margin-bottom: 60px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.features-grid {
    margin-bottom: 60px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.commitment-section {
    margin-top: 40px;
}

.commitment-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-color);
}

.commitment-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thank-you {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 30px;
    text-align: center;
}

.thank-you strong {
    color: var(--accent-color);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-section h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

/* ===== Size Chart Styles ===== */
.size-chart-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.size-chart-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.size-chart-link i {
    margin-right: 5px;
}

#sizeChartModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#sizeChartModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px 15px 0 0;
    padding: 20px 25px;
}

#sizeChartModal .modal-title {
    font-weight: 600;
    font-size: 20px;
}

#sizeChartModal .btn-close {
    filter: brightness(0) invert(1);
}

#sizeChartModal .modal-body {
    padding: 30px;
}

#sizeChartModal .table {
    margin-bottom: 0;
    font-size: 14px;
}

#sizeChartModal .table thead th {
    background-color: #f8f9fa;
    color: var(--text-dark);
    font-weight: 600;
    padding: 12px 8px;
    border-color: #dee2e6;
}

#sizeChartModal .table tbody td {
    padding: 10px 8px;
    vertical-align: middle;
}

#sizeChartModal .table tbody tr:hover {
    background-color: #f8f9fa;
}

.measurement-instructions {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.measurement-instructions h6 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.instruction-step {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.instruction-step:last-child {
    border-bottom: none;
}

.instruction-step .step-content h6 {
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 8px;
}

.instruction-step .step-content p {
    font-size: 14px;
    line-height: 1.6;
}

#sizeChartModal .btn-group .btn {
    min-width: 80px;
}

#sizeChartModal .alert-info {
    background-color: #e7f3ff;
    border-color: #b3d9ff;
    color: #004085;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .navbar-icons {
        margin-top: 15px;
    }

    .banner-image {
        margin-top: 30px;
    }

    .banner-image i {
        font-size: 120px;
    }

    .about-title {
        font-size: 42px;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }
/* Mobile: remove slider overlay layer */
.hero-slide {
  min-height: 70vh;            /* height responsive */
  background-size: contain;     /* IMPORTANT: full image */
  background-position: center top;
  background-repeat: no-repeat;
}

.slide-1::before,
.slide-2::before,
.slide-3::before {
  background: transparent !important;
}

    .section-title {
        font-size: 28px;
    }

    .top-bar .col-md-6:last-child {
        text-align: left !important;
        margin-top: 5px;
    }

    .payment-methods {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .category-image {
        height: 250px;
    }

    .product-image {
        height: 250px;
    }

    .about-hero {
        padding: 60px 0 50px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .lead-text {
        font-size: 18px;
    }

    .commitment-box {
        padding: 30px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
.hero-slide {
        min-height: 65vh;     /* instead of 500px */
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
    }
    .hero-title { font-size: 28px; }
    .btn-lg { padding: 10px 25px; font-size: 14px; }

    .feature-box {
        margin-bottom: 20px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
}


    /*ye ab add kr raha hun*/
    
    
    /* HERO responsive fixes */
.hero-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Tablets / small laptops */
@media (max-width: 991px) {
  .hero-slide {
    min-height: 70vh;   /* instead of fixed px */
    background-position: center top;
  }
  .hero-content {
    padding: 40px 0;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero-slide {
    min-height: 62vh;   /* clean responsive height */
    background-position: center top;
  }

  /* text spacing tighter so image looks fuller */
  .hero-content {
    padding: 22px 0;
  }

  .hero-title {
    font-size: 26px;    /* a bit smaller than current 28 */
    line-height: 1.15;

 /* Force 2 products per row below 576px */
  #productsContainer > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
    
  }
}
 /* Hide product badge if empty */
    #productBadgeDetail:empty {
      display: none !important;
    }  



/* =========================
   HERO FIX FOR MOBILE
========================= */
@media (max-width: 768px) {

  /* image mobile pe better behave kare */
  .hero-img{
    width: 100%;
    height: 420px;          /* apni need ke hisaab se 360-520 */
    object-fit: cover;      /* mobile pe cover best lagta hai */
    object-position: center;
  }

  /* text ko image ke start me le aao */
  .hero-content{
    top: 10%;
    left: 16px;
    right: 16px;
    transform: none;
    max-width: none;

    /* readability */
    /*background: rgba(255, 255, 255, 0.75);*/
    /*backdrop-filter: blur(6px);*/
    padding: 14px 14px;
    border-radius: 16px;
  }

  /* text sizes mobile-friendly */
  .hero-title{
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-subtitle{
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .hero-description{
    font-size: 14px;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .btn-primary{
    padding: 10px 22px;
    font-size: 14px;
  }
}