/* Reset and Base Styles */
:root {
    /* Light Mode Variables */
    --bg-main: #fcfbf8;
    --bg-secondary: #f4efeb;
    --bg-card: #ffffff;
    --text-primary: #2a221c;
    --text-secondary: #5e5248;
    --accent: #c49a45;
    --accent-hover: #a88339;
    --border-color: #e6dfd6;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(196, 154, 69, 0.15);
    --header-bg: rgba(252, 251, 248, 0.9);
}

body.dark-mode {
    /* Dark Mode Variables */
    --bg-main: #131110;
    --bg-secondary: #1a1715;
    --bg-card: #1f1b19;
    --text-primary: #fcfbf8;
    --text-secondary: #a39c96;
    --accent: #dcb363;
    --accent-hover: #efc470;
    --border-color: #332d29;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(220, 179, 99, 0.1);
    --header-bg: rgba(19, 17, 16, 0.9);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Baloo 2', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography Enhancements */
.highlight {
    color: var(--accent);
    font-style: italic;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after,
.section-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--accent);
}

.section-header h2::before {
    left: -60px;
}

.section-header h2::after {
    right: -60px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.split-header h2::after,
.split-header h2::before {
    display: none;
}

.split-header p {
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Baloo 2', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
}

.dark-mode .btn-primary {
    color: #111;
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

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

/* Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s, border-color 0.3s;
}

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

.logo {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    font-weight: 700;
}

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

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-secondary);
}

.theme-toggle:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 2000;
    padding: 80px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--shadow-glow) 0%, transparent 70%);
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.stats-row {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

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

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-text strong span.counter {
    font-size: inherit;
    color: inherit;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
    opacity: 0.15;
    z-index: 0;
    border-radius: 50%;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    border: 1px solid var(--border-color);
    width: 250px;
}

.hero-badge em {
    font-family: 'Baloo 2', sans-serif;
    color: var(--accent);
    font-size: 1rem;
    display: block;
}

.hero-badge strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
    font-family: 'Baloo 2', sans-serif;
}

.hero-badge ul {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-badge ul li {
    margin-bottom: 5px;
}

/* Floating Sidebar */
.floating-sidebar {
    position: fixed;
    z-index: 1000;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--bg-card);
    padding: 15px 10px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--accent);
    color: #fff;
}

.dark-mode .social-icon:hover {
    color: #111;
}

