/* General Styles */
body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    background: #fffafc;
    color: #2d2d2d;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: #2563eb;
    color: #fff;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.logo img {
    height: 40px;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ffd700;
}

/* Header Buttons */
.header-buttons .btn-secondary {
    background: #fff;
    color: #2563eb;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Button Styles */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

.btn-large {
    min-width: 140px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: #f8fafc;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.program-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.commission {
    background: #f0f9ff;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Earnings Section */
.earnings {
    padding: 80px 0;
    background: white;
}

.earnings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.earnings-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.earnings-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.earnings-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.chart-container {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #4b5563;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #2563eb;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2563eb;
    color: #fff;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 180px;
}

.footer-logo img {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-top: 0;
    margin-bottom: 0.7rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    opacity: 0.85;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Beauty Product Landing Page Styles */
.beauty-hero {
    background: linear-gradient(135deg, #f9e6f7 0%, #fceabb 100%);
    padding: 80px 0 40px;
    text-align: center;
}
.beauty-hero img {
    width: 180px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(255, 182, 193, 0.18);
    margin-bottom: 2rem;
}
.beauty-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d6336c;
    margin-bottom: 1rem;
}
.beauty-hero p {
    font-size: 1.2rem;
    color: #6d6875;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.beauty-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}
.beauty-feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(220, 38, 120, 0.07);
    padding: 2rem 1.5rem;
    max-width: 320px;
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s;
}
.beauty-feature-card:hover {
    box-shadow: 0 8px 32px rgba(220, 38, 120, 0.13);
    transform: translateY(-4px) scale(1.03);
}
.beauty-feature-card h3 {
    color: #d6336c;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}
.beauty-feature-card i {
    margin-right: 0.5rem;
}
.beauty-feature-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}
.beauty-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 1rem 0;
}
.beauty-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d6336c;
}
.beauty-old-price {
    text-decoration: line-through;
    color: #b197fc;
    font-size: 1.1rem;
}
.beauty-badge {
    background: #fbbf24;
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
}
.beauty-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.btn-beauty {
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: #d6336c;
    color: #fff;
    box-shadow: 0 2px 8px rgba(220, 38, 120, 0.07);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-beauty:hover {
    background: #b5179e;
    box-shadow: 0 4px 16px rgba(220, 38, 120, 0.13);
}
.btn-beauty-outline {
    background: #fff;
    color: #d6336c;
    border: 2px solid #d6336c;
}
.btn-beauty-outline:hover {
    background: #d6336c;
    color: #fff;
}
.beauty-guarantee {
    color: #43aa8b;
    font-weight: 500;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.beauty-details {
    background: #f9e6f7;
    padding: 3rem 0;
}
.beauty-details-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.beauty-detail-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(220, 38, 120, 0.07);
    padding: 1.5rem;
    max-width: 300px;
    text-align: left;
}
.beauty-detail-card h4 {
    color: #d6336c;
    margin-top: 0;
    margin-bottom: 0.7rem;
}
.beauty-detail-card p {
    color: #444;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .beauty-features,
    .beauty-details-grid {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .beauty-feature-card,
    .beauty-detail-card {
        max-width: 95vw;
    }
}
@media (max-width: 600px) {
    .beauty-hero img {
        width: 120px;
    }
    .beauty-hero h1 {
        font-size: 2rem;
    }
    .beauty-hero p {
        font-size: 1rem;
    }
    .btn-beauty,
    .btn-beauty-outline {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for chart */
.chart-container::before {
    content: 'Chart loading...';
    color: #6b7280;
    font-style: italic;
}

/* Product Landing Page */
.product-hero {
    padding: 120px 0 60px;
    background: #ffffff;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s;
}

.thumbnail.active {
    border: 2px solid #2563eb;
}

.product-info {
    flex: 2 1 400px;
}

.product-info h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: #555;
    margin-left: 0.5rem;
    font-size: 1rem;
}

.product-description {
    margin: 1rem 0;
    color: #444;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.product-features li {
    margin-bottom: 0.5rem;
    color: #2563eb;
    font-weight: 500;
}

.product-features i {
    margin-right: 0.5rem;
    color: #22c55e;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
}

.badge {
    background: #22c55e;
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.guarantee {
    margin: 1rem 0;
    color: #22c55e;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Marketplaces (Where to buy) */
.marketplaces {
    margin: 2rem 0 1rem;
}

.marketplace-list {
    display: flex;
    gap: 1rem;
}

.marketplace-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    background: #f3f4f6;
    color: #222;
    transition: background 0.2s;
}

.marketplace-btn.amazon {
    background: #ff9900;
    color: #fff;
}

.marketplace-btn.flipkart {
    background: #2874f0;
    color: #fff;
}

.marketplace-btn.ebay {
    background: #e53238;
    color: #fff;
}

.marketplace-btn:hover {
    opacity: 0.85;
}

/* Social Follow and Share */
.social-follow {
    margin: 2rem 0 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    background: #f3f4f6;
    color: #222;
    transition: background 0.2s;
}

.social-btn.instagram {
    background: #e1306c;
    color: #fff;
}

.social-btn.facebook {
    background: #1877f3;
    color: #fff;
}

.social-btn.youtube {
    background: #ff0000;
    color: #fff;
}
.social-btn.pinterest {
    background: #ff0000;
    color: #fff;
}

.social-btn:hover {
    opacity: 0.85;
}

.share-tools {
    display: flex;
    gap: 1rem;
}

/* Product Details */
.product-details {
    background: #f3f4f6;
    padding: 2rem 0;
}

.details-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem;
    flex: 1 1 250px;
}

.detail-card h3 {
    margin-top: 0;
    color: #2563eb;
}

/* Image Slider */
.image-slider {
    margin: 2rem auto;
    max-width: 600px;
    position: relative;
}

.slider-images {
    display: flex;
    overflow: hidden;
}

.slider-img {
    width: 100%;
    min-width: 100%;
    transition: transform 0.5s;
    border-radius: 10px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.slider-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}

.slider-btn:hover {
    opacity: 1;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.category-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    padding: 2rem 1.2rem;
    text-align: center;
    text-decoration: none;
    color: #222;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.category-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    transform: translateY(-4px) scale(1.03);
}
.category-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}
.category-card h3 {
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.category-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.product-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    transform: translateY(-4px) scale(1.03);
}
.product-image-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.product-card:hover .product-image-wrap img {
    transform: scale(1.07);
}
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.09);
}
.badge-electronics { background: #2563eb; }
.badge-household { background: #22c55e; }
.badge-beauty { background: #d6336c; }
.badge-toys { background: #fbbf24; }
.product-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1rem 1rem 1rem;
}
.product-info-row h4 {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
    margin: 0;
}
.price {
    font-size: 1.1rem;
    color: #2563eb;
    font-weight: 700;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
.section-header h2 {
    font-size: 2rem;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-header p {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    padding: 60px 0 30px;
    text-align: center;
}
.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.7rem;
}
.blog-subtitle {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Blog Grid */
.blog-list {
    background: #fff;
    padding: 40px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    transform: translateY(-4px) scale(1.02);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-card-body h2 {
    margin: 0 0 0.7rem 0;
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 600;
}
.blog-card-body h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-body h2 a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
.blog-card-body p {
    color: #444;
    margin-bottom: 1.2rem;
    flex: 1;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.98rem;
    color: #555;
    margin-top: 1rem;
}
.blog-meta .author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.blog-meta .author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2563eb;
}
.blog-meta .date, .blog-meta .tags {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #888;
}
.blog-meta .tags {
    background: #e0e7ff;
    color: #2563eb;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}
@media (max-width: 700px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .blog-card img {
        height: 140px;
    }
    .blog-card-body {
        padding: 1rem;
    }
}
/* ///////////////////////////////////// */
/* Digital Products Hero */
.digital-hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    padding: 60px 0 30px;
    text-align: center;
}
.digital-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.7rem;
}
.digital-subtitle {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Product Grid */
.digital-products-list {
    background: #fff;
    padding: 40px 0;
}
.digital-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}
.digital-product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.digital-product-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    transform: translateY(-4px) scale(1.02);
}
.digital-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.digital-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.digital-card-body h2 {
    margin: 0 0 0.7rem 0;
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 600;
}
.digital-card-body p {
    color: #444;
    margin-bottom: 1.2rem;
    flex: 1;
}
.digital-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.digital-rating-count {
    color: #555;
    font-size: 1rem;
    margin-left: 0.5rem;
}
.digital-buy-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.digital-buy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    background: #f3f4f6;
    color: #222;
    transition: background 0.2s;
    text-decoration: none;
    font-size: 1rem;
}
.digital-buy-btn.amazon { background: #ff9900; color: #fff; }
.digital-buy-btn.flipkart { background: #2874f0; color: #fff; }
.digital-buy-btn.meesho { background: #e91e63; color: #fff; }
.digital-buy-btn:hover { opacity: 0.85; }

/* Customer Reviews */
.digital-reviews {
    background: #f8fafc;
    padding: 40px 0;
}
.digital-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.digital-review-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.digital-review-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}
.digital-review-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2563eb;
}
.digital-review-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}
.digital-review-card p {
    color: #444;
    margin-bottom: 0;
    font-size: 1rem;
}
@media (max-width: 700px) {
    .digital-products-grid, .digital-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .digital-product-card img {
        height: 140px;
    }
    .digital-card-body {
        padding: 1rem;
    }
}

/* E-Commerce Review Hub Styles */
.ecom-hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    padding: 60px 0 30px;
    text-align: center;
}
.ecom-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.7rem;
}
.ecom-subtitle {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 0;
}
.ecom-list {
    background: #fff;
    padding: 40px 0;
}
.ecom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}
.ecom-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.07);
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 1.5rem;
}
.ecom-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    transform: translateY(-4px) scale(1.02);
}
.ecom-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
}
.ecom-info {
    flex: 1;
}
.ecom-info h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 600;
}
.ecom-info h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.ecom-info h2 a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
.ecom-rating {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    color: #fbbf24;
}
.ecom-info p {
    color: #444;
    margin-bottom: 1rem;
}
.ecom-review {
    font-size: 1rem;
    color: #6d6875;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0;
}
.ecom-review i {
    color: #d6336c;
    font-size: 1.1rem;
}
@media (max-width: 700px) {
    .ecom-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .ecom-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }
    .ecom-logo img {
        margin-bottom: 1rem;
    }
}

