/**
 * BabyTums Section Styles
 * Beautiful alternating backgrounds for distinct sections
 */

/* ===== PAGE HEADER ===== */
.bt-page-header {
    background: linear-gradient(135deg, var(--bt-soft-blue), var(--bt-soft-pink));
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.bt-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="4" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 120px 120px;
    animation: bt-float 15s linear infinite;
    pointer-events: none;
}

.bt-breadcrumb-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bt-breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.bt-breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.bt-breadcrumb-item + .bt-breadcrumb-item::before {
    content: '/';
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.bt-breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

.bt-breadcrumb-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.bt-breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.bt-page-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bt-page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTION BASE STYLES ===== */
.bt-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bt-section-header {
    margin-bottom: 3rem;
}

.bt-section-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bt-section-subtitle {
    font-size: 1.1rem;
    color: var(--bt-text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO SECTION ===== */
.bt-hero {
    background: linear-gradient(135deg, 
        var(--bt-light-blue) 0%,
        var(--bt-light-pink) 50%,
        var(--bt-light-green) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* ===== FEATURES SECTION (Soft Pink) ===== */
.bt-section--features {
    background: linear-gradient(135deg, 
        var(--bt-soft-pink) 0%,
        var(--bt-light-pink) 100%);
    position: relative;
}

.bt-section--features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    animation: bt-float 20s linear infinite;
    pointer-events: none;
}

/* ===== FEATURED PRODUCT SECTION (Soft Green) ===== */
.bt-section--product {
    background: linear-gradient(135deg, 
        var(--bt-soft-green) 0%,
        var(--bt-light-green) 100%);
    position: relative;
}

.bt-section--product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,30 40,30" fill="rgba(255,255,255,0.08)"/><polygon points="20,60 30,80 10,80" fill="rgba(255,255,255,0.08)"/><polygon points="80,50 90,70 70,70" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: 150px 150px;
    animation: bt-float-slow 25s linear infinite;
    pointer-events: none;
}

.bt-product-image {
    text-align: center;
    position: relative;
}

.bt-product-info {
    padding: 2rem 0;
}

.bt-product-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: 1.5rem;
}

.bt-product-description {
    color: var(--bt-text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Force all elements inside description to inherit the color */
.bt-product-description * {
    color: inherit !important;
}

.bt-product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.bt-price-label {
    font-weight: 600;
    color: var(--bt-text-secondary);
    font-size: 1.1rem;
}

.bt-price-value {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bt-accent-coral);
}

/* ===== HOW TO USE SECTION (Gradient Blue to Purple) ===== */
.bt-section--howto {
    background: linear-gradient(135deg, 
        var(--bt-soft-blue) 0%,
        var(--bt-accent-lavender) 50%,
        var(--bt-soft-beige) 100%);
    position: relative;
}

.bt-section--howto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="15" height="15" rx="3" fill="rgba(255,255,255,0.1)"/><rect x="70" y="30" width="12" height="12" rx="2" fill="rgba(255,255,255,0.1)"/><rect x="30" y="70" width="18" height="18" rx="4" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 120px 120px;
    animation: bt-pulse-soft 15s ease-in-out infinite;
    pointer-events: none;
}

.bt-section--howto .bt-section-title,
.bt-section--howto .bt-section-subtitle {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bt-step-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.bt-step-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.bt-step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bt-step-card:hover::before {
    opacity: 1;
}

.bt-step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.bt-step-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.bt-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--bt-accent-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 159, 159, 0.4);
}

.bt-step-card:hover .bt-step-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.bt-step-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.bt-step-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== PRODUCTS SECTION (Soft Beige) ===== */
.bt-section--products {
    background: linear-gradient(135deg, 
        var(--bt-soft-beige) 0%,
        var(--bt-warm-beige) 100%);
    position: relative;
}

.bt-section--products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="8" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="75" cy="60" r="6" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="50" cy="80" r="10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    background-size: 200px 200px;
    animation: bt-float 30s linear infinite reverse;
    pointer-events: none;
}