/* As Seen On */
.as-seen-on {
    padding: 40px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.seen-on-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.seen-label {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.logos {
    display: flex;
    gap: 40px;
    align-items: center;
}

.logos strong {
    font-size: 1.5rem;
    color: var(--text-primary);
    opacity: 0.8;
}

.logos .serif {
    font-family: 'Baloo 2', sans-serif;
}

/* Programs Section */
.programs-section {
    padding: 100px 0;
}

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

.program-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    transition: background-color 0.3s;
}

.program-card:hover .card-icon {
    background-color: var(--accent);
    color: #fff;
}

.dark-mode .program-card:hover .card-icon {
    color: #111;
}

.program-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.program-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.explore-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.explore-link:hover {
    gap: 12px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stars {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.quote {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

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

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

.author h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
}

.dot.active {
    background-color: var(--accent);
}

/* Workshops Section */
.workshops-section {
    padding: 100px 0;
}

.view-all {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.workshop-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.date-badge {
    background-color: var(--accent);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.dark-mode .date-badge {
    color: #111;
}

.date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-badge .month {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.workshop-info {
    padding: 20px;
}

.workshop-info h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    height: 45px;
}

.workshop-info ul {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.workshop-info ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.workshop-info ul li i {
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-secondary);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-text p {
    color: var(--text-secondary);
    margin: 0;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    background-color: var(--bg-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.social-links a:hover {
    background-color: var(--accent);
    color: #fff;
}

.dark-mode .social-links a:hover {
    color: #111;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* Chat Widget (Deprecated) */
.chat-widget {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.chat-widget:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-row {
        justify-content: center;
    }

    .hero-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

    .floating-sidebar {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .seen-on-track {
        flex-direction: column;
        gap: 20px;
    }

    .logos {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Animations & Scroll Reveal */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Micro-animations for Interactive Elements */
.program-card,
.testimonial-card,
.workshop-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

/* E-commerce Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.country-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.tab-btn.active {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(196, 154, 69, 0.4);
}

.dark-mode .tab-btn.active {
    color: #111;
    box-shadow: 0 4px 15px rgba(220, 179, 99, 0.3);
}

.tab-content {
    display: none;
    animation: fadeInTab 0.5s ease-in-out;
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.product-img-wrapper {
    position: relative;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dark-mode .product-badge {
    color: #111;
}

.product-badge.premium {
    background-color: #2a221c;
    color: #c49a45;
    border: 1px solid #c49a45;
}

.dark-mode .product-badge.premium {
    background-color: #fcfbf8;
    color: #dcb363;
    border: 1px solid #dcb363;
}

.product-badge.eco {
    background-color: #4CAF50;
    color: white;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: 'Baloo 2', sans-serif;
    line-height: 1.3;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    font-family: 'Baloo 2', sans-serif;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Header Cart Styling */
.cart-wrapper {
    position: relative;
    display: inline-block;
}

.cart-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    position: relative;
}

.cart-toggle:hover {
    color: var(--accent);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--header-bg);
}

.dark-mode .cart-badge {
    color: #111;
}

.cart-dropdown {
    position: absolute;
    top: 150%;
    right: -60px;
    width: 320px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.cart-wrapper:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown.force-hide {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    pointer-events: none !important;
}

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

.cart-dropdown-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Baloo 2', sans-serif;
}

.item-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
    padding: 2px 8px;
    border-radius: 12px;
}

.cart-items {
    max-height: 250px;
    overflow-y: auto;
    padding: 15px 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.cart-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h5 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.cart-item-price {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #e74c3c;
}

.cart-dropdown-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cart-total strong {
    color: var(--text-primary);
}

/* Text Rotator */
.text-rotator {
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.text-rotator.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.text-rotator.fade-in-prep {
    transition: none;
    /* Disable transition instantly to reset position */
    opacity: 0;
    transform: translateY(20px);
}

/* Program Page Tabs */
.program-tabs-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .program-tabs-container {
        flex-direction: column;
    }
}

.program-tab-list {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 100px;
}

.program-tab {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: left;
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.program-tab:hover {
    background: var(--bg-card);
    transform: translateX(5px);
    border-color: var(--accent);
}

.program-tab.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.program-tab.active::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.program-tab-content-wrapper {
    flex: 2.5;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    min-height: 500px;
}

.program-tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

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

.program-tab-content h2 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.program-tab-content h3 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.program-tab-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.delta-layers h4 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 25px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delta-layers h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Store Page Styles */
.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .store-grid {
        grid-template-columns: 1fr;
    }
}

.product-rating {
    color: #f5b041;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

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

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-price-old {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    background: var(--bg-secondary);
    overflow: hidden;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
    width: max-content;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Baloo 2', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.badge-new {
    background-color: #e74c3c !important;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0 !important;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
}

/* Workshop Hub Cards */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.workshop-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.workshop-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-md);
}

.workshop-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--accent);
}

.workshop-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.workshop-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.workshop-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.workshop-btn {
    align-self: flex-start;
    padding: 12px 25px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 30px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.workshop-card:hover .workshop-btn {
    background: var(--accent);
    color: white;
}

/* Satvic Style Horizontal Cards */
.satvic-card-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.satvic-card {
    display: flex;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.satvic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.satvic-card-img-wrapper {
    position: relative;
    width: 35%;
    min-width: 300px;
    flex-shrink: 0;
}

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

.satvic-starts-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    font-family: 'Baloo 2', sans-serif;
}

.satvic-starts-badge span {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.satvic-starts-badge small {
    color: var(--text-secondary);
    font-weight: 400;
}

.satvic-card-content {
    padding: 20px 25px;
    /* Reduced from 30px */
    width: 65%;
    display: flex;
    flex-direction: column;
}

.satvic-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    /* Reduced from 10px */
}

.satvic-card-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.5rem;
    /* Slightly smaller */
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.satvic-recommend-badge {
    background: #fff0eb;
    color: #c85a41;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.satvic-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    /* Reduced from 15px */
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.satvic-stars {
    color: #f5b041;
    font-size: 0.85rem;
}

.satvic-reviews a {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 500;
}

.satvic-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    /* Reduced from 25px */
    line-height: 1.5;
    /* Optional: Limit to 2 lines to save height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.satvic-info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    /* Reduced from 25px */
}

.satvic-info-pill {
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.satvic-card-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.satvic-btn {
    background: var(--accent);
    /* Changed to theme accent color */
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, opacity 0.3s;
}

.satvic-btn:hover {
    background: var(--accent);
    opacity: 0.9;
    color: white;
}

.satvic-joined-text {
    color: #c85a41;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .satvic-card {
        flex-direction: column;
    }

    .satvic-card-img-wrapper {
        width: 100%;
        height: 250px;
    }

    .satvic-card-content {
        width: 100%;
        padding: 20px;
    }

    .satvic-card-header {
        flex-direction: column;
        gap: 10px;
    }

    .satvic-info-row {
        flex-wrap: wrap;
    }

    .satvic-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}



/* Product Details Page */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}
.main-image-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.thumbnail-list img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.thumbnail-list img.active,
.thumbnail-list img:hover {
    border-color: var(--accent);
}
.product-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .product-details-grid {
        grid-template-columns: 1fr;
    }
}
/* User & Country Selection */
.header-user-country {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-icon {
    color: var(--text-primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-icon:hover {
    color: var(--accent);
}
.country-wrapper {
    position: relative;
    display: inline-block;
}
.country-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s;
}
.country-toggle:hover {
    background: var(--bg-secondary);
}
.country-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
}
.country-wrapper:hover .country-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Baloo 2', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.country-option:hover, .country-option.active {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

/* Product Details Tabs */
.product-tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.product-tab-content.active {
    display: block;
}
.user-icon, .country-toggle, .cart-toggle, .theme-toggle {
    background-color: var(--bg-secondary);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.user-icon:hover, .country-toggle:hover, .cart-toggle:hover, .theme-toggle:hover {
    background-color: var(--border-color);
}

/* Modern Workshop Layout */
.workshop-hero-modern {
    background-color: var(--bg-secondary);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}
.workshop-hero-modern::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}
.workshop-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.workshop-duration {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}
.workshop-title-modern {
    font-size: 3.5rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
}
.workshop-subtitle-modern {
    font-size: 2.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 20px;
}
.workshop-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}
.btn-register-modern {
    background-color: var(--accent);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}
.btn-register-modern:hover {
    background-color: var(--accent-hover);
}
.avatar-group-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.avatar-group {
    display: flex;
}
.avatar-group img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
    margin-left: -10px;
    object-fit: cover;
}
.avatar-group img:first-child {
    margin-left: 0;
}
.avatar-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.workshop-hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.workshop-hero-image-wrapper img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
    backdrop-filter: blur(5px);
    opacity: 0.85;
}
.play-btn-overlay i {
    color: white;
    font-size: 24px;
    margin-left: 5px;
}
.play-btn-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* Info Cards */
.info-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}
.info-card-modern {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    flex: 1;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.info-card-modern i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}
.info-card-modern h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}
.info-card-modern p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}
.info-card-modern .price-strike {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Countdown Section */
.countdown-section {
    padding: 80px 0 40px;
}
.countdown-header {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
}
.countdown-block-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    
}
.countdown-banner {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    box-shadow: var(--shadow-sm);
}
.countdown-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    min-width: 90px;
    box-shadow: var(--shadow-sm);
}
.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Baloo 2', sans-serif;
}
.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: lowercase;
}

