/* Meeoow Club - Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #D84B20;
    --primary-hover: #B83B16;
    --primary-light: #FFF0EB;
    --primary-bg: #FAF6F4;
    --accent: #FFA87D;
    --text-dark: #1E1E1E;
    --text-muted: #666666;
    --white: #FFFFFF;
    --border-color: #FFEBE5;
    --shadow-soft: 0 10px 30px rgba(216, 75, 32, 0.04);
    --shadow-medium: 0 15px 45px rgba(216, 75, 32, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--primary-bg);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(216, 75, 32, 0.2);
    transition: var(--transition);
    text-align: center;
    font-size: 16px;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 75, 32, 0.3);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

/* Top Announcement Marquee */
.top-marquee-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    z-index: 101;
    border-bottom: 1px solid var(--primary-hover);
    letter-spacing: 0.5px;
}
.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 45s linear infinite;
}
.marquee-content span {
    display: inline-block;
    padding-right: 60px;
}
@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

.cart-icon-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-btn {
    background-color: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.contact-btn:hover {
    background-color: #20BA56;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-dark);
}

/* Hero Section */
.hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-tag {
    background-color: #FFEFEA;
    color: var(--primary);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(216, 75, 32, 0.1);
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-bullets {
    display: flex;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--primary);
}

.hero-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

.hero-offer-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px;
    border-radius: 50%;
    width: 85px;
    height: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(216, 75, 32, 0.3);
    animation: pulse 2s infinite;
}