/* ===== ABOUT SECTION (White/Cream) ===== */
.bt-section--about {
    background: linear-gradient(135deg, 
        var(--bt-white) 0%,
        var(--bt-cream) 100%);
    position: relative;
}

.bt-about-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: 1.5rem;
}

.bt-price-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--bt-accent-coral), var(--bt-accent-peach));
    color: white;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(255, 159, 159, 0.3);
}

.bt-content-box {
    background: rgba(201, 217, 227, 0.1);
    border-radius: var(--bt-radius-large);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.bt-content-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bt-text-primary);
    margin-bottom: 1rem;
}

.bt-rich-content {
    color: var(--bt-text-primary);
    line-height: 1.7;
}

.bt-rich-content * {
    color: inherit !important;
}

.bt-rich-content p {
    margin-bottom: 1rem;
    color: var(--bt-text-primary) !important;
}

.bt-rich-content ul,
.bt-rich-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.bt-rich-content li {
    margin-bottom: 0.5rem;
    color: var(--bt-text-primary) !important;
}

.bt-rich-content h1,
.bt-rich-content h2,
.bt-rich-content h3,
.bt-rich-content h4,
.bt-rich-content h5,
.bt-rich-content h6 {
    color: var(--bt-text-primary) !important;
    margin-bottom: 0.75rem;
}

.bt-rich-content strong,
.bt-rich-content b {
    color: var(--bt-text-primary) !important;
    font-weight: 600;
}

/* ===== FEATURES ALTERNATIVE (For About Page) ===== */
.bt-section--features-alt {
    background: linear-gradient(135deg, 
        var(--bt-soft-beige) 0%,
        var(--bt-soft-gray) 100%);
    position: relative;
}

.bt-section--features-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="15" y="15" width="10" height="10" rx="2" fill="rgba(255,255,255,0.08)"/><rect x="75" y="35" width="8" height="8" rx="2" fill="rgba(255,255,255,0.08)"/><rect x="40" y="75" width="12" height="12" rx="3" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: 140px 140px;
    animation: bt-float 25s linear infinite;
    pointer-events: none;
}

/* ===== CONTACT SECTION (Soft Gray with Accent) ===== */
.bt-section--contact {
    background: linear-gradient(135deg, 
        var(--bt-soft-gray) 0%,
        var(--bt-light-blue) 50%,
        var(--bt-soft-pink) 100%);
    position: relative;
}

.bt-section--contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q30,10 40,20 T60,20" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="2"/><path d="M70,50 Q80,40 90,50 T110,50" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="2"/><path d="M10,70 Q20,60 30,70 T50,70" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="2"/></svg>');
    background-size: 180px 180px;
    animation: bt-float-slow 35s linear infinite;
    pointer-events: none;
}

.bt-contact-header .bt-section-title,
.bt-contact-header .bt-section-subtitle {
    text-align: left;
}

/* ===== FAQ SECTION (White Background) ===== */
.bt-section--faq {
    background: var(--bt-white);
}

.bt-faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bt-faq-item {
    background: var(--bt-white);
    border-radius: var(--bt-radius-large);
    box-shadow: var(--bt-shadow-soft);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bt-faq-item:hover {
    box-shadow: var(--bt-shadow-large);
    transform: translateY(-2px);
}

.bt-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.bt-faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bt-soft-blue), var(--bt-soft-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.bt-faq-question.active::before,
.bt-faq-question:hover::before {
    opacity: 0.1;
}

.bt-faq-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--bt-soft-blue), var(--bt-soft-pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.bt-faq-icon i {
    color: var(--bt-text-primary);
    font-size: 1.1rem;
}

.bt-faq-question:hover .bt-faq-icon,
.bt-faq-question.active .bt-faq-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(201, 217, 227, 0.4);
}

.bt-faq-text {
    flex: 1;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bt-text-primary);
    position: relative;
    z-index: 1;
}