/* Sticky Register Card */
.sticky-register-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}
.sticky-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 5px;
}
.sticky-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.sticky-details {
    margin-bottom: 25px;
}
.sticky-details-item {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    align-items: flex-start;
}
.sticky-details-item i {
    color: var(--accent);
    margin-top: 3px;
    width: 15px;
}

@media (max-width: 992px) {
    .workshop-hero-grid {
        grid-template-columns: 1fr;
    }
    .info-cards-container {
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .info-card-modern {
        min-width: calc(33.333% - 20px);
    }
    .countdown-block-wrapper {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .info-card-modern {
        min-width: calc(50% - 20px);
    }
    .countdown-banner {
        flex-wrap: wrap;
        gap: 15px;
    }
    .countdown-item {
        min-width: calc(50% - 15px);
    }
}

/* Workshop Registration Form */
.workshop-registration-section {
    padding: 60px 0 100px;
}
.registration-form-container {
    background-color: var(--bg-secondary);
    border-radius: 24px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.registration-form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
}
.reg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}
.reg-input-group {
    display: flex;
    flex-direction: column;
}
.reg-input {
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    padding: 15px 25px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Baloo 2', sans-serif;
    transition: border-color 0.3s;
    outline: none;
}
.reg-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}
.reg-input:focus {
    border-color: var(--accent);
}
.reg-phone-group {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.reg-phone-group:focus-within {
    border-color: var(--accent);
}
.reg-country-code {
    background: transparent;
    color: var(--text-primary);
    padding: 15px 20px;
    border-right: 2px solid var(--border-color);
    font-weight: 600;
    font-family: 'Baloo 2', sans-serif;
    display: flex;
    align-items: center;
}
.reg-phone-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Baloo 2', sans-serif;
    outline: none;
}
.reg-phone-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}
.reg-total-display {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Baloo 2', sans-serif;
    padding-left: 10px;
}
.reg-submit-btn {
    background-color: var(--bg-card);
    color: var(--accent);
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Baloo 2', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}
.reg-submit-btn:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.reg-submit-btn i {
    margin-left: 10px;
}
.reg-footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Baloo 2', sans-serif;
}

