/* ============================================
   PURYAL CUSTOM STYLES
   Professional Custom CSS for Puryal Website
   ============================================ */

/* ============================================
   CSS VARIABLES - BRAND COLORS
   Change colors here to update entire website
   ============================================ */
:root {
    /* Primary Brand Colors - Fresh Green (Main Brand Color) */
    --primary-color: #4c9c00;           /* Fresh Green - Brand Primary */
    --primary-dark: #3a7500;            /* Darker Green - Depth */
    --primary-light: #5db300;           /* Lighter Green - Hover States */
    
    /* Secondary Brand Colors - Professional Blue Palette */
    --secondary-blue: #69BDE2;          /* Light Sky Blue - Fresh & Clean */
    --secondary-blue-light: #8ACFEB;    /* Lighter Sky Blue - Backgrounds */
    --secondary-blue-dark: #1C62AF;     /* Professional Blue - Accents */
    
    /* Accent Colors - Dynamic Red Gradient */
    --accent-red: #AC1F23;              /* Red - Main Accent */
    --accent-red-dark: #8B1619;         /* Darker Red - Pressed State */
    --accent-red-light: #FF3333;        /* Bright Red - Highlights */
    
    /* Tertiary Colors - Vibrant Orange */
    --accent-orange: #FD5001;           /* Orange - Energy & Action */
    --accent-orange-light: #FF7A33;     /* Lighter Orange - Hover */
    --accent-orange-dark: #D94400;      /* Darker Orange - Active */
    
    /* Neutral Colors */
    --text-primary: #092A49;            /* Main Text */
    --text-secondary: #757F95;          /* Secondary Text */
    --text-light: #ffffff;              /* White Text */
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --bg-gradient-secondary: linear-gradient(135deg, var(--secondary-blue) 0%, var(--secondary-blue-dark) 100%);
    --bg-gradient-accent: linear-gradient(0deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    --bg-gradient-orange: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    --bg-gradient-green-blue: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-blue-dark) 100%);
    
    /* Button & Interactive Colors */
    --btn-primary-bg: var(--primary-color);
    --btn-primary-hover: var(--primary-dark);
    --btn-accent-bg: var(--accent-red);
    --btn-accent-hover: var(--accent-red-dark);
    
    /* Border & Shadow Colors */
    --border-light: #e0e0e028, 98, 175, 0.15);
    --shadow-secondary: rgba(105, 189, 226, 0.15);
    --shadow-accent: rgba(172, 31, 35, 0.15);
    --shadow-orange: rgba(253, 80, 1, 0.15);
    
    /* Overlay Colors */
    --overlay-dark: rgba(15, 68, 119, 0.8);
    --overlay-primary: rgba(28, 98, 175);
    --overlay-primary: rgba(15, 76, 129, 0.9);
}

/* ============================================
   LOGO STYLES
   ============================================ */
