/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Colors */
    --gradient-primary: linear-gradient(135deg, #FF9933 0%, #FFCC33 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --color-teal: #00A884;
    --color-dark-green: #064E3B;
    --color-red: #E11D48;
    --color-gold: #FFB700;
    --color-orange: #FF8C42;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #94a3b8;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Hind Siliguri', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
    width: 100%;
    position: relative;
}

/* Bold headings use Noto Sans Bengali for weight 800+ support */
.hero-title,
.section-title,
.form-title,
.current-price,
.total-price {
    font-family: 'Noto Sans Bengali', 'Hind Siliguri', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

section {
    padding: var(--spacing-xl) 0;
}

/* ===================================
   Typography
   =================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: var(--gradient-primary);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg) 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.badge-top {
    margin-bottom: var(--spacing-sm);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.discount-badge {
    background: var(--color-red);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.hero-title {
    font-size: 2.8rem;
    font-family: 'Noto Sans Bengali', sans-serif;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-title .highlight {
    font-size: 1.6rem;
    font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
    font-weight: 700;
    color: #ffde59;
    display: inline-block;
    margin-top: 0.8rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.price-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: line-through;
}

.current-price {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.save-text {
    background: #064E3B; /* Dark Green like image */
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: #E11D48; /* Red like image */
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
}

.btn-secondary {
    background: white;
    color: #0f172a;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.btn-block {
    width: 100%;
}

.trust-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-item i {
    color: var(--color-dark-green);
}

.hero-image {
    animation: fadeInRight 0.8s ease-out;
}