@media (max-width: 768px) {
    .reg-form-grid {
        grid-template-columns: 1fr;
    }
    .registration-form-container {
        padding: 30px 20px;
    }
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.85em;
    margin-left: 8px;
    opacity: 0.7;
    font-weight: 400;
}

/* ==========================================================================
   Blog Pages Styles
   ========================================================================== */

/* Blog Hero Section */
.blog-hero {
    background-color: var(--bg-secondary);
    padding: 100px 0 60px;
    text-align: center;
}
.blog-hero h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}
.blog-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog List Section */
.blog-list-section {
    padding: 80px 0;
}
.blog-list-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Horizontal Blog Card (as per screenshot) */
.blog-list-card {
    display: flex;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.blog-list-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-list-card-img {
    flex: 0 0 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0; /* fallback */
}

.blog-list-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-list-card-content h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
}
.blog-list-card-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.blog-list-card-content h2 a:hover {
    color: var(--accent);
}

.blog-author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
}
.blog-author-meta img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.blog-author-meta i {
    margin-right: 5px;
    color: var(--text-secondary);
}

.blog-list-card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more-link {
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    align-self: flex-start;
}
.read-more-link:hover {
    color: var(--accent);
}

/* Blog Details View */
.blog-details-section {
    padding: 120px 0 100px;
}
.blog-details-container {
    max-width: 800px;
    margin: 0 auto;
}
.blog-details-header {
    margin-bottom: 40px;
    text-align: center;
}
.blog-details-header h1 {
    font-size: 3rem;
    color: var(--text-primary);
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}
.blog-details-header .blog-author-meta {
    justify-content: center;
    margin-bottom: 0;
}
.blog-details-featured-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}
.blog-details-content {
    color: var(--text-primary);
    font-size: 1.15rem;
    line-height: 1.8;
}
.blog-details-content p {
    margin-bottom: 25px;
}
.blog-details-content h2, .blog-details-content h3 {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    margin: 40px 0 20px;
}
.blog-details-content h2 {
    font-size: 2.2rem;
}
.blog-details-content h3 {
    font-size: 1.8rem;
}
.blog-details-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 30px;
    background-color: var(--bg-secondary);
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    border-radius: 0 10px 10px 0;
}
.blog-details-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-list-card {
        flex-direction: column;
    }
    .blog-list-card-img {
        flex: auto;
        width: 100%;
        min-height: 250px;
    }
    .blog-list-card-content {
        padding: 30px 20px;
    }
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    .blog-details-header h1 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   User Profile Dashboard Styles
   ========================================================================== */
