:root {
    --bg-color: #050505;
    --card-bg: #0f1012;
    --primary-color: #00f2ff;
    --primary-glow: rgba(0, 242, 255, 0.4);
    --secondary-color: #1a1b1e;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --gradient-text: linear-gradient(135deg, #fff 30%, #00f2ff 100%);
    --font-main: 'Outfit', sans-serif;
    --container-padding: 2rem;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
    border: none;
    font-size: 1.1rem;
    padding: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
    z-index: 1001;
    position: relative;
}

.nav-links {
    padding: 0px;
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    transform: rotate(-45deg);
    /* Handling 2 lines for generic hamburger, usually you need 3. 
       Adjusting for 2 lines: 
       If 2 lines, they can form X.
    */
}

/* Better 2-line X animation adjustments if needed, assuming generic 2 lines from original HTML.
   Original HTML has 2 spans. 
*/
.mobile-menu-btn span {
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #fff;
}

/* Hero Redesign - Centered */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 50% 30%, #1a2530 0%, #050505 60%);
    overflow: visible;
}

.hero-container-centered {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
}

.hero-text-center {
    max-width: 800px;
    margin-bottom: 4rem;
    z-index: 10;
}

.badge-pill {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.text-gradient-main {
    background: linear-gradient(180deg, #fff 20%, #00f2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Visual & Floating Cards */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
    z-index: 0;
}

.main-bottle {
    position: relative;
    z-index: 2;
    width: 450px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.float-card {
    position: absolute;
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    min-width: 180px;
}

.card-left {
    top: 15%;
    left: 10%;
}

.card-right {
    top: 25%;
    right: 10%;
}

.card-bottom {
    bottom: 20%;
    right: 25%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
    gap: 5px;
    min-width: auto;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.card-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.pill-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* Animations delays */
.floating-anim-delayed {
    animation: float 6s ease-in-out infinite 1s;
}

.floating-anim-delayed-2 {
    animation: float 6s ease-in-out infinite 2s;
}

.floating-anim-delayed-3 {
    animation: float 6s ease-in-out infinite 3s;
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section Redesign (Replaces Benefits) */
.features-section {
    padding: 8rem 0;
    background: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.feature-card {
    background: #0a0b0d;
    /* Slightly lighter than pure black */
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-visual {
    background: #111215;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle gradients for visuals */
.visual-vitality {
    background: radial-gradient(circle at center, #1a202c 0%, #111215 70%);
}

.visual-stamina {
    background: radial-gradient(circle at center, #2d1a1a 0%, #111215 70%);
}

.visual-strength {
    background: radial-gradient(circle at center, #1a2c28 0%, #111215 70%);
}

.visual-natural {
    background: radial-gradient(circle at center, #1a2530 0%, #111215 70%);
}

.card-content {
    padding: 2.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.card-content p {
    color: #888;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Widgets Styling */
.widget-box {
    background: rgba(255, 255, 255, 0.05);
    /* Glass dark */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    min-width: 180px;
    transition: transform 0.4s ease;
}

.feature-card:hover .widget-box {
    transform: translateY(-8px) scale(1.02);
}

/* Vitality Widget */
.widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #ccc;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.green {
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

.vitality-graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-bottom: 1rem;
}

.vitality-graph .bar {
    width: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: height 1s ease;
}

.vitality-graph .bar.active {
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

.widget-tag {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    display: inline-block;
    font-weight: 600;
}

/* Stamina Widget */
.widget-wide {
    min-width: 220px;
}

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

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 100, 50, 0.2);
    color: #ff6432;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.widget-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.widget-text span {
    font-size: 0.75rem;
    color: #888;
}

.widget-text strong {
    font-size: 1rem;
    color: #fff;
}

.battery-indicator {
    margin-left: auto;
    width: 30px;
    height: 14px;
    border: 2px solid #555;
    border-radius: 3px;
    padding: 2px;
    position: relative;
}

.battery-indicator::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 2px;
    width: 2px;
    height: 6px;
    background: #555;
    border-radius: 0 2px 2px 0;
}

.battery-level {
    width: 80%;
    height: 100%;
    background: #00ff88;
    border-radius: 1px;
}

/* Strength Widget (Chart) */
.stat-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke: var(--primary-color);
    animation: progress 1s ease-out forwards;
}

.stat-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.stat-text span {
    display: block;
    font-size: 0.6rem;
    color: #888;
    font-weight: normal;
    text-transform: uppercase;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0, 100;
    }

    100% {
        stroke-dasharray: 90, 100;
    }
}

/* Natural List Widget */
.widget-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 8px;
}

.check-icon {
    color: var(--primary-color);
    background: rgba(0, 242, 255, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.list-item span:last-child {
    font-size: 0.85rem;
    color: #ddd;
}


/* Ingredients Section */
.ingredients {
    padding: 6rem 0;
    overflow: hidden;
}

.ingredients-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ingredient-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-graphic {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
}

.circle-graphic::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: 2px solid var(--primary-color);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.product-small {
    width: 300px;
    position: relative;
    z-index: 2;
}

.dosage-table {
    margin-top: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.head {
    background: #151515;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.dosage-note {
    font-size: 0.8rem;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.6;
}

/* Details Strip */
.details-strip {
    background: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 2rem 0;
}

.details-strip .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.detail-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

/* Pre-order Section */
.preorder-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #111 0%, #000 70%);
}

.preorder-wrapper {
    display: flex;
    justify-content: center;
}

.preorder-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.price-box {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1rem;
}

.mrp {
    text-decoration: line-through;
    color: var(--text-muted);
}

.intro-offer {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.preorder-form input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1rem;
    outline: none;
    transition: all 0.3s;
}

.preorder-form input:focus {
    border-color: var(--primary-color);
    background: rgba(0, 242, 255, 0.02);
}

.small-disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: #555;
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: #020202;
    border-top: 1px solid #111;
}

.footer-content {
    display: flex;
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #444;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
    .ingredients-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .card-visual {
        height: 250px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .main-bottle {
        width: 280px;
        animation: none;
    }

    .hero-visual {
        height: auto;
        margin-top: 6rem;
        margin-bottom: 100px;
    }

    .float-card {
        padding: 0.8rem 1rem;
        min-width: auto;
    }

    /* Reposition slightly for mobile */
   .card-left {
    left: -13px;
    top: -79px;
    transform: none;
    animation: none;
}
.features-section{
    padding: 0px;
}
.footer-content{
    flex-direction: column;
}
    .card-right {
    right: -12px;
    top: -46%;
    animation: none;
    transform: none;
    flex-direction: column;
}

    .card-bottom {
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: -29%;
        width: max-content;
        transform: none;
        animation: none;
    }
.circle-graphic{
    border: none;
}
    .glow-backdrop {
        width: 100%;
        /* Prevent fixed 600px overflow */
        max-width: 350px;
        height: 350px;
        filter: blur(40px);
        /* Reduce blur spread */
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }

    .nav-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: #fff;
    }

    .nav-links a:hover {
        color: var(--primary-color);
    }

    .nav-btn {
        display: inline-block;
        font-size: 1.2rem;
        padding: 14px 32px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .ingredient-visual {
        margin-bottom: 2rem;
    }
}
aside#secondary {
    display: none;
}
/* ================================
   GLOBAL CART PAGE BASE
================================ */
body .wp-block-woocommerce-cart {
    font-family: var(--font-main);
    color: var(--text-main);
}

.wp-block-woocommerce-cart {
    max-width: var(--max-width);
    margin: auto;
    padding: var(--container-padding);
}

/* ================================
   MAIN CART LAYOUT
================================ */
.wc-block-cart {
    background: transparent;
    gap: 2rem;
}

/* ================================
   CART ITEMS CARD
================================ */
.wc-block-cart__main {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* Table header */
.wc-block-cart-items__header th {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #1f2024;
}

/* ================================
   CART ITEM ROW
================================ */
.wc-block-cart-items__row {
    border-bottom: 1px solid #1f2024;
}

.wc-block-cart-item__image img {
    border-radius: 12px;
    background: #000;
    padding: 10px;
}

/* Product name */
.wc-block-components-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
}

.wc-block-components-product-name:hover {
    color: var(--primary-color);
}

/* Price */
.wc-block-components-product-price__value {
    font-weight: 600;
    color: var(--primary-color);
}

/* ================================
   QUANTITY SELECTOR
================================ */
.wc-block-components-quantity-selector {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 6px;
}

.wc-block-components-quantity-selector__input {
    background: transparent;
    color: var(--text-main);
    border: none;
    font-weight: 600;
}

.wc-block-components-quantity-selector__button {
    background: #000;
    color: var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wc-block-components-quantity-selector__button:hover {
    box-shadow: 0 0 12px var(--primary-glow);
}

/* Remove item */
.wc-block-cart-item__remove-link {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ================================
   CART TOTAL SIDEBAR
================================ */
.wc-block-cart__sidebar {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* Cart totals title */
.wc-block-cart__totals-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Totals row */
.wc-block-components-totals-item__label {
    color: var(--text-muted);
}

.wc-block-components-totals-item__value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ================================
   COUPON PANEL
================================ */
.wc-block-components-panel__button {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 12px;
    color: var(--text-main);
}

/* ================================
   CHECKOUT BUTTON
================================ */
.wc-block-cart__submit-button {
    background: linear-gradient(135deg, #00f2ff, #00c2cc);
    color: #000;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 14px;
    padding: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--primary-glow);
}

.wc-block-cart__submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px var(--primary-glow);
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .btn{
    padding: 12px 12px;
    }
    .header-btn{
        width: 50%;
        text-align: center;
    }
    .table-row span {
    text-align: left;
}
    .wc-block-cart {
        flex-direction: column;
    }

    .wc-block-cart__main,
    .wc-block-cart__sidebar {
        padding: 1.5rem;
    }
    .circle-graphic::after {
    left: 30px !important;
    width: 84%;
    top: 33px;
    height: 84%;
}
}
img.custom-logo {
    width: 75px;
    height: 75px;
    max-width: fit-content;
}
a {
    text-decoration: none;
}
p.first-column-footer{
    padding-top:20px;
}
/* Hide dots on desktop */
.mobile-info-toggle {
    display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

    /* Show dots */
    .mobile-info-toggle {
    display: flex;
    flex-direction: column;
    gap: 33px;
    position: absolute;
    bottom: 100px;
    right: 160px;
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 50%;
    border: none;
    z-index: 10;
    cursor: pointer;
}

    .mobile-info-toggle span {
    width: 10px;
    height: 10px;
    background: #00f2ff;
    border-radius: 50%;
    display: block;
}

    /* Hide all floating cards initially */
    /* .hero-visual .float-card {
        opacity: 0;
        transform: scale(0.9);
        pointer-events: none;
        transition: all 0.3s ease;
    } */

    /* Active card */
    /* .hero-visual .float-card.active {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
        animation: none;
    } */
    .float-card.card-right.floating-anim-delayed-2.active {
    top: -78px;
}
.float-card.card-bottom.floating-anim-delayed-3.active {
    bottom: -54px;
    padding: 0px;
}
}

/* ===============================
   POLICY PAGE BASE
================================ */
.policy-section {
    background: #050505;
    padding: 4rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

.policy-container {
    margin-top:100px !important;
    max-width: 900px;
    margin: 0 auto;
}

/* ===============================
   TITLE & INTRO
================================ */
.policy-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 30%, #00f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-intro {
    text-align: center;
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* ===============================
   POLICY BLOCKS
================================ */
.policy-block {
    background: #0f1012;
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(0, 242, 255, 0.12);
}

/* ===============================
   HEADINGS
================================ */
.policy-block h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #00f2ff;
    font-weight: 600;
}

/* ===============================
   TEXT
================================ */
.policy-block p {
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-block strong {
    color: #ffffff;
}

/* ===============================
   LISTS
================================ */
.policy-block ul,
.policy-block ol {
    padding-left: 1.3rem;
    margin-bottom: 1rem;
}

.policy-block ul li,
.policy-block ol li {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.policy-block ul li::marker {
    color: #00f2ff;
}

.policy-block ol li::marker {
    color: #00f2ff;
    font-weight: 600;
}

/* ===============================
   WARNING / NOTE
================================ */
.policy-warning {
    background: #1a1b1e;
    border-left: 4px solid #00f2ff;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #ffffff;
}

/* ===============================
   CONTACT BLOCK
================================ */
.policy-contact {
    background: linear-gradient(
        145deg,
        #0f1012,
        #14161a
    );
}

.policy-contact p {
    font-size: 0.95rem;
}

/* ===============================
   LINKS
================================ */
.policy-section a {
    color: #00f2ff;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }

    .policy-block {
        padding: 1.5rem;
    }

    .policy-intro {
        font-size: 0.95rem;
    }
}
.testimonial-section {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.testimonial-heading {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  min-height: 160px;
}

.testimonial-card.active {
  display: block;
}
.testimonial-card h4{
    color:black;
}
.testimonial-card span{
    color:black;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  color: #000;
}

.testimonial-role {
  font-size: 13px;
  opacity: .7;
  color: #000;
}
.testimonial-img {
    display: inline;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.testimonial-controls {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-controls button {
  border: none;
  background: #111;
  color: #fff;
  font-size: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-controls button:hover {
  opacity: .8;
}