.product-image-wrapper {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.product-image {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

/* Video Styling */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.floating-badge {
    position: absolute;
    background: var(--bg-white);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 2s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: -5%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.badge-2 {
    bottom: 15%;
    left: -5%;
    background: var(--bg-white);
    color: var(--text-dark);
    animation-delay: 1s;
}

/* ===================================
   Secondary Text Section
   =================================== */
.secondary-text-section {
    background: #f8fafc;
    padding: var(--spacing-xl) 0;
}

.secondary-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.secondary-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.secondary-p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose {
    background: var(--bg-white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.benefit-card {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-orange);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 2rem;
    color: white;
    overflow: hidden; /* Ensure image doesn't overflow the circle */
}

.benefit-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.info-box {
    background: linear-gradient(135deg, #0D7377 0%, #14524A 100%);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===================================
   Video Demonstration Section
   =================================== */
.video-demo {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.video-demo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.video-demo::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.video-container {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    transition: var(--transition);
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
}

.video-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.video-cta .btn {
    margin-top: 0.5rem;
}

/* ===================================
   Features Section
   =================================== */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===================================
   Delivery Info Section (Desktop)
   =================================== */
.delivery-grid-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.delivery-grid-mini.single-item {
    justify-content: center;
}
.delivery-card-mini {
    flex: 1 1 250px;
    max-width: 320px;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.delivery-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.del-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-teal);
    flex-shrink: 0;
}
.del-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}
.del-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.del-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   What's Included Section
   =================================== */
.whats-included {
    background: var(--bg-white);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.included-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.included-item:hover {
    transform: scale(1.05);
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.included-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.8rem;
    color: white;
}

.included-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.included-item p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* ===================================
   Delivery Benefits
   =================================== */
.delivery-benefits {
    background: var(--bg-light);
}

.delivery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.delivery-card {
    flex: 1 1 250px;
    max-width: 320px;
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.delivery-card:hover::before {
    transform: scaleX(1);
}

.delivery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.delivery-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 2rem;
    color: white;
}

.delivery-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.delivery-card p {
    color: var(--text-gray);
}

/* ===================================
   Customer Trust
   =================================== */
.customer-trust {
    background: var(--bg-white);
}

.trust-box {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: var(--spacing-sm);
}

.trust-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--color-gold);
}

.rating span {
    color: var(--text-dark);
    font-weight: 600;
    margin-left: 0.5rem;
}

/* ===================================
   Order Section
   =================================== */
.order-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.order-form-container {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

.phone-link {
    color: var(--color-red);
    font-weight: 700;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.required {
    color: var(--color-red);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.error-message {
    display: block;
    color: var(--color-red);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

.btn-submit {
    margin-top: var(--spacing-sm);
    font-size: 1.2rem;
    padding: 1.3rem 2rem;
}

/* Order Summary Sidebar */
.order-summary {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 20px;
}

.order-summary h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.summary-product {
    display: flex;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: var(--spacing-sm);
}

.summary-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.summary-product h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.summary-product p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.summary-details {
    margin-bottom: var(--spacing-md);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.summary-row.discount-row {
    color: var(--color-red);
    font-weight: 600;
}

.strike {
    text-decoration: line-through;
    color: var(--text-gray);
}

.summary-divider {
    height: 2px;
    background: var(--bg-light);
    margin: var(--spacing-sm) 0;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 800;
}

.total-price {
    color: var(--color-red);
    font-size: 1.8rem;
}

.summary-badges {
    margin-bottom: var(--spacing-md);
}

.summary-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.summary-badge i {
    color: var(--color-dark-green);
}

/* Summary product sub-elements */
.summary-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: var(--spacing-sm);
}
.summary-product img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.summary-product h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}
.summary-prod-sub {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}
.summary-prod-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}
.summary-offer-val {
    font-weight: 700;
    color: var(--color-orange);
}
.summary-delivery-val {
    font-weight: 600;
    color: #10b981;
}

/* Delivery Area Selector */
.delivery-area-selector {
    margin-bottom: 0.8rem;
}
.delivery-area-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    display: block;
    margin-bottom: 0.5rem;
}
.delivery-area-label i {
    color: #10b981;
    margin-right: 6px;
}
.delivery-options-row {
    display: flex;
    gap: 0.5rem;
}
.delivery-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s;
}
.delivery-option input[type="radio"] {
    accent-color: #10b981;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.delivery-option i {
    color: #94a3b8;
    margin-right: 3px;
}
.delivery-option strong {
    margin-left: auto;
    color: #475569;
}
.delivery-option.active-del,
.delivery-option:has(input:checked) {
    border-color: #10b981;
    background: #f0fdf4;
    color: #065f46;
}
.delivery-option.active-del i,
.delivery-option:has(input:checked) i {
    color: #10b981;
}
.delivery-option.active-del strong,
.delivery-option:has(input:checked) strong {
    color: #10b981;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold);
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.footer-section i {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===================================
   Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    max-width: 500px;
    text-align: center;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 3rem;
    color: white;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@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);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Old responsive rules moved to unified mobile block at bottom */

.delivery-card-mini {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid #dcfce7;
    transition: var(--transition);
}

.delivery-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.del-icon {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.del-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}
.del-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 0.2rem;
}

.del-info p {
    font-size: 0.9rem;
    color: #0d9488;
}

/* Included in Box Section */
.included-box-section {
    background: #fffaf0; /* Light orange-yellow */
    border: 2px dashed #fed7aa;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 4rem;
}

.included-header {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #9a3412;
    margin-bottom: 2rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: var(--transition);
}

.included-item:hover {
    transform: translateX(5px);
    border-left: 4px solid #f97316;
}

.inc-icon {
    width: 35px;
    height: 35px;
    background: #ffedd5;
    color: #f97316;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.inc-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.inc-text {
    font-size: 1rem;
    font-weight: 600;
    color: #431407;
}

.mt-15 { margin-top: 3.75rem; }

/* Old responsive rules moved to unified mobile block at bottom */

/* ===================================
   Premium Video Section
   =================================== */
.video-demo-premium {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
}

.video-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}
.video-bg-orb-1 {
    width: 500px; height: 500px;
    top: -120px; right: -80px;
    background: radial-gradient(circle, #f97316, transparent 70%);
    animation: float 10s ease-in-out infinite;
}
.video-bg-orb-2 {
    width: 400px; height: 400px;
    bottom: -100px; left: -60px;
    background: radial-gradient(circle, #6366f1, transparent 70%);
    animation: float 8s ease-in-out infinite 2s;
}

.video-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(249,115,22,0.15);
    color: #f97316;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(249,115,22,0.25);
}

.video-premium-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.video-premium-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.video-player-card {
    max-width: 860px;
    margin: 0 auto 2.5rem;
    border-radius: 20px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(249,115,22,0.4), rgba(99,102,241,0.4));
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.video-player-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

.video-player-inner iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 16px;
}

.video-steps-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.video-step-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.video-step-chip.active {
    background: linear-gradient(135deg, #f97316, #ef4444);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 0.8rem;
    font-weight: 700;
}

.video-step-chip.active .step-num {
    background: rgba(255,255,255,0.25);
}

.video-cta-glass {
    max-width: 600px;
    margin: 0 auto;
}

.video-cta-inner {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.video-cta-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.video-cta-inner .btn-primary {
    box-shadow: 0 8px 30px rgba(225,29,72,0.4);
}

/* ===================================
   Premium Package Selector
   =================================== */
.pkg-selector-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.pkg-selector-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
}

.pkg-header-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pkg-header-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.pkg-header-sub {
    font-size: 0.78rem;
    margin: 0;
    opacity: 0.7;
}

.pkg-products-list {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pkg-product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #fafbfc;
    transition: all 0.25s ease;
    cursor: pointer;
}

.pkg-product-card:hover {
    border-color: #cbd5e1;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pkg-product-card.selected {
    border-color: #f97316;
    background: linear-gradient(135deg, #fff7ed, #fff);
    box-shadow: 0 4px 20px rgba(249,115,22,0.12);
}

.pkg-product-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.pkg-check-wrap {
    position: relative;
    flex-shrink: 0;
}

.pkg-check-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.pkg-check-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 8px;
    border: 2px solid #cbd5e1;
    background: #fff;
    transition: all 0.2s ease;
    color: transparent;
    font-size: 0.75rem;
}

.pkg-check-wrap input:checked + .pkg-check-indicator {
    background: linear-gradient(135deg, #f97316, #ef4444);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 10px rgba(249,115,22,0.3);
}

.pkg-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.pkg-product-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.3 !important;
}

.pkg-subname {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

.pkg-product-prices {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pkg-old-price {
    font-size: 0.8rem;
    color: #94a3b8;
}

.pkg-cur-price {
    font-size: 0.95rem;
    color: #f97316;
}

.pkg-qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
}

.pkg-qty-btn {
    width: 34px; height: 34px;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.pkg-qty-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.pkg-qty-plus:hover {
    background: #f97316;
    color: #fff;
}

.pkg-qty-value {
    width: 38px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    border: none;
    background: transparent;
    padding: 0;
}

/* ===================================
   Payment Badges & Privacy
   =================================== */
.summary-payment-methods {
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.summary-sub-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-sub-heading i {
    color: #6366f1;
}

.payment-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.payment-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.7rem 0.5rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    transition: var(--transition);
}

.payment-badge i {
    font-size: 1.1rem;
}

.payment-badge.active-method {
    border-color: #10b981;
    background: #f0fdf4;
    color: #065f46;
}

.payment-badge.active-method i {
    color: #10b981;
}

.summary-policy {
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.policy-check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #64748b;
}

.policy-check-label input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.policy-check-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    min-width: 20px;
    border-radius: 5px;
    border: 2px solid #cbd5e1;
    background: #fff;
    color: transparent;
    font-size: 0.6rem;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.policy-check-label input:checked + .policy-check-box {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.policy-text { flex: 1; }

.policy-link {
    color: #6366f1;
    text-decoration: underline;
    font-weight: 600;
}

.policy-link:hover {
    color: #4f46e5;
}

/* Review card image styling */
.review-card-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.review-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews section */
.reviews-slider-section {
    background: #fffdf5; /* Warm light yellowish-white */
    background-image: radial-gradient(at 0% 0%, hsla(38,100%,92%,1) 0px, transparent 50%),
                      radial-gradient(at 100% 100%, hsla(28,100%,94%,1) 0px, transparent 50%);
    padding: var(--spacing-xl) 0;
}

/* ===================================
   📱 MOBILE SMART RESPONSIVE
   Premium App-Style Experience
   =================================== */
@media (max-width: 768px) {

    /* ── Global defaults ── */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    section { padding: 2.5rem 0 !important; }
    .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }
    .section-subtitle {
        font-size: 0.92rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       HERO SECTION — App-style centered
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .hero {
        padding: 1.5rem 0 2rem !important;
        min-height: auto !important;
    }
    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    .hero-image {
        order: -1 !important;
        max-width: 85% !important;
        margin: 0 auto !important;
    }
    .product-image-wrapper { animation: none !important; }
    .product-image {
        width: 100% !important;
        border-radius: 16px !important;
        border: 3px solid rgba(255,255,255,0.25) !important;
        box-shadow: 0 16px 48px rgba(0,0,0,0.2) !important;
    }
    .product-video {
        border-radius: 16px !important;
    }
    .floating-badge {
        font-size: 0.72rem !important;
        padding: 0.45rem 0.75rem !important;
        border-radius: 10px !important;
        backdrop-filter: blur(8px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
    }
    .badge-1 { top: 6% !important; right: -2% !important; }
    .badge-2 { bottom: 10% !important; left: -2% !important; }

    .badge-top { margin-bottom: 0.8rem !important; }
    .badge {
        font-size: 0.82rem !important;
        padding: 0.5rem 1rem !important;
    }
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }
    .hero-title .highlight {
        font-size: 1.15rem !important;
        margin-top: 0.4rem !important;
        opacity: 0.85;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.25rem !important;
    }
    .price-box {
        justify-content: center !important;
        gap: 0.6rem !important;
        margin-bottom: 1.25rem !important;
    }
    .original-price { font-size: 1.1rem !important; }
    .current-price {
        font-size: 2.8rem !important;
        letter-spacing: -1px;
    }
    .save-text {
        font-size: 0.85rem !important;
        padding: 0.35rem 0.9rem !important;
        border-radius: 8px !important;
    }
    .cta-buttons {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 0.6rem !important;
    }
    .cta-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    .btn-large {
        font-size: 1rem !important;
        padding: 1rem 1.5rem !important;
        border-radius: 12px !important;
    }
    .trust-badges {
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    .trust-item {
        font-size: 0.78rem !important;
        background: rgba(255,255,255,0.15);
        padding: 0.4rem 0.7rem;
        border-radius: 8px;
        backdrop-filter: blur(4px);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECONDARY TEXT
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .secondary-content {
        padding: 1.5rem 1.25rem !important;
        border-radius: 14px !important;
    }
    .secondary-title { font-size: 1.35rem !important; }
    .secondary-p { font-size: 0.95rem !important; line-height: 1.7 !important; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       WHY CHOOSE / BENEFITS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .benefits-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.7rem !important;
    }
    .benefit-card {
        padding: 1.1rem 0.6rem !important;
        border-radius: 14px !important;
        border: 1px solid #f1f5f9 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    }
    .benefit-card:hover { transform: none !important; }
    .benefit-icon {
        width: 48px !important;
        height: 48px !important;
        margin: 0 auto 0.6rem !important;
        font-size: 1.3rem !important;
        border-radius: 14px !important;
    }
    .benefit-card h3 { font-size: 0.88rem !important; margin-bottom: 0.3rem !important; }
    .benefit-card p { font-size: 0.78rem !important; line-height: 1.4 !important; color: #64748b !important; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       VIDEO DEMO SECTION
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .video-demo-premium { padding: 2rem 0 !important; }
    .video-premium-title { font-size: 1.45rem !important; }
    .video-premium-subtitle { font-size: 0.88rem !important; }
    .video-player-card {
        border-radius: 14px !important;
        padding: 3px !important;
        margin-bottom: 1.5rem !important;
    }
    .video-player-inner, .video-player-inner iframe { border-radius: 12px !important; }
    .video-steps-row { gap: 0.4rem !important; margin-bottom: 1.5rem !important; }
    .video-step-chip { font-size: 0.72rem !important; padding: 0.35rem 0.7rem !important; }
    .step-num { width: 22px !important; height: 22px !important; font-size: 0.7rem !important; }
    .video-cta-glass { max-width: 100% !important; }
    .video-cta-inner { padding: 1.25rem !important; border-radius: 14px !important; }
    .video-cta-heading { font-size: 1rem !important; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       FEATURES — Mini Cards
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.7rem !important;
    }
    .feature-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem 0.6rem !important;
        border-radius: 14px !important;
        border: 1px solid #f1f5f9 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    }
    .feature-item:hover { transform: none !important; }
    .feature-icon {
        margin: 0 auto 0.5rem !important;
        width: 42px !important;
        height: 42px !important;
        border-radius: 12px !important;
        font-size: 1.1rem !important;
    }
    .feature-content h4 { font-size: 0.88rem !important; }
    .feature-content p { font-size: 0.78rem !important; line-height: 1.4 !important; }
    .cta-center { margin-top: 1.5rem !important; }
    .cta-center .btn { width: 100% !important; border-radius: 12px !important; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       🎁 INCLUDED IN BOX — Premium Grid
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .included-box-section {
        padding: 1.5rem 1rem !important;
        margin-top: 2rem !important;
        border-radius: 16px !important;
        border: 1.5px dashed #fbbf24 !important;
        background: linear-gradient(135deg, #fffbeb, #fef3c7) !important;
    }
    .included-header {
        font-size: 1.15rem !important;
        margin-bottom: 1rem !important;
    }
    .included-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    .included-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 0.9rem 0.5rem !important;
        gap: 0.4rem !important;
        border-radius: 12px !important;
        background: rgba(255,255,255,0.9) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
        border: 1px solid rgba(251,191,36,0.15) !important;
    }
    .included-item:hover { transform: none !important; border-left: none !important; }
    .inc-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        margin: 0 auto !important;
        border-radius: 10px !important;
    }
    .inc-text { font-size: 0.8rem !important; line-height: 1.3 !important; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       🚚 DELIVERY — Compact Cards
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .delivery-info-section { padding: 2rem 0 !important; }
    .delivery-grid-mini {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
    }
    .delivery-card-mini {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem 0.6rem !important;
        gap: 0.5rem !important;
        border-radius: 14px !important;
        border: 1px solid #d1fae5 !important;
        background: linear-gradient(135deg, #f0fdf4, #ecfdf5) !important;
    }
    .delivery-card-mini:hover { transform: none !important; }
    .del-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
        margin: 0 auto !important;
        border-radius: 12px !important;
    }
    .del-info h4 { font-size: 0.88rem !important; }
    .del-info p { font-size: 0.75rem !important; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       REVIEWS SLIDER
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .reviews-slider-section { padding: 2rem 0 !important; }
    .review-card-img {
        border-radius: 14px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
        max-width: 85% !important;
        margin: 0 auto !important;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       🛒 ORDER SECTION — Full App Style
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .order-section {
        padding: 0 !important;
        background: #f8fafc !important;
    }
    .order-section > .container { padding: 0 !important; }
    .order-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* Form Container */
    .order-form-container {
        order: 1 !important;
        background: #fff !important;
        padding: 1.75rem 1.25rem !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }
    .form-title {
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        text-align: center !important;
        margin-bottom: 0.4rem !important;
    }
    .form-subtitle {
        font-size: 0.88rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        color: #94a3b8 !important;
    }
    .order-form .form-group { margin-bottom: 1rem !important; }
    .order-form .form-group label {
        font-size: 0.88rem !important;
        margin-bottom: 0.4rem !important;
    }
    .order-form .form-group input,
    .order-form .form-group textarea,
    .order-form .form-group select {
        padding: 0.85rem 1rem !important;
        border-radius: 12px !important;
        font-size: 0.95rem !important;
        border: 1.5px solid #e2e8f0 !important;
        background: #f9fafb !important;
        transition: all 0.2s ease !important;
    }
    .order-form .form-group input:focus,
    .order-form .form-group textarea:focus,
    .order-form .form-group select:focus {
        border-color: #FF8C42 !important;
        background: #fff !important;
        box-shadow: 0 0 0 3px rgba(255,140,66,0.1) !important;
    }

    /* Package Selector */
    .pkg-selector-card {
        border-radius: 16px !important;
        border: 1.5px solid #e2e8f0 !important;
        margin-bottom: 1.5rem !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
        overflow: hidden !important;
        background: #fff !important;
    }
    .pkg-selector-header {
        border-radius: 0 !important;
        padding: 1rem 1.25rem !important;
    }
    .pkg-products-list {
        padding: 0.75rem !important;
        gap: 0.5rem !important;
    }
    .pkg-product-card {
        padding: 0.85rem !important;
        border-radius: 12px !important;
        gap: 0.6rem !important;
    }
    .pkg-product-name { font-size: 0.88rem !important; }
    .pkg-old-price { font-size: 0.75rem !important; }
    .pkg-cur-price { font-size: 0.88rem !important; }
    .pkg-check-indicator { width: 26px !important; height: 26px !important; border-radius: 7px !important; }
    .pkg-qty-btn { width: 32px !important; height: 32px !important; }
    .pkg-qty-value { width: 34px !important; font-size: 0.88rem !important; }

    /* ── Order Summary Card ── */
    .order-summary {
        position: static !important;
        order: 2 !important;
        margin: 0 !important;
        background: #fff !important;
        padding: 1.75rem 1rem !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-top: 6px solid #f1f5f9 !important;
    }
    .order-summary h3 {
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        text-align: center !important;
        margin-bottom: 1.2rem !important;
    }
    .summary-product {
        gap: 0.8rem !important;
        padding-bottom: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .summary-product img {
        width: 60px !important;
        height: 60px !important;
        border-radius: 10px !important;
    }
    .summary-product h4 { font-size: 0.95rem !important; }
    .summary-prod-sub { font-size: 0.7rem !important; }
    .summary-prod-desc { font-size: 0.8rem !important; }
    
    .summary-row {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
    }
    .total-price { font-size: 1.5rem !important; }
    
    /* Delivery Area Selector Mobile */
    .delivery-options-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    .delivery-option {
        padding: 0.7rem !important;
        border-radius: 8px !important;
    }

    /* Payment Methods */
    .summary-payment-methods {
        padding-top: 0.75rem !important;
        border-top: 1px solid #f1f5f9 !important;
    }
    .payment-badges-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.4rem !important;
    }
    .payment-badge {
        padding: 0.6rem 0.3rem !important;
        font-size: 0.7rem !important;
        border-radius: 10px !important;
        border: 1.5px solid #e2e8f0 !important;
    }
    .payment-badge i { font-size: 1rem !important; }

    /* Buy Button */
    #buyPackageBtn {
        width: 100% !important;
        padding: 1.1rem !important;
        font-size: 1.1rem !important;
        border-radius: 14px !important;
        font-weight: 700 !important;
        letter-spacing: 0.3px;
        box-shadow: 0 6px 20px rgba(225,29,72,0.3) !important;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       FOOTER — Clean Minimal
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .footer { padding: 1.5rem 0.8rem !important; }
    .footer-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: flex-start !important;
        gap: 0.25rem !important;
        background: rgba(255,255,255,0.04) !important;
        border-radius: 16px !important;
        padding: 0.8rem 0.2rem !important;
        margin-bottom: 0.8rem !important;
        border: 1px solid rgba(255,255,255,0.06) !important;
    }
    .footer-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section h3 { display: none !important; }
    .footer-section p {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.3rem !important;
        font-size: 0.68rem !important;
        font-weight: 500 !important;
        margin: 0 !important;
        opacity: 0.85 !important;
        line-height: 1.1 !important;
    }
    .footer-section i {
        font-size: 1.3rem !important;
        color: var(--color-gold) !important;
        background: rgba(212,175,55,0.12);
        padding: 8px;
        border-radius: 10px;
    }
    .footer-bottom {
        padding-top: 0.6rem !important;
        font-size: 0.7rem !important;
        border-top: none !important;
    }

    /* Success Modal - Centered Mode */
    .modal-content {
        border-radius: var(--radius-xl) !important;
        margin: 20px !important;
        max-width: calc(100% - 40px) !important;
        padding: 2.5rem 1.5rem !important;
    }
    .modal { 
        align-items: center !important; 
        padding-bottom: 0 !important;
    }
    .modal-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 2rem !important;
    }
    .modal-content h2 { font-size: 1.5rem !important; }
}

/* ===================================
   📱 EXTRA SMALL (≤480px)
   =================================== */
@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem !important; }
    .hero-title .highlight { font-size: 1.05rem !important; }
    .current-price { font-size: 2.4rem !important; }
    .form-title { font-size: 1.2rem !important; }
    .pkg-selector-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.4rem !important;
    }
    .pkg-header-title { font-size: 1rem !important; }
}