.profile-section {
    padding: 80px 0 100px;
    background-color: var(--bg-primary);
}

.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.profile-sidebar {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.profile-user-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.profile-user-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent);
}
.profile-user-info h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
}
.profile-user-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-nav-btn {
    background: transparent;
    border: none;
    text-align: left;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}
.profile-nav-btn i {
    width: 20px;
    text-align: center;
    color: var(--text-secondary);
    transition: color 0.3s;
}
.profile-nav-btn:hover {
    background-color: var(--bg-secondary);
}
.profile-nav-btn.active {
    background-color: var(--accent);
    color: white;
}
.profile-nav-btn.active i {
    color: white;
}

/* Main Content Area */
.profile-content-area {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    min-height: 500px;
}

.profile-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}
.profile-tab-pane.active {
    display: block;
}

.profile-tab-pane h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    border-bottom: 2px solid var(--bg-secondary);
    padding-bottom: 15px;
}

/* Form Styles */
.profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}
.profile-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.profile-input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}
.profile-input-group input {
    background-color: transparent;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-family: 'Baloo 2', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}
.profile-input-group input:focus {
    border-color: var(--accent);
}

/* Programs Grid */
.enrolled-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}
.enrolled-card {
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.enrolled-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
}
.enrolled-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.enrolled-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    background-color: rgba(75, 139, 125, 0.1);
    color: var(--accent);
    margin-bottom: 15px;
    align-self: flex-start;
}

/* History Table */
.history-table-wrapper {
    overflow-x: auto;
}
.history-table {
    width: 100%;
    border-collapse: collapse;
}
.history-table th, .history-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.history-table th {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.history-table td {
    color: var(--text-primary);
    font-weight: 500;
}
.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.status-badge.completed {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}
.status-badge.pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* Responsive */
@media (max-width: 992px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
    .profile-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .profile-nav-btn {
        flex: 1;
        justify-content: center;
        text-align: center;
        min-width: 150px;
    }
}
@media (max-width: 768px) {
    .profile-form-grid {
        grid-template-columns: 1fr;
    }
    .profile-content-area {
        padding: 25px 20px;
    }
}

/* Mobile FAB Menu */
.mobile-fab-menu {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.fab-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.fab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-family: 'Baloo 2', sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    transition: transform 0.2s;
}
.fab-item:hover {
    transform: scale(1.05);
}

.fab-item.whatsapp i {
    color: #25D366;
    font-size: 1.2rem;
}
.fab-item.call i {
    color: #007bff;
    font-size: 1.1rem;
}

.fab-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s;
}
.fab-toggle:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mobile-fab-menu {
        display: block;
    }
}

/* Mobile Header Reordering */
@media (max-width: 768px) {
    .nav-actions, .header-user-country {
        display: contents;
    }
    
    .nav-container {
        gap: 12px !important;
    }
    
    .mobile-menu-btn { 
        order: 1; 
    }
    
    .logo { 
        order: 2; 
        margin-right: auto !important;
    }
    
    .theme-toggle { 
        order: 3; 
    }
    
    .country-wrapper { 
        order: 4; 
    }
    
    .user-icon { 
        order: 5; 
    }
    
    .cart-wrapper { 
        order: 6; 
    }
}

/* Hero Slideshow Styles */
.slideshow-wrapper {
    position: relative;
}

.slideshow-wrapper .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
    z-index: 1;
}

.slideshow-wrapper .slide:first-of-type {
    position: relative; /* Keeps the container height */
}

.slideshow-wrapper .slide.active {
    opacity: 1;
    z-index: 2;
}

.slideshow-wrapper .hero-badge,
.slideshow-wrapper .hero-glow {
    z-index: 5; /* Ensure they stay on top of the slides */
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 80px;
    right: -500px;
    background-color: #4caf50;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 500;
}
.toast-notification.show {
    right: 20px;
}
.toast-icon {
    font-size: 1.2rem;
}
.toast-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    margin-left: 10px;
    font-size: 1.2rem;
}
.toast-close:hover {
    opacity: 1;
}