/* Deals Page Styles */
.deals-hero {
    background: linear-gradient(90deg, #e0e7ff 0%, #f8fafc 100%);
    padding: 48px 0 24px;
    text-align: center;
}
.deals-hero h1 {
    font-size: 2.2rem;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.deals-hero p {
    color: #555;
    font-size: 1.15rem;
    margin-bottom: 0;
}
.deals-list {
    background: #fff;
    padding: 32px 0;
}
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.deal-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.deal-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    transform: translateY(-4px) scale(1.02);
}
.deal-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #f3f4f6;
}
.deal-body {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.deal-title {
    font-size: 1.1rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.deal-desc {
    color: #444;
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
}
.deal-prices {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}
.deal-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #22c55e;
}
.deal-old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
}
.deal-badge {
    background: #fbbf24;
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}
.deal-actions {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.7rem;
}
.deal-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: #2563eb;
    color: #fff;
    transition: background 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.deal-btn.amazon { background: #ff9900; }
.deal-btn.flipkart { background: #2874f0; }
.deal-btn:hover { opacity: 0.9; }
.deal-expiry {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #d6336c;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.2rem 0.7rem;
    border-radius: 10px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .deals-hero h1 { font-size: 1.5rem; }
    .deal-img { height: 100px; }
    .deal-body { padding: 0.7rem; }
}
/* Amazon-style Product Page */
        .product-hero {
            background: #fff;
            padding: 2rem 0;
            overflow: hidden; /* Prevent horizontal scroll */
            will-change: transform; /* Optimize animations */
        }
        .product-hero-content {
            display: flex;
            gap: 2rem;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        /* Main Product Image and Thumbnails */
.product-gallery {
    display: flex;
    gap: 1rem;
    position: sticky;
    top: 20px;
    height: fit-content;
    z-index: 10;
    width: 70px; /* Fixed width for thumbnail column */
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-height: 500px; /* Fixed max height */
    overflow-y: auto;
    padding-right: 0.3rem;
    width: 70px; /* Fixed width */
}

.thumbnail {
    width: 40px;
    height: 20px;
    min-height: 60px;
    object-fit: contain;
    border-radius: 6px;
    cursor: pointer;
    /* border: 1px solid #e5e7eb; */
    /* padding: 0.2rem; */
    background: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0; /* Prevent thumbnails from shrinking */
}

.main-image {
    width: 400px; /* Fixed width */
    height: 400px; /* Fixed height */
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-left: 70px;
    flex-shrink: 0; /* Prevent main image from shrinking */
    overflow: hidden; /* Contain the image */
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    margin: auto;
    display: block;
    transition: opacity 0.2s ease-in-out;
}

/* Gallery Row Images */
.gallery-row-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: center;
}

.gallery-row-images img {
    width: 100%;
    max-width: 800px; /* Increased from 600px */
    height: auto;
    min-height: 400px; /* Added minimum height */
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    background: #fff;
    transition: transform 0.2s;
    margin: 0 auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .main-image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .product-gallery {
        width: 100%;
    }
    
    .thumbnails {
        flex-direction: row;
        width: 100%;
        max-height: none;
        overflow-x: auto;
    }
    
    .main-image {
        width: 100%;
        height: 350px;
        margin-left: 0;
    }
    
    .gallery-row-images img {
        min-height: 300px;
    }
}
        .product-info {
            flex: 1 1 350px;
            min-width: 320px;
        }
        .product-info h1 {
            font-size: 2.1rem;
            margin-bottom: 0.5rem;
        }
        .rating {
            color: #fbbf24;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .rating-count {
            color: #555;
            margin-left: 0.5rem;
            font-size: 1rem;
        }
        .price-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1rem 0;
        }
        .price {
            font-size: 2rem;
            font-weight: 700;
            color: #2563eb;
        }
        .old-price {
            text-decoration: line-through;
            color: #888;
            font-size: 1.1rem;
        }
        .badge {
            background: #22c55e;
            color: #fff;
            padding: 0.2rem 0.7rem;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .guarantee {
            margin: 1rem 0;
            color: #22c55e;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .about-section, .tech-section {
            background: #f8fafc;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0 1rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .about-section h2, .tech-section h2 {
            font-size: 1.2rem;
            color: #2563eb;
            margin-bottom: 0.7rem;
        }
        .about-section ul {
            margin: 0;
            padding-left: 1.2rem;
        }
        .about-section li {
            margin-bottom: 0.5rem;
            color: #222;
        }
        .tech-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 0.7rem;
        }
        .tech-table th, .tech-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e5e7eb;
            text-align: left;
            font-size: 1rem;
        }
        .tech-table th {
            background: #e0e7ff;
            color: #2563eb;
            font-weight: 600;
        }
        .tech-table tr:last-child td {
            border-bottom: none;
        }
        /* Related Products Slider */
        .related-section {
            margin: 2.5rem 0 1.5rem 0;
        }
        .related-section h2 {
            font-size: 1.2rem;
            color: #2563eb;
            margin-bottom: 1rem;
        }
        .related-slider {
            display: flex;
            overflow-x: auto;
            gap: 1.5rem;
            padding-bottom: 1rem;
            scroll-behavior: smooth;
        }
        .related-card {
            min-width: 220px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(37,99,235,0.07);
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .related-card:hover {
            box-shadow: 0 8px 32px rgba(37,99,235,0.13);
            transform: translateY(-4px) scale(1.03);
        }
        .related-card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 0.7rem;
        }
        .related-card h4 {
            font-size: 1rem;
            color: #2563eb;
            margin: 0.5rem 0 0.3rem 0;
            text-align: center;
        }
        .related-card p {
            font-size: 0.95rem;
            color: #444;
            margin-bottom: 0.7rem;
            text-align: center;
        }
        .related-card .btn {
            font-size: 0.95rem;
            padding: 0.5rem 1.2rem;
        }
        /* Slider arrows */
        .slider-arrows {
            display: flex;
            justify-content: flex-end;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .slider-arrow {
            background: #2563eb;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        .slider-arrow:hover {
            opacity: 1;
        }
        /* Product Gallery Row (Amazon-style, vertical large images) */
        .product-gallery-row {
            margin: 2.5rem 0 1.5rem 0;
            background: #f8fafc;
            border-radius: 10px;
            padding: 1.5rem 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .gallery-row-title {
            font-size: 1.2rem;
            color: #2563eb;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .gallery-row-images {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            width: 100%;
            align-items: center;
        }
        .gallery-row-images img {
            width: 100%;
            max-width: 1000px; /* Increased from 600px */
            height: auto;
            min-height: 400px; /* Added minimum height */
            object-fit: contain;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(37,99,235,0.07);
            background: #fff;
            transition: transform 0.2s;
            margin: 0 auto;
            display: block;
        }
        .gallery-row-images img:hover {
            box-shadow: 0 8px 32px rgba(37,99,235,0.13);
            transform: scale(1.03);
        }
        @media (max-width: 900px) {
            .gallery-row-images img {
                max-width: 100%;
            }
        }
        @media (max-width: 600px) {
            .product-gallery-row {
                padding: 1rem 0.5rem;
            }
            .gallery-row-images img {
                max-width: 100%;
                border-radius: 10px;
            }
        }
        /* Product Quantity Selector */
        .item-selector {
            margin: 2rem 0 1.5rem 0;
        }
        .item-label {
            font-size: 1rem;
            color: #222;
            font-weight: 500;
            margin-bottom: 0.7rem;
            display: block;
        }
        .selected-count {
            font-weight: 700;
        }
        .item-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        .item-box {
            background: #fff;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 0.7rem 1.2rem;
            min-width: 110px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(37,99,235,0.07);
            cursor: pointer;
            transition: border 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
            margin-bottom: 0.5rem;
            color: #222;
        }

        .item-box.selected,
        .item-box:hover {
            border: 2px solid #2563eb;
            background: #f3f8ff;
            color: #2563eb;
            box-shadow: 0 4px 16px rgba(37,99,235,0.13);
        }

        /* When cursor leaves, returns to original color (handled by default state above) */
        .item-box:not(:hover):not(.selected) {
            border: 2px solid #e5e7eb;
            background: #fff;
            color: #222;
            box-shadow: 0 2px 8px rgba(37,99,235,0.07);
        }
        .item-count {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }
        .item-price {
            font-size: 1rem;
            font-weight: 700;
            color: #222;
        }
        .item-per-count {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 0.2rem;
        }
        .item-old-price {
            font-size: 0.92rem;
            color: #888;
            text-decoration: line-through;
        }
        @media (max-width: 600px) {
            .item-grid {
                gap: 0.5rem;
            }
            .item-box {
                min-width: 80px;
                padding: 0.5rem 0.7rem;
                font-size: 0.95rem;
            }
        }
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        /* Delivery Features Banner */
        .delivery-features {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem;
            background: #f8fafc;
            border-radius: 8px;
            margin: 1rem 0;
            flex-wrap: nowrap;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem;
            flex: 1;
        }
        .feature-item i {
            font-size: 1rem;
            color: #2563eb;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e0e7ff;
            border-radius: 50%;
        }
        .feature-text h4 {
            font-size: 0.75rem;
            margin: 0;
        }
        .feature-text p {
            font-size: 0.65rem;
            margin: 0;
        }
        @media (max-width: 768px) {
            .delivery-features {
                flex-wrap: wrap;
            }
            
            .feature-item {
                width: auto;
                min-width: auto;
            }
        }

        /* Update these responsive styles in your <style> tag */

@media (max-width: 1024px) {
    .product-hero-content {
        flex-direction: column;
        padding: 0 1rem;
    }

    .product-gallery {
        flex-direction: row;
        position: relative;
        top: 0;
        width: 100%;
    }

    .thumbnails {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        padding: 0.5rem;
        gap: 0.8rem;
        position: relative;
        top: 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .thumbnails::-webkit-scrollbar {
        display: none;
    }

    .main-image {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .product-info {
        width: 100%;
        padding: 1rem 0;
    }

    .delivery-features {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .feature-item {
        width: calc(50% - 0.5rem);
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .product-info h2 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }

    .tech-table {
        font-size: 0.9rem;
    }

    .social-follow .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .related-slider {
        gap: 1rem;
    }

    .related-card {
        min-width: 180px;
    }

    .feature-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-info h2 {
        font-size: 1.2rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .tech-table {
        display: block;
        overflow-x: auto;
    }

    .about-section ul {
        padding-left: 1rem;
    }

    .social-follow .btn {
        flex: 1;
        text-align: center;
        padding: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Add smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Improve touch interactions */
@media (hover: none) {
    .btn:active {
        transform: scale(0.98);
    }
    
    .thumbnail:active {
        transform: scale(1.05);
    }
}

/* Justify text in product description */
.about-section ul li {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Justify product title */
.product-info h2 {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: medium;
}

/* Justify table content */
.tech-table td {
    text-align: justify;
    text-justify: inter-word;
    padding: 0.8rem 1rem;
}

/* Justify related product descriptions */
.related-card p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.5;
}

/* Justify footer content */
.footer-section p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
}

/* Justify any generic paragraphs */
p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
}



