/* 
 * The Pulse Nutrition - Sleek Dark/Gold CSS Theme
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-darker: #ffffff;
    --bg-dark: #f8f9fa;
    --bg-card: #ffffff;
    --bg-input: #f3f4f6;
    --gold: #ff2d37; /* redirect gold variables to pulse-red to preserve class naming */
    --gold-light: #ffebee;
    --gold-gradient: linear-gradient(135deg, #ff2d37 0%, #c51f26 100%);
    --gold-glow: 0 4px 20px rgba(255, 45, 55, 0.08);
    --gold-glow-strong: 0 8px 30px rgba(255, 45, 55, 0.2);
    --pulse-red: #ff2d37;
    --whatsapp-green: #25d366;
    --text-white: #111827;
    --text-light: #374151;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --border-glow: #ffccd0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-darker);
}

*::-webkit-scrollbar {
    width: 6px;
}
*::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
*::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

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

/* Button & UI elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, border-bottom 0.1s ease;
    gap: 8px;
    position: relative;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #fff !important;
    border-bottom: 4px solid #b31d23;
    box-shadow: 0 4px 10px rgba(255, 45, 55, 0.2);
}
.btn-gold:hover {
    transform: translateY(-2px);
    border-bottom-width: 6px;
    box-shadow: 0 6px 15px rgba(255, 45, 55, 0.35);
}
.btn-gold:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
    box-shadow: 0 2px 4px rgba(255, 45, 55, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--gold);
    border-bottom: 4px solid var(--gold);
}
.btn-outline:hover {
    transform: translateY(-2px);
    border-bottom-width: 6px;
    box-shadow: 0 6px 12px rgba(255, 45, 55, 0.1);
}
.btn-outline:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #fff;
    border-bottom: 4px solid #1aa34e;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    border-bottom-width: 6px;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.btn-red {
    background-color: var(--pulse-red);
    color: #fff;
    border-bottom: 4px solid #b31d23;
}
.btn-red:hover {
    transform: translateY(-2px);
    border-bottom-width: 6px;
}
.btn-red:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
}

/* Badge styling */
.badge-gold {
    background: rgba(255, 45, 55, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    display: inline-block;
}

/* Navigation Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0.75rem;
    color: var(--text-white);
    transition: var(--transition);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(255, 45, 55, 0.03) 0%, rgba(255, 255, 255, 0) 60%), 
                radial-gradient(circle at 10% 80%, rgba(255, 45, 55, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-subtitle {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-title span {
    background: linear-gradient(90deg, var(--text-white) 30%, var(--gold) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 45, 55, 0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-product-img {
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transform: rotate(-5deg);
    animation: float3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes float3D {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(-5deg) rotateZ(-3deg); }
    50% { transform: translateY(-15px) rotateX(6deg) rotateY(6deg) rotateZ(2deg); }
}

/* Trust Badges */
.trust-badges-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
}

.trust-badges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1.8rem;
    color: var(--gold);
}

.badge-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
}