.brand-logo-img {
    height: 75px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand img {
    height: 75px !important;
    width: auto !important;
    max-width: 200px !important;
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 75px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    background: white;
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

/* Responsive Logo Sizes */
@media (max-width: 991px) {
    .brand-logo-img,
    .navbar-brand img {
        height: 45px !important;
        max-width: 160px !important;
    }
}

@media (max-width: 576px) {
    .brand-logo-img,
    .navbar-brand img {
        height: 40px !important;
        max-width: 140px !important;
    }
    
    .footer-logo-img {
        height: 60px;
        max-width: 200px;
        padding: 0;
    }
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */
.nav-pills .nav-link {
    background-color: var(--bg-light);
    color: var(--text-secondary);
    border-radius: 25px;
    margin: 0 5px;
    padding: 10px 20px;
    border: none;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.nav-pills .nav-link.active {
    background-color: var(--primary-light);
    color: var(--text-light);
}

/* ============================================
   SERVICE ITEMS
   ============================================ */
.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-decoration-line-through {
    text-decoration: line-through;
}

/* ============================================
   SECTION SPACING
   ============================================ */
.hero-section {
    margin-bottom: 0 !important;
}

.emergency-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ============================================
   PRODUCT CARD ENHANCEMENTS
   ============================================ */
.product-card {
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.product-card .service-img {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-card .service-img::before,
.product-card .service-img::after {
    display: none !important;
}

.product-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 0;
    max-width: none;
    max-height: none;
    filter: none;
}

.product-card:hover .service-img img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
}

.product-card .service-content {
    padding: 24px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.product-card .service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
    line-height: 1.3;
}

.product-card .service-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card .service-title a:hover {
    color: var(--primary-color);
}

.product-card .service-text {
    color: #718096;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 400;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--bg-gradient-primary);
    border-radius: 12px;
    border: none;
    position: relative;
    overflow: hidden;
}

.product-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.product-price:hover::before {
    left: 100%;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.price-unit {
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.product-actions {
    text-align: center;
    margin-top: auto;
    padding-top: 8px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    text-decoration: none;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Product Grid Spacing */
#products .row {
    margin: 0 -15px;
}

#products .col-md-6,
#products .col-lg-4 {
    padding: 0 15px;
}

/* Responsive Product Cards */
@media (max-width: 768px) {
    .product-card .service-img {
        height: 200px;
    }
    .product-card .service-content {
        padding: 20px 15px;
    }
}

/* ============================================
   BADGE STYLES
   ============================================ */
.badge-custom {
    background: var(--bg-gradient-primary);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* ============================================
   IMAGE CONTAINER STYLES
   ============================================ */
.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-primary);
    position: relative;
}

.image-container img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */
/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px var(--shadow-primary);
}

.faq-accordion .accordion-button {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 20px 25px;
    background: var(--bg-white);
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-gradient-primary);
    color: var(--text-light);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.faq-category {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-primary);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.faq-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-primary);
}

.faq-category-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px var(--shadow-primary);
}

/* ============================================
   HOW TO USE PAGE STYLES
   ============================================ */
/* Step Card Styling */
.step-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px var(--shadow-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--bg-gradient-primary);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px var(--shadow-primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px var(--shadow-primary);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--text-light);
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px var(--shadow-primary);
}

.usage-type-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px var(--shadow-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.usage-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(11, 95, 198, 0.15);
}

/* Dosage Table */
.dosage-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(11, 95, 198, 0.08);
}

.dosage-table table {
    margin: 0;
}

.dosage-table thead {
    background: var(--bg-gradient-primary);
    color: var(--text-light);
}

.dosage-table thead th {
    font-weight: 700;
    padding: 20px;
    border: none;
}

.dosage-table tbody tr {
    transition: all 0.3s ease;
}

.dosage-table tbody tr:hover {
    background: rgba(15, 76, 129, 0.05);
}

.dosage-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(15, 76, 129, 0.1);
}

/* Tip Cards */
.tip-card {
    background: linear-gradient(135deg, #f8faff 0%, #e3f2ff 100%);
    border-left: 5px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px var(--shadow-primary);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-right: 20px;
    flex-shrink: 0;
}

/* ============================================
   GRADIENT BACKGROUNDS
   ============================================ */
.gradient-bg-primary {
    background: var(--bg-gradient-primary);
}

.gradient-bg-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
}

.gradient-bg-light {
    background: linear-gradient(180deg, var(--bg-white) 0%, #f8faff 100%);
}

.gradient-bg-light-reverse {
    background: linear-gradient(180deg, #f8faff 0%, var(--bg-white) 100%);
}

.gradient-bg-danger {
    background: var(--bg-gradient-accent);
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.bg-light-blue {
    background: #f8faff;
}

.bg-white {
    background: white;
}

/* ============================================
   TEXT STYLES
   ============================================ */
.section-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 12px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.text-primary-custom {
    color: var(--primary-color);
}

.text-secondary-custom {
    color: var(--primary-light);
}

.text-tertiary-custom {
    color: var(--secondary-blue);
}

.text-dark-custom {
    color: var(--text-primary);
}

.text-muted-custom {
    color: var(--text-secondary);
}

/* ============================================
   STATISTICS DISPLAY
   ============================================ */
.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
}

.stat-label {
    color: #718096;
    margin: 0;
}

/* ============================================
   CARD HOVER EFFECTS
   ============================================ */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-primary);
}

/* ============================================
   BUTTON HOVER EFFECTS
   ============================================ */
