:root {
    --primary: #5e6b7c;
    --accent: #e67e22;
    --bg: #f8f9fa;
    --white: #ffffff;
    --radius: 16px;
}

/* Prevent horizontal scroll */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: #2d3436;
    margin: 0;
    padding: 0;
    padding-bottom: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    box-sizing: border-box;
    font-size: 1.1rem; /* Base font %20 larger for elderly users */
    line-height: 1.6;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Page Wrapper - Prevents horizontal overflow */
.page-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
}

/* Global text overflow prevention */
p, h1, h2, h3, h4, h5, h6, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

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

/* Clean Header */
header {
    background: white;
    padding: 20px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
}

.search-wrapper {
    display: none;
}

.search-wrapper input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    margin-left: 10px;
    font-weight: 500;
}

.nav-actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    cursor: pointer;
}

.action-link i {
    font-size: 1.1rem;
}

.action-link:hover {
    background: #f0f0f0;
    color: #333;
}

.action-link span {
    white-space: nowrap;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Rounded Hero */
.hero {
    margin: 20px 4%;
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    position: relative;
    width: calc(100% - 8%);
    box-sizing: border-box;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Video Styles - Always vertical video */
.hero.hero-video {
    height: auto;
    aspect-ratio: 704 / 1280; /* Keep vertical video ratio */
    max-height: 70vh;
    max-width: 400px; /* Limit width on desktop */
    margin-left: auto;
    margin-right: auto;
    background: transparent;
}

.hero.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

/* Desktop/Tablet: Hide hero-text on video hero (video has its own text) */
.hero.hero-video .hero-text {
    display: none;
}

.hero-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-text a {
    color: var(--accent);
    font-weight: 700;
}

/* Info Scroller - Auto scrolling badges */
.info-scroller {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    padding: 15px 0;
    position: relative;
}

.info-scroller::before,
.info-scroller::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.info-scroller::before {
    left: 0;
    background: linear-gradient(90deg, #f8f9fa, transparent);
}

.info-scroller::after {
    right: 0;
    background: linear-gradient(90deg, transparent, #f8f9fa);
}

.info-track {
    display: flex;
    gap: 20px;
    animation: scrollLeft 25s linear infinite;
    width: max-content;
}

.info-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.info-badge i {
    font-size: 1.1rem;
}

/* Badge Colors */
.info-badge.green {
    background: linear-gradient(135deg, #d5f4e6 0%, #a8e6cf 100%);
    color: #1e7e34;
}

.info-badge.orange {
    background: linear-gradient(135deg, #ffe8d6 0%, #ffcba4 100%);
    color: #d35400;
}

.info-badge.blue {
    background: linear-gradient(135deg, #d6eaff 0%, #a4d4ff 100%);
    color: #0066cc;
}

.info-badge.purple {
    background: linear-gradient(135deg, #e8d6ff 0%, #d4a4ff 100%);
    color: #7b2cbf;
}

.info-badge.red {
    background: linear-gradient(135deg, #ffd6d6 0%, #ffa4a4 100%);
    color: #c0392b;
}

.info-badge.teal {
    background: linear-gradient(135deg, #d6fff0 0%, #a4ffe0 100%);
    color: #00897b;
}

.info-badge.gold {
    background: linear-gradient(135deg, #fff8d6 0%, #ffe9a4 100%);
    color: #b8860b;
}

.info-badge.pink {
    background: linear-gradient(135deg, #ffd6e8 0%, #ffa4c4 100%);
    color: #c71585;
}

/* Legacy Pill Categories (keep for other pages) */
.scroller {
    padding: 20px 4%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
}

.pill {
    display: inline-block;
    padding: 10px 25px;
    background: white;
    border-radius: 30px;
    margin-right: 15px;
    font-weight: 500;
    border: 1px solid #eee;
    transition: 0.2s;
    cursor: pointer;
}

.pill.active {
    background: #333;
    color: white;
    border-color: #333;
}

.pill:hover {
    border-color: #333;
}

/* Grid */
.grid-container {
    padding: 0 4%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

.card {
    background: white;
    border-radius: var(--radius);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.card:hover {
    border-color: #eee;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.card-img {
    height: 250px;
    background: #f8f9fa;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

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

.like-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 2;
}

.free-shipping {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #27ae60;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 20px;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    float: right;
}

.title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
}

.desc {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.add-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.add-btn:hover {
    background: var(--accent);
}

/* New Sections: Why Us / Promo / FAQ / Payment */
.why-us {
    padding: 60px 4%;
    background: #fff;
    text-align: center;
    margin-top: 40px;
    border-radius: var(--radius);
    width: 100%;
    box-sizing: border-box;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 40px;
    margin-top: 40px;
}

.why-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    background: #fff5eb;
    padding: 20px;
    border-radius: 50%;
}

.why-item h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-banner {
    margin: 60px 4%;
    height: 300px;
    border-radius: var(--radius);
    background: url('https://images.unsplash.com/photo-1482192505345-5655af888cc4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: calc(100% - 8%);
    box-sizing: border-box;
}

.promo-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.promo-banner h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.promo-banner p {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
}

.white-btn {
    background: white;
    color: #333;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
}

.faq-section {
    padding: 60px 4%;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.faq-item {
    background: white;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    background: #fdfdfd;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.payment-section {
    padding: 40px 4%;
    text-align: center;
    background: white;
    border-top: 1px solid #eee;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    color: #555;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Blog Section */
.blog-section {
    margin-top: 60px;
    padding: 0 4%;
    width: 100%;
    box-sizing: border-box;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 30px;
}

.blog-card img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 15px;
    height: 200px;
    object-fit: cover;
}

.blog-date {
    font-size: 0.8rem;
    color: #888;
}

.blog-title {
    font-weight: 700;
    margin: 10px 0;
}

/* Mobile Tab Bar */
.tab-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d3436;
    color: white;
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    align-items: center;
    width: 90%;
    max-width: 400px;
    justify-content: space-between;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
    color: white;
    gap: 4px;
}

.tab-item span {
    font-size: 0.65rem;
    font-weight: 500;
}

.tab-item.active {
    opacity: 1;
    transform: scale(1.05);
    color: var(--accent);
}

.tab-item:hover {
    opacity: 1;
}

/* Desktop Footer */
.desktop-footer {
    background: white;
    margin-top: 80px;
    padding: 60px 4% 20px;
    border-top: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #333;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
}

.footer-col ul li:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 40px;
    padding: 40px 4%;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.contact-info {
    padding: 20px 0;
}

.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* ========== ABOUT PAGE STYLES ========== */

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 4%;
    background: white;
    margin: -30px 4% 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    width: calc(100% - 8%);
    box-sizing: border-box;
}

.stat-item {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: #fff5eb;
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Story Section */
.about-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 60px;
    padding: 60px 4%;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f9f0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #27ae60;
}

.story-feature i {
    color: #27ae60;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    padding: 60px 4%;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: #fff5eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.mv-card h3 {
    margin-bottom: 15px;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 60px 4%;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.values-section h2 {
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 25px;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.value-card h4 {
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 60px 4%;
    background: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.timeline-section h2 {
    margin-bottom: 50px;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #eee;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot::after {
    content: '';
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
}

.timeline-year {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 60px 4%;
    background: #f8f9fa;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.team-section h2 {
    margin-bottom: 10px;
}

.team-desc {
    color: #666;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card span {
    font-size: 0.85rem;
    color: var(--accent);
}

/* About CTA */
.about-cta {
    padding: 80px 4%;
    text-align: center;
    background: linear-gradient(135deg, #2d3436 0%, #000 100%);
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.about-cta h2 {
    margin-bottom: 15px;
}

.about-cta p {
    color: #aaa;
    margin-bottom: 30px;
}

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

.cta-btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}

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

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
    padding: 40px 4%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 60px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}

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

.product-thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
    flex-shrink: 0;
}

.product-thumb:hover,
.product-thumb.active {
    border-color: var(--accent);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px 0;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-badge {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.product-old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #27ae60;
    font-size: 0.9rem;
    margin: 15px 0 25px;
}

.product-stock i {
    font-size: 1rem;
}

.product-description {
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.product-features {
    margin-bottom: 30px;
}

.product-features h4 {
    margin-bottom: 15px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.feature-item i {
    color: #27ae60;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-cart {
    flex: 1;
    background: #333;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cart:hover {
    background: var(--accent);
}

.btn-wishlist {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: 0.3s;
}

.btn-wishlist:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.product-meta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
}

.meta-item i {
    width: 20px;
    color: var(--accent);
}

/* Package Contents */
.package-contents {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.package-contents h4 {
    margin-bottom: 15px;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.package-item:last-child {
    border-bottom: none;
}

.package-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Mobile Media Queries */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100%;
    }
    
    .page-wrapper {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Ensure all containers fit */
    .product-detail,
    .product-info,
    .product-gallery,
    .products-section,
    .why-us,
    .blog-section,
    .faq-section,
    .contact-grid,
    .about-story,
    .footer-content {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Info Scroller Mobile */
    .info-scroller {
        padding: 12px 0;
    }

    .info-track {
        gap: 15px;
        animation-duration: 20s;
    }

    .info-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .info-badge i {
        font-size: 1rem;
    }

    /* Fix scroller overflow */
    .scroller {
        padding: 15px 4%;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .pill {
        padding: 8px 18px;
        margin-right: 10px;
        font-size: 0.9rem;
    }
    
    body {
        padding-bottom: 90px;
    }

    /* Header Mobile */
    header {
        padding: 15px 4%;
        border-bottom: 1px solid #f0f0f0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-actions {
        gap: 0px;
        flex-wrap: nowrap;
    }

    .action-link {
        padding: 8px 14px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .action-link i {
        font-size: 1rem;
    }

    .action-link span {
        display: inline;
    }

    .search-wrapper {
        display: none;
        /* Hidden by default */
    }

    .mobile-search-active .search-wrapper {
        display: flex;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        padding: 10px 4%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        z-index: 90;
    }

    /* Hero Mobile */
    .hero {
        margin: 15px 4%;
        height: 350px;
        border-radius: var(--radius);
    }

    /* Hero Video Mobile - Full width vertical video */
    .hero.hero-video {
        height: auto;
        aspect-ratio: 704 / 1280;
        max-height: 75vh;
        max-width: 100%;
        margin: 10px 4%;
        width: calc(100% - 8%);
    }

    .hero.hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Hide hero-text on mobile for video hero */
    .hero.hero-video .hero-text {
        display: none;
    }

    .hero-text {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    /* 2-Column Grid */
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 4%;
    }

    .card {
        border-radius: 12px;
    }

    .card-img {
        height: 160px;
    }

    .card-body {
        padding: 12px;
    }

    .title {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .desc {
        display: none;
    }

    .price {
        font-size: 1rem;
        float: none;
        display: block;
        margin-bottom: 5px;
    }

    .add-btn {
        padding: 8px;
        font-size: 0.8rem;
    }

    .free-shipping {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }

    /* Footer Mobile */
    .desktop-footer {
        padding: 40px 4% 100px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-item {
        margin-bottom: 20px;
    }

    /* Blog Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* New Sections Mobile Adjustments */
    .faq-section {
        padding: 40px 4%;
    }

    .promo-banner h2 {
        font-size: 1.8rem;
    }

    /* Contact Page Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 4%;
    }

    .contact-info {
        padding: 0;
        text-align: center;
    }

    .contact-info > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info > div > div {
        justify-content: center;
    }

    .contact-form-box {
        padding: 20px;
    }

    /* Why Us Section Mobile */
    .why-us {
        padding: 40px 4%;
        margin: 20px 4%;
        border-radius: 12px;
        width: calc(100% - 8%);
        box-sizing: border-box;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-item i {
        font-size: 2rem;
        padding: 15px;
    }

    .why-item h3 {
        font-size: 1rem;
    }

    /* Promo Banner Mobile */
    .promo-banner {
        margin: 40px 4%;
        height: 250px;
        width: calc(100% - 8%);
        box-sizing: border-box;
    }

    .promo-banner p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .white-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Payment Section Mobile */
    .payment-section {
        padding: 30px 4%;
    }

    .payment-icons {
        font-size: 1.5rem;
        gap: 15px;
    }

    /* Blog Section Mobile */
    .blog-section {
        padding: 0 4%;
        margin-top: 40px;
    }

    .blog-header {
        padding: 0;
    }

    .blog-card img {
        height: 180px;
    }

    /* About Page Mobile */
    .stats-section {
        margin: -20px 4% 30px;
        padding: 30px 20px;
        gap: 20px;
        width: calc(100% - 8%);
        box-sizing: border-box;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

    .about-story {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 4%;
    }

    .story-content h2 {
        font-size: 1.5rem;
    }

    .story-image img {
        height: 250px;
    }

    .story-features {
        justify-content: center;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        padding: 40px 4%;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .values-section {
        padding: 40px 4%;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .value-card {
        padding: 20px 15px;
    }

    .value-card p {
        font-size: 0.8rem;
    }

    .timeline-section {
        padding: 40px 4%;
    }

    .timeline {
        flex-direction: column;
        gap: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        text-align: left;
        padding: 0 0 30px 50px;
        position: relative;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #eee;
    }

    .timeline-dot {
        position: absolute;
        left: 0;
        top: 0;
        width: 32px;
        height: 32px;
    }

    .team-section {
        padding: 40px 4%;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .team-card {
        padding: 15px;
    }

    .team-photo {
        width: 70px;
        height: 70px;
    }

    .about-cta {
        padding: 50px 4%;
    }

    .about-cta h2 {
        font-size: 1.5rem;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Product Detail Mobile */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 4%;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .product-gallery {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 100%;
    }

    .product-info {
        width: 100%;
        max-width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .product-main-image {
        height: 300px;
    }

    .product-main-image.square {
        height: 0;
        padding-bottom: 100%;
    }

    .product-title {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    .product-price {
        font-size: 2rem;
    }

    .product-description {
        font-size: 0.95rem;
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-buy-now {
        width: 100%;
        box-sizing: border-box;
    }

    .btn-wishlist {
        width: 100%;
    }

    .product-meta {
        width: 100%;
    }

    .meta-item {
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    /* Extra small screen product detail fixes */
    .product-detail {
        padding: 15px 3%;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-price {
        font-size: 1.8rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .btn-buy-now {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .product-thumbnails {
        gap: 8px;
    }

    .product-thumb {
        width: 55px;
        min-width: 55px;
        height: 55px;
    }

    .hero {
        height: 250px;
    }

    /* Hero Video Extra Small */
    .hero.hero-video {
        aspect-ratio: 704 / 1280;
        max-height: 75vh;
    }

    .hero-text h1 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 0.8rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .card-img {
        height: 200px;
    }

    .title {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .price {
        font-size: 1.1rem;
    }

    .add-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Promo Banner Extra Small */
    .promo-banner {
        height: 220px;
    }

    .promo-banner h2 {
        font-size: 1.4rem;
    }

    .promo-banner p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    /* Contact Page Extra Small */
    .contact-grid {
        padding: 20px 4%;
    }

    .contact-form-box {
        padding: 15px;
    }

    /* Map Mobile */
    div[style*="padding: 0 5%"] iframe {
        height: 280px !important;
    }
}

/* =====================================================
   NEW PRODUCT CARDS - Clean Design
===================================================== */

/* Products Section */
.products-section {
    padding: 60px 4%;
    background: var(--white);
    margin: 40px 4%;
    border-radius: var(--radius);
    width: calc(100% - 8%);
    box-sizing: border-box;
}

.products-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.products-section .section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.15);
    transform: translateY(-5px);
}

.product-card.featured {
    border-color: var(--accent);
}

/* Product Image */
.product-card .product-image {
    display: block;
    position: relative;
    height: 280px;
    overflow: hidden;
}

/* Square Image Support */
.product-card .product-image.square {
    height: 0;
    padding-bottom: 100%; /* 1:1 aspect ratio */
}

.product-card .product-image.square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-main-image.square {
    height: 0;
    padding-bottom: 100%;
    position: relative;
}

.product-main-image.square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img.square {
    height: 0;
    padding-bottom: 100%;
    position: relative;
}

.card-img.square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Badges */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.best-seller {
    background: #27ae60;
}

.product-discount {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
}

/* Product Content */
.product-content {
    padding: 25px;
}

.product-category {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.product-name:hover {
    color: var(--accent);
}

.product-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Mini Features */
.product-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-features-mini span {
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-features-mini i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* Package Includes */
.product-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-includes span {
    background: #d5f4e6;
    color: #27ae60;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Product Pricing */
.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
}

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

.current-price {
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: 800;
}

.btn-view {
    background: #333;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-view:hover {
    background: var(--accent);
    transform: translateX(3px);
}

.btn-view i {
    font-size: 0.85rem;
}

/* Why Choose Section */
.why-choose {
    padding: 40px 4%;
    text-align: center;
    background: var(--bg);
    width: 100%;
    box-sizing: border-box;
}

.why-choose h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #555;
}

.why-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.why-item-small {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 30px;
}

.why-item-small i {
    color: var(--accent);
    font-size: 1.2rem;
}

.why-item-small span {
    font-weight: 600;
    color: #333;
}

/* Mobile Responsive for Product Cards */
@media (max-width: 768px) {
    .products-section {
        padding: 40px 4%;
        margin: 20px 4%;
        border-radius: 12px;
        width: calc(100% - 8%);
        box-sizing: border-box;
    }

    .products-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .products-section .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-card .product-image {
        height: 220px;
    }

    /* Square images on mobile */
    .product-card .product-image.square {
        height: 0;
        padding-bottom: 100%;
    }

    .product-main-image.square {
        height: 0;
        padding-bottom: 100%;
    }

    /* Product thumbnails mobile */
    .product-thumb {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }

    .product-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .product-discount {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .product-content {
        padding: 18px;
    }

    .product-category {
        font-size: 0.7rem;
    }

    .product-name {
        font-size: 1.15rem;
    }

    .product-desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .product-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-view {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .current-price {
        font-size: 1.6rem;
    }

    .old-price {
        font-size: 0.85rem;
    }

    .product-features-mini {
        gap: 8px;
    }

    .product-features-mini span {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .product-includes {
        gap: 6px;
    }

    .product-includes span {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    /* Why Choose Mobile */
    .why-choose {
        padding: 30px 4%;
    }

    .why-choose h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .why-items {
        flex-direction: column;
        gap: 12px;
    }

    .why-item-small {
        justify-content: center;
        padding: 12px 20px;
        width: 100%;
    }

    .why-item-small i {
        font-size: 1rem;
    }

    .why-item-small span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-section .section-title {
        font-size: 1.4rem;
    }

    .products-section .section-subtitle {
        font-size: 0.85rem;
    }

    .product-card .product-image {
        height: 180px;
    }

    .product-content {
        padding: 15px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .product-features-mini span,
    .product-includes span {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .current-price {
        font-size: 1.4rem;
    }

    .btn-view {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .why-item-small {
        padding: 10px 15px;
    }

    .why-item-small span {
        font-size: 0.85rem;
    }
}

/* =====================================================
   ANIMATED BUY BUTTON
===================================================== */

.btn-buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    text-decoration: none;
}

.btn-buy-now:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.5);
}

.btn-buy-now i {
    font-size: 1rem;
    animation: bounce-right 1s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(230, 126, 34, 0.7), 0 0 40px rgba(230, 126, 34, 0.3);
    }
}

@keyframes bounce-right {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Shine effect */
.btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* =====================================================
   CHECKOUT PAGE STYLES
===================================================== */

.checkout-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 4%;
    width: 100%;
    box-sizing: border-box;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #999;
    transition: all 0.3s;
}

.progress-step span {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.progress-step.active .step-number {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.progress-step.active span {
    color: var(--accent);
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: #27ae60;
    color: white;
}

.progress-step.completed span {
    color: #27ae60;
}

.progress-line {
    width: 80px;
    height: 3px;
    background: #eee;
    margin: 0 15px;
}

/* Checkout Content */
.checkout-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Checkout Summary */
.checkout-summary {
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    order: 2;
}

.checkout-summary h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-product {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.summary-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.summary-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.summary-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #666;
}

.summary-row.total {
    border-top: 2px solid #eee;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.summary-row .free {
    color: #27ae60;
    font-weight: 600;
}

.summary-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.summary-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666;
}

.summary-badges i {
    color: var(--accent);
}

/* Checkout Form */
.checkout-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    order: 1;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.checkout-form h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #333;
}

.checkout-form h2 i {
    color: var(--accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-next {
    width: 100%;
    padding: 18px;
    background: #333;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    transition: all 0.3s;
}

.btn-next:hover {
    background: var(--accent);
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.2s;
}

.payment-box i {
    font-size: 1.5rem;
    color: #999;
    width: 40px;
}

.payment-box strong {
    display: block;
    margin-bottom: 3px;
}

.payment-box span {
    font-size: 0.85rem;
    color: #888;
}

.payment-option.active .payment-box {
    border-color: var(--accent);
    background: #fff9f5;
}

.payment-option.active .payment-box i {
    color: var(--accent);
}

.card-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-back {
    flex: 1;
    padding: 16px;
    background: #f0f0f0;
    color: #555;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #e0e0e0;
}

.btn-complete {
    flex: 2;
    padding: 16px;
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-complete:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
}

/* Confirmation Box */
.confirmation-box {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.confirmation-box h2 {
    justify-content: center;
    color: #27ae60;
    margin-bottom: 15px;
}

.confirmation-box p {
    color: #666;
    margin-bottom: 10px;
}

.order-number {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    margin: 20px 0;
    font-size: 1.1rem;
}

.order-number strong {
    color: var(--accent);
}

.confirmation-text {
    max-width: 400px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #333;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home:hover {
    background: var(--accent);
}

/* Checkout Mobile */
@media (max-width: 768px) {
    .checkout-container {
        margin: 20px auto;
        padding: 0 4%;
    }

    .checkout-progress {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .progress-line {
        width: 30px;
        margin: 0 8px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .progress-step span {
        font-size: 0.7rem;
    }

    .checkout-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .checkout-summary {
        order: 1;
        position: relative;
        top: 0;
        padding: 20px;
    }

    .checkout-form {
        order: 2;
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkout-form h2 {
        font-size: 1.2rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-back, .btn-complete {
        width: 100%;
    }

    .summary-badges {
        flex-direction: column;
        gap: 10px;
    }

    .btn-buy-now {
        width: 100%;
        padding: 16px 25px;
        font-size: 1rem;
    }
}


/* Payment Methods Grid */
.payment-methods-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    min-width: 120px;
    transition: 0.3s;
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.payment-method i {
    font-size: 1.8rem;
    color: #555;
}

.payment-method span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.payment-icons-group {
    display: flex;
    gap: 8px;
}

.payment-icons-group i {
    font-size: 1.5rem;
}

.payment-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #27ae60;
    font-size: 0.85rem;
    margin-top: 10px;
}

.payment-secure i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .payment-methods-grid {
        gap: 15px;
    }
    
    .payment-method {
        padding: 15px 20px;
        min-width: 100px;
    }
    
    .payment-method i {
        font-size: 1.5rem;
    }
    
    .payment-icons-group i {
        font-size: 1.2rem;
    }
}


/* ========== ENHANCED PRODUCT PAGE STYLES ========== */

/* Product Badges Row */
.product-badges-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: pulse 2s infinite;
}

.product-badge.economy {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-badge.stock-badge {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #555;
}

.trust-badge i {
    color: var(--accent);
}

.trust-badge.highlight {
    background: linear-gradient(135deg, #d5f4e6 0%, #a8e6cf 100%);
    color: #1e7e34;
    font-weight: 600;
}

.trust-badge.highlight i {
    color: #1e7e34;
}

/* Quick Features */
.quick-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #333;
}

.quick-feature i {
    color: #27ae60;
    font-size: 0.85rem;
}

/* Price Section */
.price-section {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 2px solid var(--accent);
}

.price-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-savings {
    background: #27ae60;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-note {
    font-size: 0.8rem;
    color: #888;
}

/* Buy Buttons */
.btn-buy-now {
    flex: 1;
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.btn-buy-door {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 10px;
}

.btn-buy-door:hover {
    background: #444;
}

.product-actions {
    flex-direction: column;
}

/* Service Icons */
.service-icons {
    display: flex;
    justify-content: space-around;
    padding: 25px 0;
    margin: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.service-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.service-icon span {
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

/* Reviews Mini */
.reviews-mini {
    background: #fffbf5;
    border: 1px solid #ffe0b2;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Product FAQ */
.product-faq {
    margin: 25px 0;
}

.product-faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.product-faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    cursor: pointer;
    background: #f8f9fa;
    transition: 0.3s;
}

.product-faq-q:hover {
    background: #f0f0f0;
}

.product-faq-q i:first-child {
    color: var(--accent);
    width: 20px;
}

.product-faq-q span {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-faq-q i:last-child {
    color: #999;
    transition: 0.3s;
}

.product-faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background: white;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    transition: 0.3s;
}

.product-faq-item.active .product-faq-a {
    max-height: 200px;
    padding: 15px;
    border-top: 1px solid #eee;
}

.product-faq-item.active .product-faq-q i:last-child {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-badges-row {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .quick-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .service-icons {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .service-icon {
        flex: 1;
        min-width: 80px;
    }
    
    .price-row {
        flex-wrap: wrap;
    }
}


/* Homepage Product Card Badges */
.product-badge.economy-badge {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-badge.best-seller {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s infinite;
}

.savings-tag {
    background: #27ae60;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 8px;
}

.product-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.product-features-mini span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #27ae60;
    background: #e8f5e9;
    padding: 4px 8px;
    border-radius: 15px;
}

.product-features-mini span i {
    font-size: 0.7rem;
}


/* Live Viewers */
.live-viewers {
    background: #fff5f5;
    border: 1px solid #ffcdd2;
}

.live-viewers .reviews-header {
    color: #c0392b;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    margin-left: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Old Price */
.product-old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


/* ========== ELDERLY-FRIENDLY FONT SIZES ========== */
/* All fonts increased by ~20% for better readability */

/* Product Title - Bold and Large */
.product-title {
    font-size: 2.4rem !important;
    font-weight: 800 !important;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Section Titles */
.section-title,
.why-us h2,
.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* Product Names on Cards */
.product-name {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
}

/* Product Description */
.product-desc,
.product-description {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Price - Large and Bold */
.product-price,
.current-price {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
}

.product-old-price,
.old-price {
    font-size: 1.4rem;
}

/* Buttons - Larger Text */
.btn-buy-now,
.btn-buy-door,
.btn-view,
.add-btn,
.cta-btn {
    font-size: 1.1rem;
    padding: 18px 30px;
}

/* Quick Features */
.quick-feature {
    font-size: 1.05rem;
}

/* FAQ Questions */
.product-faq-q span,
.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
}

/* FAQ Answers */
.product-faq-a,
.faq-answer {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Trust Badges */
.trust-badge span {
    font-size: 1rem;
}

/* Service Icons Text */
.service-icon span {
    font-size: 0.95rem;
}

/* Meta Items */
.meta-item span {
    font-size: 1rem;
}

/* Package Contents */
.package-contents strong {
    font-size: 1.1rem;
}

/* Info Badges (Scroller) */
.info-badge span {
    font-size: 1rem;
}

/* Card Titles */
.card .title {
    font-size: 1.15rem;
    font-weight: 600;
}

/* Card Price */
.card .price {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Why Us Items */
.why-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.why-item p {
    font-size: 1rem;
}

/* Reviews Mini */
.reviews-mini span {
    font-size: 1rem;
}

/* Live Viewers */
.live-viewers span {
    font-size: 1.05rem;
}

/* Price Savings Tag */
.price-savings,
.savings-tag {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Product Category */
.product-category {
    font-size: 0.95rem;
}

/* Mobile Adjustments for Elderly */
@media (max-width: 768px) {
    body {
        font-size: 1.05rem;
    }
    
    .product-title {
        font-size: 1.8rem !important;
    }
    
    .product-price,
    .current-price {
        font-size: 2.2rem !important;
    }
    
    .product-name {
        font-size: 1.15rem !important;
    }
    
    .btn-buy-now,
    .btn-buy-door {
        font-size: 1.05rem;
        padding: 16px 25px;
    }
}