.bt-faq-arrow {
    font-size: 0.9rem;
    color: var(--bt-text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.bt-faq-question.active .bt-faq-arrow,
.bt-faq-question[aria-expanded="true"] .bt-faq-arrow {
    transform: rotate(180deg);
}

.bt-faq-answer {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bt-faq-content {
    padding: 0 1.5rem 1.5rem 5rem;
    color: var(--bt-text-secondary);
    line-height: 1.7;
}

.bt-faq-content p {
    margin-bottom: 1rem;
}

.bt-faq-content ul,
.bt-faq-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.bt-faq-content li {
    margin-bottom: 0.5rem;
}

.bt-empty-state {
    padding: 3rem 2rem;
    background: rgba(201, 217, 227, 0.1);
    border-radius: var(--bt-radius-large);
}

/* ===== CONTENT SECTION (For Policy Pages) ===== */
.bt-section--content {
    background: linear-gradient(135deg, 
        var(--bt-white) 0%,
        var(--bt-light-blue) 100%);
}

.bt-content-card {
    background: var(--bt-white);
    border-radius: var(--bt-radius-large);
    box-shadow: var(--bt-shadow-soft);
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bt-content-card:hover {
    box-shadow: var(--bt-shadow-large);
    transform: translateY(-4px);
}

/* Icon Header for Cards */
.bt-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bt-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bt-soft-blue), var(--bt-soft-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bt-text-primary);
    flex-shrink: 0;
}

/* ===== CONTACT FORM STYLES ===== */
.bt-contact-form-card {
    background: var(--bt-white);
    border-radius: var(--bt-radius-large);
    padding: 2rem;
    box-shadow: var(--bt-shadow-soft);
}

.bt-form-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: 1.5rem;
}

.bt-form-group {
    margin-bottom: 1.5rem;
}

.bt-form-label {
    display: block;
    font-weight: 600;
    color: var(--bt-text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.bt-form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(201, 217, 227, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--bt-text-primary);
    background: var(--bt-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bt-form-control:focus {
    outline: none;
    border-color: var(--bt-soft-blue);
    box-shadow: 0 0 0 4px rgba(201, 217, 227, 0.1);
    background: var(--bt-light-blue);
}

.bt-form-control::placeholder {
    color: var(--bt-text-muted);
}

textarea.bt-form-control {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info Items */
.bt-section--contact .bt-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bt-section--contact .bt-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--bt-radius-medium);
    transition: all 0.3s ease;
}

.bt-section--contact .bt-contact-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
    box-shadow: var(--bt-shadow-medium);
}

.bt-section--contact .bt-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bt-soft-blue), var(--bt-soft-pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bt-section--contact .bt-contact-icon i {
    font-size: 1.25rem;
    color: var(--bt-text-primary);
}

.bt-section--contact .bt-contact-text h6 {
    font-weight: 600;
    color: var(--bt-text-primary);
    margin-bottom: 0.25rem;
}

.bt-section--contact .bt-contact-text span,
.bt-section--contact .bt-contact-text a {
    color: var(--bt-text-secondary);
    text-decoration: none;
}

.bt-section--contact .bt-contact-text a:hover {
    color: var(--bt-text-primary);
}

/* ===== SECTION TRANSITIONS ===== */
.bt-section + .bt-section {
    position: relative;
}

.bt-section + .bt-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, currentColor);
    opacity: 0.1;
    pointer-events: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .bt-section {
        padding: 3rem 0;
    }
    
    .bt-section-title {
        font-size: 2rem;
    }
    
    .bt-section-subtitle {
        font-size: 1rem;
    }
    
    .bt-product-title {
        font-size: 1.75rem;
    }
    
    .bt-step-card {
        padding: 2rem 1rem;
    }
    
    .bt-step-icon {
        width: 70px;
        height: 70px;
    }
    
    .bt-step-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .bt-section {
        padding: 2.5rem 0;
    }
    
    .bt-section-title {
        font-size: 1.75rem;
    }
    
    .bt-section-subtitle {
        font-size: 0.95rem;
    }
    
    .bt-product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bt-step-card {
        padding: 1.5rem 1rem;
    }
    
    .bt-step-icon {
        width: 60px;
        height: 60px;
    }
    
    .bt-step-icon i {
        font-size: 1.5rem;
    }
    
    .bt-step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* ===== ENHANCED ANIMATIONS ===== */
@keyframes bt-section-fade-in {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bt-section {
    animation: bt-section-fade-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger section animations */
.bt-section:nth-child(1) { animation-delay: 0s; }
.bt-section:nth-child(2) { animation-delay: 0.1s; }
.bt-section:nth-child(3) { animation-delay: 0.2s; }
.bt-section:nth-child(4) { animation-delay: 0.3s; }
.bt-section:nth-child(5) { animation-delay: 0.4s; }
.bt-section:nth-child(6) { animation-delay: 0.5s; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .bt-section,
    .bt-step-card,
    .bt-step-icon,
    .bt-section::before {
        animation: none !important;
        transition: none !important;
    }
    
    .bt-step-card:hover,
    .bt-step-icon:hover {
        transform: none !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .bt-section {
        background: white !important;
        color: black !important;
        padding: 1rem 0 !important;
    }
    
    .bt-section::before {
        display: none !important;
    }
    
    .bt-section-title,
    .bt-section-subtitle,
    .bt-step-title,
    .bt-step-description {
        color: black !important;
    }
}

/* ========================================
   Product Detail Page Styles
======================================== */

.bt-section--product-detail {
    background: linear-gradient(135deg, 
        var(--bt-soft-pink) 0%,
        var(--bt-light-pink) 50%,
        var(--bt-soft-beige) 100%);
    position: relative;
}

.bt-product-image-main {
    background: white;
    padding: 2rem;
    border-radius: var(--bt-radius-3xl);
    box-shadow: var(--bt-shadow-soft);
    transition: transform 0.3s ease;
}

.bt-product-image-main:hover {
    transform: translateY(-5px);
    box-shadow: var(--bt-shadow-medium);
}

.bt-product-image-main img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--bt-radius-2xl);
}

.bt-product-thumbnails {
    margin-top: 1rem;
}

.bt-thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--bt-radius-lg);
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bt-thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--bt-accent-coral);
}