.badge-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Shop by Goal & Categories */
.section-wrapper {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    text-transform: uppercase;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.2rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.category-card:hover, .category-card.active {
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
    transform: translateY(-4px);
}

.category-icon-img {
    width: 55px;
    height: 55px;
    margin-bottom: 0.25rem;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.category-card:hover .category-icon-img, .category-card.active .category-icon-img {
    transform: scale(1.15) rotate(4deg);
    filter: drop-shadow(0 4px 10px rgba(255, 45, 55, 0.15));
}

.category-name {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.goal-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 160px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%), var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.goal-card:hover {
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
    transform: scale(1.02);
}

.goal-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: var(--transition);
    z-index: 1;
}

.goal-card:hover .goal-card-bg {
    opacity: 0.55;
    transform: scale(1.1);
}

.goal-info {
    position: relative;
    z-index: 2;
}

.goal-name {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
}

.goal-tagline {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
}

/* Products Catalog Section */
.catalog-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.filters-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.select-filter {
    background: var(--bg-input);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.select-filter:focus {
    border-color: var(--gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-2deg) translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(255, 45, 55, 0.1), 0 25px 50px rgba(0, 0, 0, 0.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    z-index: 5;
}

.product-card-img-wrap {
    position: relative;
    padding: 2rem 1.5rem 1rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%);
    cursor: pointer;
}

.product-card-img {
    height: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-card-img {
    transform: scale(1.08) rotate(3deg);
}

.product-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.product-title:hover {
    color: var(--gold);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.product-rating-count {
    color: var(--text-muted);
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-price-wrap {
    display: flex;
    flex-direction: column;
}

.price-regular {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
}

.price-old {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.card-add-btn {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    border-bottom: 3px solid #b31d23;
    transition: transform 0.1s ease, box-shadow 0.1s ease, border-bottom 0.1s ease;
}

.card-add-btn:hover {
    transform: translateY(-2px);
    border-bottom-width: 5px;
    box-shadow: 0 4px 8px rgba(255, 45, 55, 0.2);
}

.card-add-btn:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
}

/* Detail Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), var(--gold-glow);
    animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 3rem;
}

.detail-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.main-detail-img-wrap {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 80%);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.main-detail-img {
    max-height: 280px;
    object-fit: contain;
}

.authenticity-verifier-widget {
    background: var(--bg-darker);
    border: 1px dashed var(--gold);
    border-radius: 6px;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.authenticity-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
}

.authenticity-input-row {
    display: flex;
    gap: 0.5rem;
}

.authenticity-input {
    flex-grow: 1;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem;
    color: var(--text-white);
    font-size: 0.8rem;
    outline: none;
}

.authenticity-input:focus {
    border-color: var(--gold);
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-title {
    font-size: 1.8rem;
    line-height: 1.2;
}

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

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

.detail-price-old {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.detail-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-top: 1rem;
}

.tab-nav-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.75rem 1.2rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

.tab-nav-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-content-panel {
    display: none;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.purchase-mode-selection {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
    background: var(--bg-darker);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.purchase-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.purchase-option:hover {
    background: rgba(255,255,255,0.02);
}

.purchase-option.active {
    border-color: var(--border-glow);
    background: rgba(212,175,55,0.05);
}

.purchase-option input {
    accent-color: var(--gold);
}

.option-details {
    display: flex;
    flex-direction: column;
}

.option-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.option-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.option-price {
    margin-left: auto;
    font-weight: 800;
    color: var(--gold);
}

.detail-actions-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-input);
}

.qty-btn {
    background: linear-gradient(180deg, #f9fafb 0%, #e5e7eb 100%);
    border: 1px solid #d1d5db;
    border-bottom: 3px solid #9ca3af;
    color: #111827;
    width: 38px;
    height: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease, border-bottom 0.1s ease, background 0.15s ease;
    font-weight: bold;
}

.qty-btn:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    color: var(--gold);
}

.qty-btn:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
}

.qty-input {
    width: 45px;
    border: none;
    background: transparent;
    color: var(--text-white);
    text-align: center;
    font-weight: 700;
    outline: none;
}

.detail-add-btn {
    flex-grow: 1;
}

/* Cart & Checkout Panel */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-glow);
    z-index: 1100;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    color: var(--gold);
}

.cart-items-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cart-empty-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.cart-item-meta {
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.cart-item-qty-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-qty-btn {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.75rem;
}

.cart-item-qty {
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
}

.cart-item-remove:hover {
    color: var(--pulse-red);
}

.free-shipping-meter {
    background: var(--bg-darker);
    border-radius: 4px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.meter-desc {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.meter-bar-outer {
    background: #222;
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.meter-bar-inner {
    background: var(--gold-gradient);
    height: 100%;
    width: 0%;
    transition: width 0.4s ease;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

/* One Page Checkout View inside Cart Drawer */
.checkout-view {
    display: none;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    overflow-y: auto;
    gap: 1.5rem;
}

.checkout-view.active {
    display: flex;
}

.checkout-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.checkout-form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.checkout-input {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.7rem;
    color: var(--text-white);
    outline: none;
    font-family: var(--font-body);
}

.checkout-input:focus {
    border-color: var(--gold);
}

.order-review-box {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
}

/* WhatsApp Floating & Assistant */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    pointer-events: none;
}

.whatsapp-trigger-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    pointer-events: auto;
    border-bottom: 4px solid #1aa34e;
}

.whatsapp-trigger-btn:hover {
    transform: scale(1.05) rotate(10deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-trigger-btn:active {
    transform: scale(0.95);
    border-bottom-width: 1px;
}

.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--pulse-red);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-chat-box {
    width: 350px;
    height: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--gold-glow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-chat-box.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(135deg, #0e1e13 0%, #173820 100%);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #1c4527;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 1.1rem;
}

.chat-title-wrap {
    display: flex;
    flex-direction: column;
}

.chat-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

.chat-status {
    font-size: 0.75rem;
    color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--whatsapp-green);
    border-radius: 50%;
}

.chat-close-btn {
    margin-left: auto;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    flex-grow: 1;
    background: #080808;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-msg {
    max-width: 80%;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.chat-msg.bot {
    background: var(--bg-card);
    color: var(--text-light);
    align-self: flex-start;
    border-top-left-radius: 0;
    border: 1px solid var(--border-color);
}

.chat-msg.user {
    background: #12331d;
    color: var(--text-white);
    align-self: flex-end;
    border-top-right-radius: 0;
}

.chat-msg-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-align: right;
}

.chat-options-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.chat-opt-btn {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
    color: var(--text-white);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-align: left;
    cursor: pointer;
    transition: transform 0.1s ease, border-bottom 0.1s ease, border-color 0.1s ease;
}

.chat-opt-btn:hover {
    border-color: var(--gold);
    border-bottom-color: #b31d23;
}

.chat-opt-btn:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
}

.chat-footer-input-row {
    padding: 0.75rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex-grow: 1;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    color: var(--text-white);
    font-size: 0.85rem;
    outline: none;
}

.chat-send-btn {
    background: var(--whatsapp-green);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-bottom: 3px solid #1aa34e;
    transition: transform 0.1s ease, border-bottom 0.1s ease, background-color 0.15s ease;
}

.chat-send-btn:hover {
    background: #20c25a;
}

.chat-send-btn:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
}

/* SEO Landing Pages Showcase Area */
.seo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.seo-tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
}

.seo-tab-btn:hover, .seo-tab-btn.active {
    color: #000;
    background: var(--gold);
    border-color: var(--gold);
}

.seo-content-display {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
}

.seo-meta-preview {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.meta-field {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.meta-field:last-child {
    margin-bottom: 0;
}

.meta-label {
    font-weight: 700;
    color: var(--gold);
    min-width: 120px;
}

.meta-value {
    color: var(--text-light);
}

.seo-landing-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schema-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

/* Consultation Plans */
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.consult-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.consult-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--gold-glow);
}

.consult-card.popular {
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
}

.consult-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.consult-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin: 1rem 0;
}

.consult-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.consult-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.consult-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
}

/* Gym Partner & Franchise Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lead-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--gold);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Transformations */
.transform-container {
    max-width: 700px;
    margin: 0 auto;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.img-before {
    z-index: 1;
}

.img-after {
    z-index: 2;
    width: 50%;
    border-right: 3px solid var(--gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    z-index: 10;
    transform: translate(-50%, calc(225px - 20px));
    box-shadow: 0 0 15px rgba(0,0,0,0.5), var(--gold-glow-strong);
    color: #000;
    font-weight: 900;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0,0,0,0.7);
    color: var(--text-white);
    padding: 0.35rem 0.8rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
}

.label-before {
    right: 20px;
}

.label-after {
    left: 20px;
}

/* Transformation Navigation Controls */
.transform-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.transform-nav-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.transform-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.transform-info-block {
    text-align: center;
}

.transform-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.transform-goal {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Schema / Code Debug Viewer (Modal inside page for proof of schema setup) */
.schema-preview-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 10px 35px rgba(0,0,0,0.8);
}

.code-block {
    background: #050505;
    border: 1px solid #1a1a1a;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.8rem;
    color: #a9ffb4;
    white-space: pre-wrap;
    margin-top: 1rem;
}

/* Notification Popups */
.notification-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--bg-card);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
}

.notification-toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.toast-msg-wrap {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-weight: 700;
    font-size: 0.85rem;
}

.toast-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer styling */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 5rem 2rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-col-title {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    width: fit-content;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-icon {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted) !important;
    transition: var(--transition);
}

.social-icon-link.instagram:hover {
    color: #fff !important;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(214, 36, 159, 0.3);
    transform: translateY(-3px);
}

.social-icon-link.youtube:hover {
    color: #fff !important;
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35);
    transform: translateY(-3px);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-content {
        align-items: center;
    }
    .hero-desc {
        max-width: 100%;
    }
    .hero-ctas {
        justify-content: center;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .header-container {
        padding: 1rem;
    }
    .logo svg {
        width: 140px;
        height: auto;
    }
    .nav-menu {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .category-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0.5rem 0.25rem 1rem 0.25rem;
        gap: 0.8rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .category-grid::-webkit-scrollbar {
        display: none;
    }
    .category-card {
        flex: 0 0 110px;
        scroll-snap-align: start;
        padding: 1rem 0.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .checkout-form-group .form-group-row {
        grid-template-columns: 1fr;
    }
}