.btn-hover-lift {
    transition: all 0.3s ease;
}

.btn-hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(11, 95, 198, 0.3);
}

/* ============================================
   ANIMATED BACKGROUND CIRCLES
   ============================================ */
.bg-circle-large {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.bg-circle-medium {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.bg-circle-small {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

/* ============================================
   SPACING UTILITIES
   ============================================ */
.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-70-80 {
    padding-top: 70px;
    padding-bottom: 80px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-40 {
    margin-top: 40px;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .usage-type-card {
        padding: 25px;
    }
    
    .py-80,
    .py-70-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .tip-card {
        padding: 15px 20px;
    }
    
    .badge-custom {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
}

/* ============================================
   BRAND LOGO STYLES
   ============================================ */
.brand-logo {
    color: #0B5FC6;
    font-weight: bold;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.brand-logo i {
    margin-right: 8px;
}

/* ============================================
   HERO INTRO SECTION
   ============================================ */
.hero-intro-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 2;
    margin-bottom: 25px;
}

.hero-text-last {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 2;
    margin-bottom: 35px;
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 35px;
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.stat-item p {
    color: #718096;
    margin: 0;
}

/* ============================================
   STEP CARD CONTENT
   ============================================ */
.step-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 15px;
}

.step-description {
    color: #5a6c7d;
    text-align: center;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   TABLE CONTENT STYLES
   ============================================ */
.table-load-label {
    font-size: 0.9rem;
    color: #718096;
}

.table-amount-primary {
    color: #0B5FC6;
}

.table-amount-secondary {
    color: #246DDE;
}

.table-amount-tertiary {
    color: #003A8C;
}

.table-amount-danger {
    color: #e63946;
}

/* ============================================
   USAGE TYPE VARIATIONS
   ============================================ */
.step-icon-secondary {
    background: linear-gradient(135deg, #246DDE 0%, #003A8C 100%);
}

.step-icon-danger {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
}

/* ============================================
   FABRIC CARE STYLES
   ============================================ */
.fabric-care-image-container {
    text-align: center;
    margin-bottom: 20px;
}

.fabric-care-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

.fabric-title-primary {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0B5FC6;
    margin: 0;
}

.fabric-title-secondary {
    font-size: 1.4rem;
    font-weight: 700;
    color: #246DDE;
    margin: 0;
}

.fabric-title-tertiary {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6CC8FF;
    margin: 0;
}

.fabric-title-dark {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003A8C;
    margin: 0;
}

.fabric-title-danger {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e63946;
    margin: 0;
}

.fabric-title-success {
    font-size: 1.4rem;
    font-weight: 700;
    color: #52b788;
    margin: 0;
}

.fabric-list {
    color: #5a6c7d;
    line-height: 1.9;
    padding-left: 20px;
    margin: 0;
}

.usage-list {
    color: #5a6c7d;
    line-height: 2;
    padding-left: 20px;
}

/* ============================================
   MISTAKE CARD STYLES
   ============================================ */
.mistake-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    height: 100%;
}

.mistake-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
}

.mistake-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.mistake-description {
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* ============================================
   CTA SECTION STYLES
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0B5FC6 0%, #246DDE 50%, #003A8C 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-circle-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-bg-circle-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0B5FC6;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #0B5FC6;
}

.cta-button i {
    margin-left: 10px;
}

/* ============================================
   TIP CARD CONTENT
   ============================================ */
.tip-content {
    display: flex;
    align-items: flex-start;
}

.tip-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.tip-text {
    color: #5a6c7d;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   USAGE TYPE HEADING
   ============================================ */
.usage-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 20px;
}

/* ============================================
   COMMON MISTAKES SECTION
   ============================================ */
.mistakes-section {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: white;
}

.mistakes-label {
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mistakes-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-top: 12px;
    margin-bottom: 20px;
}

.mistakes-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.mistake-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.mistake-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.mistake-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mistake-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0B5FC6 0%, #246DDE 50%, #003A8C 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-circle-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-bg-circle-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0B5FC6;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: #0B5FC6;
}

.cta-button i {
    margin-left: 10px;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer-logo-text {
    color: white;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.footer-logo-icon {
    margin-right: 8px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.z-index-2 {
    position: relative;
    z-index: 2;
}

/* ============================================
   PRODUCT CARDS & CATEGORY NAVIGATION
   ============================================ */

/* Category Navigation Pills */
.product-category-nav {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.product-category-nav .nav-link {
    padding: 12px 24px;
    border-radius: 50px;
    background: white;
    color: #1a202c;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-category-nav .nav-link:hover {
    background: #f0fff4;
    border-color: #4c9c00;
    color: #4c9c00;
    transform: translateY(-2px);
}

.product-category-nav .nav-link.active {
    background: linear-gradient(135deg, #4c9c00 0%, #5db300 100%);
    border-color: #4c9c00;
    color: white;
    box-shadow: 0 8px 20px rgba(76, 156, 0, 0.3);
}

.product-category-nav .nav-link i {
    font-size: 1.1rem;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-badge.badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.product-badge.badge-eco {
    background: linear-gradient(135deg, #52b788 0%, #2d6a4f 100%);
}

/* Product Image */
.product-image {
    position: relative;
    overflow: hidden;
    background: white;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-title-link:hover .product-title {
    color: #2563eb;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 95, 198, 0.9), transparent);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-category {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Content */
.product-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-description {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-features span {
    font-size: 0.8rem;
    color: #0B5FC6;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-features i {
    font-size: 0.9rem;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: auto;
    padding-top: 20px;
    gap: 12px;
}

.product-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0B5FC6 0%, #0847A8 100%);
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(11, 95, 198, 0.25);
    flex: 1;
    text-align: center;
    height: 80px;
}

.price-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    display: block;
    font-weight: 600;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    display: block;
}

/* WhatsApp Button */
.product-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
    flex: 1;
    height: 80px;
}

.product-whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
    color: white;
}

.product-whatsapp-btn i {
    font-size: 1.15rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid #e5e7eb;
}

.pagination {
    gap: 0;
    margin: 0;
}

.pagination .page-item {
    margin: 0 4px;
}

.pagination .page-link {
    border: 1px solid #e5e7eb;
    color: #5a6c7d;
    padding: 10px 16px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:hover {
    background: #0B5FC6;
    color: white;
    border-color: #0B5FC6;
    transform: scale(1.05);
}

.pagination .page-link:focus {
    box-shadow: none;
}

.pagination .page-item.active .page-link {
    background: #0B5FC6;
    color: white;
    border-color: #0B5FC6;
}

.pagination .page-item.disabled .page-link {
    background: transparent;
    color: #cbd5e0;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 8px;
    padding: 10px 20px;
    min-width: auto;
}

.pagination .page-link i {
    font-size: 0.85rem;
    margin: 0 4px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .product-category-nav .nav-link {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .product-category-nav {
        gap: 10px;
    }
    
    .product-category-nav .nav-link {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .product-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pagination .page-link {
        padding: 10px 12px;
        font-size: 0.85rem;
        min-width: 40px;
    }
}

/* ============================================
   PRODUCT DETAILS PAGE
   ============================================ */

/* Product Gallery */
.product-detail-gallery {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1;
    background: #f8faff;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.product-main-image .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(11, 95, 198, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-main-image:hover .zoom-icon {
    opacity: 1;
}

.product-detail-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Thumbnails */
.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #0B5FC6;
    transform: scale(1.05);
}

/* Product Info */
.product-detail-info {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-detail-category {
    display: inline-block;
    background: #f0f7ff;
    color: #0B5FC6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-detail-category i {
    margin-right: 5px;
}

.product-detail-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Rating */
.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.product-detail-rating .stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.product-detail-rating .rating-count {
    color: #5a6c7d;
    font-size: 0.9rem;
}

/* Price */
.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0B5FC6;
}

.original-price {
    font-size: 1.5rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Description */
.product-detail-description {
    margin-bottom: 30px;
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.8;
}

/* Features */
.product-detail-features {
    margin-bottom: 30px;
}

.product-detail-features h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.product-detail-features ul {
    list-style: none;
    padding: 0;
}

.product-detail-features li {
    color: #5a6c7d;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-features li i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Size Options */
.product-detail-options {
    margin-bottom: 25px;
}

.product-detail-options h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #5a6c7d;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover {
    border-color: #0B5FC6;
    color: #0B5FC6;
}

.size-btn.active {
    background: #0B5FC6;
    border-color: #0B5FC6;
    color: white;
}

/* Quantity */
.product-detail-quantity {
    margin-bottom: 30px;
}

.product-detail-quantity h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: #f3f4f6;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    color: #1a202c;
    font-weight: 600;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #e5e7eb;
}

.qty-input {
    border: none;
    width: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a202c;
}

.qty-input:focus {
    outline: none;
}

/* Action Buttons */
.product-detail-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f3f4f6;
}

.btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: #0B5FC6;
    padding: 16px 24px;
    border: 2px solid #0B5FC6;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: #0B5FC6;
    color: white;
}

/* Meta Info */
.product-detail-meta {
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    color: #5a6c7d;
    font-weight: 600;
    width: 150px;
}

.meta-label i {
    margin-right: 8px;
}

.meta-value {
    color: #1a202c;
    font-weight: 600;
}

.meta-value.in-stock {
    color: #10b981;
}

/* Share */
.product-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-detail-share span {
    font-weight: 600;
    color: #5a6c7d;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #5a6c7d;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #0B5FC6;
    color: white;
    transform: translateY(-2px);
}

/* Product Tabs */
.product-detail-tabs {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-detail-tabs .nav-tabs {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 30px;
}

.product-detail-tabs .nav-link {
    border: none;
    color: #5a6c7d;
    font-weight: 600;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.product-detail-tabs .nav-link:hover {
    color: #0B5FC6;
}

.product-detail-tabs .nav-link.active {
    color: #0B5FC6;
    border-bottom-color: #0B5FC6;
}

.tab-content-wrapper {
    padding: 20px 0;
}

.tab-content-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
}

.tab-content-wrapper h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 25px;
    margin-bottom: 15px;
}

.tab-content-wrapper p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tab-content-wrapper ul {
    padding-left: 20px;
}

.tab-content-wrapper ul li {
    color: #5a6c7d;
    line-height: 2;
    margin-bottom: 8px;
}

/* Specifications Table */
.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.specifications-table td {
    padding: 15px 10px;
}

.spec-label {
    font-weight: 700;
    color: #1a202c;
    width: 200px;
}

.spec-value {
    color: #5a6c7d;
}

/* Usage Steps */
.usage-steps {
    margin-top: 30px;
}

.usage-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0B5FC6 0%, #246DDE 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.step-content p {
    margin: 0;
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 30px;
    background: #f8faff;
    border-radius: 12px;
    margin-bottom: 40px;
}

.rating-overview {
    text-align: center;
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    color: #0B5FC6;
    line-height: 1;
}

.rating-overview .rating-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin: 10px 0;
}

.rating-text {
    color: #5a6c7d;
    font-size: 0.9rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-bar-item > span:first-child {
    width: 40px;
    color: #5a6c7d;
    font-weight: 600;
}

.rating-bar-item > span:last-child {
    width: 40px;
    text-align: right;
    color: #5a6c7d;
    font-weight: 600;
}

.bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

/* Review Item */
.review-item {
    padding: 25px 0;
    border-bottom: 1px solid #e5e7eb;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0B5FC6 0%, #246DDE 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.reviewer-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.review-date {
    color: #9ca3af;
    font-size: 0.85rem;
}

.review-rating {
    color: #fbbf24;
}

.review-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin: 0;
}

/* Related Products */
.related-products {
    padding: 50px 0;
}

/* Responsive */
@media (max-width: 991px) {
    .product-detail-info {
        padding: 30px;
    }
    
    .product-detail-title {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
    }
    
    .product-detail-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .product-detail-gallery,
    .product-detail-info,
    .product-detail-tabs {
        padding: 20px;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .size-options {
        flex-wrap: wrap;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .spec-label {
        width: 130px;
        font-size: 0.9rem;
    }
    
    .spec-value {
        font-size: 0.9rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .step-card,
    .usage-type-card,
    .tip-card,
    .faq-category {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .gradient-bg-primary,
    .gradient-bg-hero,
    .gradient-bg-danger {
        background: #f5f5f5;
        color: #000;
    }
}