/* Trust Badges Section */
.trust-badges-sec {
    background-color: var(--primary-light);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.badges-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge-card svg {
    color: var(--primary);
}

.badge-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.badge-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Benefits Section */
.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 65px;
    height: 65px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Before / After Results */
.ba-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ba-slider {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.ba-img-container {
    position: relative;
}

.ba-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(30, 30, 30, 0.85);
    color: var(--white);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

.ba-content {
    padding-left: 20px;
}

.ba-content ul {
    list-style: none;
    margin: 25px 0 35px 0;
}

.ba-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.ba-content li svg {
    color: #25D366;
    flex-shrink: 0;
}

/* How to Use Section */
.steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(216, 75, 32, 0.25);
}

.step-card h3 {
    margin: 15px 0 10px 0;
    font-size: 18px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Ingredients Section */
.ingredients-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.ingredients-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ingredient-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.ingredient-img {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ingredient-item h4 {
    font-size: 15px;
    font-weight: 600;
}

/* Reviews Section */
.reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-stars {
    display: flex;
    gap: 3px;
    color: #FFB800;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.user-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.user-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-max {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-item.active .faq-answer {
    padding: 0 22px 22px 22px;
    max-height: 200px;
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Newsletter */
.newsletter-card {
    background: linear-gradient(135deg, #FFEBE5, #FFF5F2);
    border-radius: var(--radius-md);
    padding: 60px 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0 auto;
    background-color: var(--white);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.newsletter-form input {
    flex-grow: 1;
    border: none;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    border-radius: 50px;
    outline: none;
}

.newsletter-form button {
    padding: 12px 28px;
    border-radius: 50px;
}

/* Footer */
.site-footer {
    background-color: #1A1A1A;
    color: #CCCCCC;
    padding: 80px 0 30px 0;
    font-size: 14px;
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo span {
    color: var(--white);
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact svg {
    color: var(--primary);
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter-form input {
    background-color: #262626;
    border: 1px solid #333333;
    padding: 12px 15px;
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-body);
    outline: none;
}

.footer-newsletter-form button {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid #2B2B2B;
    padding-top: 30px;
    text-align: center;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 99;
    font-size: 30px;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20BA56;
    color: var(--white);
}

/* Product Detail Page */
.product-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-img-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    background-color: var(--primary-bg);
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumb-img {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background-color: var(--primary-bg);
}

.thumb-img.active {
    border-color: var(--primary);
}

.product-info-col {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 32px;
    font-weight: 800;
    margin: 10px 0 15px 0;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-stars {
    color: #FFB800;
    display: flex;
}

.review-count {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    background-color: var(--primary-light);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.current-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.compare-price {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.discount-badge {
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.promo-banner {
    background-color: #FFF3CD;
    color: #856404;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #FFEEBA;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-short-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 15px;
}

.qty-buy-box {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    height: 54px;
    overflow: hidden;
    background-color: var(--white);
}

.qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 45px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.qty-btn:hover {
    background-color: var(--primary-light);
}

.qty-input {
    width: 45px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    outline: none;
}

.action-btns {
    flex-grow: 1;
    display: flex;
    gap: 15px;
}

.action-btns .btn {
    flex-grow: 1;
    height: 54px;
}

.tabs-container {
    margin-top: 40px;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.tab-header {
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
}

.tab-header.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-contents {
    padding: 25px 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Sticky Mobile Add to Cart */
.sticky-mobile-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    padding: 12px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 98;
    border-top: 1px solid var(--border-color);
}

.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-product-info img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.sticky-product-details h4 {
    font-size: 13px;
    font-weight: 700;
}

.sticky-product-details p {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
}

.sticky-cart-btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* Cart Page */
.cart-table-container {
    margin-bottom: 40px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    background-color: var(--primary-bg);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.cart-item-name h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-item-remove {
    color: #D82020;
    font-size: 13px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
}

.cart-subtotal-box {
    background-color: var(--primary-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    max-width: 450px;
    margin-left: auto;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.cart-summary-line.total {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

/* Checkout Page */
.checkout-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.checkout-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.checkout-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

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

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(216, 75, 32, 0.1);
}

.payment-method-box {
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 8px;
    background-color: var(--primary-bg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-summary-card {
    background-color: var(--primary-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.summary-items-list {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.summary-item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

/* Thank you page */
.thankyou-card {
    max-width: 650px;
    margin: 50px auto;
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #D4EDDA;
    color: #28A745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px auto;
}

.thankyou-card h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.thankyou-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.order-info-summary {
    background-color: var(--primary-bg);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.order-info-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
}

.order-info-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Admin Styles */
.admin-login-container {
    max-width: 400px;
    margin: 100px auto;
}

.admin-dashboard-container {
    padding: 40px 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-card.stat-pending { border-top: 4px solid #FFC107; }
.stat-card.stat-confirmed { border-top: 4px solid #17A2B8; }
.stat-card.stat-processing { border-top: 4px solid #007BFF; }
.stat-card.stat-shipped { border-top: 4px solid #6C757D; }
.stat-card.stat-completed { border-top: 4px solid #28A745; }
.stat-card.stat-cancelled { border-top: 4px solid #DC3545; }

.stat-card h3 {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 10px;
}

.stat-card .stat-value {
    font-size: 26px;
    font-weight: 800;
}

.admin-grid-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
}

.admin-sidebar {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 20px 0;
    height: fit-content;
}

.admin-sidebar-menu {
    list-style: none;
}

.admin-sidebar-item a {
    display: block;
    padding: 12px 20px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 15px;
}

.admin-sidebar-item.active a, .admin-sidebar-item a:hover {
    color: var(--primary);
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary);
}

.admin-content-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 12px 15px;
    background-color: var(--primary-bg);
    border-bottom: 2px solid var(--border-color);
    font-size: 13px;
    font-weight: 700;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.status-pending { background-color: #FFEFC7; color: #B38600; }
.status-confirmed { background-color: #E2F3F5; color: #0E7490; }
.status-processing { background-color: #E0F2FE; color: #0369A1; }
.status-shipped { background-color: #F3F4F6; color: #374151; }
.status-completed { background-color: #DEF7EC; color: #03543F; }
.status-cancelled { background-color: #FDE8E8; color: #9B1C1C; }

/* Grid Responsive helper */
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Keyframe Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .hero-grid, .product-grid, .checkout-grid, .admin-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid, .steps-grid, .reviews-grid, .badges-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title {
        font-size: 32px;
    }
}

/* Mobile-only helper */
.mobile-only {
    display: none !important;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block !important;
    }
    
    /* Premium Slide-in Mobile Navigation Drawer */
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 24px 40px 24px;
        gap: 10px;
        border-right: 1px solid var(--border-color);
        box-shadow: var(--shadow-medium);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        list-style: none;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--primary-bg);
        width: 100%;
        color: var(--text-dark);
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .nav-actions {
        gap: 15px;
    }
    
    .nav-actions > .contact-btn {
        display: none !important; /* Hide desktop WhatsApp button on mobile header actions to save space */
    }

    .nav-menu .contact-btn {
        display: flex !important;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    /* Responsive Footer elements */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: left;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
    
    .benefits-grid, .steps-grid, .reviews-grid, .badges-grid, .ba-grid, .ingredients-grid, .ingredients-list {
        grid-template-columns: 1fr;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Product Page responsive adjustments */
    body {
        padding-bottom: 75px;
    }
    
    .thumb-grid {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 8px !important;
    }
    
    .rating-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .tab-headers {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        display: flex;
    }
    
    .tab-header {
        padding: 12px 18px !important;
        flex: 0 0 auto;
    }
    
    /* Newsletter Form vertical on mobile */
    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius-sm) !important;
        padding: 15px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        gap: 10px;
    }
    
    .newsletter-form input {
        width: 100% !important;
        border-radius: 8px !important;
        padding: 12px 15px !important;
        border: 1px solid var(--border-color) !important;
        background-color: var(--white) !important;
    }
    
    .newsletter-form button {
        width: 100% !important;
        border-radius: 8px !important;
        padding: 12px 15px !important;
    }
    
    .sticky-mobile-cart {
        display: flex;
    }
    
    /* Responsive Cart Table as Cards on Mobile */
    .cart-table thead {
        display: none;
    }
    
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
        display: block;
        width: 100%;
    }
    
    .cart-table tr {
        background-color: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: var(--shadow-soft);
    }
    
    .cart-table td {
        border-bottom: none;
        padding: 8px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .cart-table td:first-child {
        border-bottom: 1px solid var(--primary-bg);
        padding-bottom: 15px;
        margin-bottom: 10px;
        display: block;
    }
    
    .cart-table td:nth-child(2)::before {
        content: "Price: ";
        font-weight: 600;
        color: var(--text-muted);
    }
    .cart-table td:nth-child(3)::before {
        content: "Quantity: ";
        font-weight: 600;
        color: var(--text-muted);
    }
    .cart-table td:nth-child(4)::before {
        content: "Subtotal: ";
        font-weight: 600;
        color: var(--text-muted);
    }
    
    .cart-table td:nth-child(4) {
        font-weight: 700;
        color: var(--primary);
    }
    
    .section {
        padding: 50px 0;
    }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* Floating Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
    max-width: 340px;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-proof-popup.active {
    transform: translateY(0);
    opacity: 1;
}
.social-proof-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}
.social-proof-detail h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.social-proof-detail p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}
.social-proof-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #28A745;
    font-size: 11px;
    font-weight: 600;
    margin-top: 3px;
}

/* Reviews Marquee CSS */
.reviews-marquee-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    user-select: none;
    padding: 10px 0;
}

.reviews-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.marquee-left {
    animation: scroll-left 140s linear infinite;
}

.marquee-right {
    animation: scroll-right 140s linear infinite;
}

/* Pause scroll on hover for readability */
.reviews-marquee-container:hover .reviews-marquee-track {
    animation-play-state: paused;
}

.marquee-card {
    flex-shrink: 0;
    width: 320px;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.marquee-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.marquee-stars {
    color: #FFB800;
    font-size: 14px;
}

.marquee-date {
    font-size: 11px;
    color: var(--text-muted);
}

.marquee-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.marquee-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.marquee-user {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.marquee-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.marquee-user-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.marquee-user-info p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

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

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

/* Extra mobile/responsive and performance fixes added for Hostinger live build */
html { scroll-behavior: smooth; }
img { image-rendering: auto; }
.main-img-container img,
.product-gallery img,
.hero-media img,
.ba-img-container img,
.ingredients-grid img,
.shop-product-card img { width: 100%; height: auto; }

@media (max-width: 991px) {
    .container { width: 94%; padding: 0 10px; }
    .hero-grid, .product-grid, .checkout-grid, .ba-grid, .ingredients-grid,
    .admin-grid-layout, .grid[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    .shop-product-card,
    .grid[style*="border-radius: var(--radius-lg)"] {
        padding: 28px !important;
        gap: 28px !important;
    }
    .ba-content { padding-left: 0; }
    .cart-table-container, .admin-content-card { overflow-x: auto; }
}

@media (max-width: 767px) {
    body { font-size: 15px; padding-bottom: 82px; }
    .top-marquee-bar { font-size: 12px; padding: 8px 0; }
    .nav-container { height: 64px; }
    .site-header { top: 0; }
    .logo { font-size: 20px; white-space: nowrap; }
    .container { width: 100%; padding-left: 16px; padding-right: 16px; }
    .section { padding: 42px 0 !important; }
    .section-title { font-size: 28px; line-height: 1.2; }
    .section-subtitle { margin-bottom: 28px; font-size: 15px; }
    .hero-grid { gap: 28px; text-align: center; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 16px; margin-left: auto; margin-right: auto; }
    .hero-actions { gap: 12px; margin-bottom: 24px; }
    .hero-actions .btn, .btn-large { width: 100%; padding: 14px 18px; font-size: 15px; }
    .trust-bullets { flex-direction: column; gap: 10px; align-items: center; }
    .hero-media { max-width: 420px; margin: 0 auto; }
    .hero-offer-badge { width: 72px; height: 72px; font-size: 12px; top: 14px; right: 14px; }

    .benefit-card, .review-card, .step-card, .checkout-card, .checkout-summary-card,
    .cart-subtotal-box, .newsletter-card, .thankyou-card, .admin-content-card {
        padding: 22px !important;
        border-radius: 16px;
    }
    .badges-grid, .benefits-grid, .steps-grid, .reviews-grid, .footer-grid,
    .ingredients-list, .admin-stats-grid, .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
    }

    .product-grid { gap: 22px; }
    .product-title { font-size: 26px; }
    .price-box { flex-wrap: wrap; gap: 10px; padding: 12px 14px; }
    .current-price { font-size: 25px; }
    .promo-banner { align-items: flex-start; font-size: 13px; padding: 12px 14px; }
    .qty-buy-box, .action-btns { flex-direction: column; width: 100%; }
    .qty-selector { width: 100%; justify-content: space-between; }
    .qty-btn { width: 33%; }
    .qty-input { width: 34%; }
    .action-btns .btn { width: 100%; }
    .thumb-grid { display: flex !important; overflow-x: auto; gap: 10px !important; padding-bottom: 8px; scroll-snap-type: x mandatory; }
    .thumb-img { min-width: 72px; height: 72px; scroll-snap-align: start; }
    .thumb-img img { width: 100%; height: 100%; object-fit: cover; }
    .tab-headers { gap: 4px; }
    .tab-header { font-size: 14px; padding: 10px 14px !important; }
    .tab-content table, .tab-content tbody, .tab-content tr, .tab-content td { display: block; width: 100%; }
    .tab-content td { padding: 8px 0 !important; }

    .form-row { grid-template-columns: 1fr; gap: 0; }
    .checkout-grid { gap: 22px; }
    .summary-item { gap: 12px; align-items: flex-start; }
    .summary-item > div { min-width: 0; }

    .cart-item-flex { align-items: flex-start; }
    .cart-item-img { width: 64px; height: 64px; flex-shrink: 0; }
    .cart-subtotal-box { max-width: 100%; margin-left: 0; }

    .footer-newsletter-form .btn, .footer-newsletter-form input { width: 100%; }
    .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 92px; }
    .social-proof-popup { left: 12px; right: 12px; bottom: 92px; max-width: none; padding: 10px 12px; }
    .sticky-mobile-cart { padding: 10px 12px; gap: 10px; }
    .sticky-product-info { min-width: 0; }
    .sticky-product-details h4 { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 145px; }
    .sticky-cart-btn { padding: 10px 16px; white-space: nowrap; }

    .admin-header, .admin-content-card > div[style*="justify-content: space-between"],
    .admin-content-card form[style*="display: flex"] { flex-direction: column !important; align-items: stretch !important; gap: 12px !important; }
    .admin-table { min-width: 760px; }
}

@media (max-width: 420px) {
    .hero-title { font-size: 29px; }
    .section-title { font-size: 25px; }
    .product-title { font-size: 24px; }
    .nav-actions { gap: 8px; }
    .cart-icon-btn svg, .mobile-menu-toggle svg { width: 22px; height: 22px; }
    .sticky-product-info img { width: 40px; height: 40px; }
    .sticky-product-details h4 { max-width: 118px; }
    .sticky-cart-btn { padding: 10px 12px; font-size: 13px; }
}


/* Final all-pages mobile polish after recheck */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; }

@media (max-width: 767px) {
    .nav-menu { overflow-y: auto; max-height: 100vh; }
    .nav-menu .contact-btn { font-size: 14px; padding: 12px 14px; border-radius: 14px; }
    .grid { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    [style*="display: flex"] { max-width: 100%; }
    .shop-product-card, .product-grid, .checkout-grid, .hero-grid { width: 100%; }
    .product-info, .product-gallery, .checkout-card, .checkout-summary-card { min-width: 0; }
    .form-input, textarea, select { width: 100%; max-width: 100%; }
    table { width: 100%; }
    .btn { text-align: center; justify-content: center; }
    .admin-login-container { width: calc(100% - 28px); margin: 20px auto; }
    .price-box, .rating-summary, .live-activity-badge { width: 100%; }
    .footer-bottom, .footer-newsletter-form { flex-direction: column; gap: 12px; }
}

@media (max-width: 520px) {
    .reviews-marquee-track { animation-duration: 90s; }
    .marquee-card { width: 270px; padding: 16px; }
    .nav-menu { width: min(86vw, 320px); }
    .hero-title, h1 { word-break: normal; overflow-wrap: anywhere; }
}