.bt-thumbnail.active {
    border-color: var(--bt-accent-coral);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.4);
}

.bt-product-detail-info {
    padding: 2rem 0;
}

.bt-product-detail-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bt-product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bt-stars {
    display: flex;
    gap: 0.25rem;
}

.bt-stars i {
    color: var(--bt-accent-coral);
    font-size: 1.1rem;
}

.bt-rating-text {
    color: var(--bt-text-muted);
    font-size: 0.95rem;
}

.bt-product-section {
    background: white;
    padding: 1.5rem;
    border-radius: var(--bt-radius-2xl);
    box-shadow: var(--bt-shadow-soft);
}

.bt-section-heading {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bt-text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.bt-section-heading i {
    color: var(--bt-accent-coral);
}

/* Contact Card */
.bt-contact-card {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.1) 0%,
        rgba(255, 203, 164, 0.1) 100%);
    border: 2px solid var(--bt-accent-coral);
    border-radius: var(--bt-radius-2xl);
    padding: 2rem;
    text-align: center;
}

.bt-contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bt-contact-header .bt-icon {
    font-size: 2.5rem;
    color: var(--bt-accent-coral);
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.bt-contact-header h5 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bt-text-primary);
    margin: 0;
}

.bt-contact-text {
    color: var(--bt-text-secondary);
    margin-bottom: 1.5rem;
}

.bt-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bt-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: var(--bt-radius-lg);
    text-align: left;
}

.bt-contact-item i {
    color: var(--bt-accent-coral);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bt-contact-item strong {
    color: var(--bt-text-primary);
    margin-right: 0.5rem;
}

/* Related Products Section */
.bt-section--products-related {
    background: linear-gradient(135deg, 
        var(--bt-light-blue) 0%,
        var(--bt-soft-blue) 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .bt-product-detail-title {
        font-size: 2rem;
    }
    
    .bt-product-image-main {
        padding: 1.5rem;
    }
    
    .bt-product-detail-info {
        padding: 1rem 0;
    }
}
