/* Chief Architect Website - Main Styles */

/* ===== CSS Variables ===== */
:root {
    --primary-green: #9EC43D;
    --green-dark: #8AB034;
    --green-light: #B2D84A;
    --trustpilot-green: #00B67A;
    --text-dark: #191919;
    --text-medium: #666666;
    --text-light: #767676;
    --bg-light: #F4F4F4;
    --bg-white: #FFFFFF;
    --border-light: #E0E0E0;
    --border-medium: #E5E5E5;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #F9F9F9;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== FAQ Section ===== */
.faq-section {
    padding: 64px 20px;
    background: #FFFFFF;
}

.faq-section .container {
    max-width: 1000px;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.faq-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-green);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-green);
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-green);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 48px 20px 0;
    border-top: 1px solid var(--border-light);
}

.faq-cta p {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.faq-cta .btn {
    display: inline-block;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
}

.logo img {
    height: 48px;
    width: auto;
}

.tagline {
    display: none;
    font-size: 14px;
    color: var(--text-medium);
}

.nav-desktop {
    display: none;
    gap: 30px;
}

.nav-desktop a {
    font-weight: 500;
    transition: color 0.3s;
}

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

.cart-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: var(--green-dark);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    stroke: var(--text-dark);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    padding: 10px 0;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(to bottom right, #ffffff, #f9f9f9, #ffffff);
    padding: 80px 20px;
}

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

.hashtag {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-medium);
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-dark) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 196, 61, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

/* ===== Trust Badges ===== */
.trust-badges {
    padding: 48px 20px;
    background: #FFFFFF;
}

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

.badge {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.badge:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.badge svg {
    color: var(--primary-green);
    margin-bottom: 16px;
}

.badge h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.badge p {
    font-size: 12px;
    color: var(--text-medium);
}

/* ===== Trust Statement ===== */
.trust-statement {
    padding: 64px 20px;
    background: var(--bg-light);
}

.trust-statement .container {
    max-width: 900px;
    text-align: center;
}

.trust-statement h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.trust-statement p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===== Coupon Banner ===== */
.coupon-section {
    padding: 32px 20px;
    background: #FFFFFF;
}

.coupon-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.coupon-banner {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    border-radius: 6px;
    padding: 25px 35px;
    max-width: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e8e8e8;
}

.coupon-banner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    border-radius: 0 6px 6px 0;
}

.coupon-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.coupon-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.coupon-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-green);
}

.coupon-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.coupon-main-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.4px;
    line-height: 1.2;
}

.coupon-highlight {
    color: var(--primary-green);
}

.coupon-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-medium);
    letter-spacing: 0.2px;
}

.coupon-code-box {
    background: transparent;
    border: 2.5px dashed var(--primary-green);
    border-radius: 6px;
    padding: 15px 25px;
    text-align: center;
    min-width: 170px;
    position: relative;
    z-index: 2;
}

.coupon-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.coupon-code-text {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 2.5px;
}

/* ===== Product Section ===== */
.product-section {
    padding: 64px 20px;
    background: var(--bg-light);
}

.product-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    animation: fadeInUp 0.6s ease-out;
}

.product-image-section {
    background: #FFFFFF;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.product-image-section #va12_slider_wrap {
    width: 100%;
    max-width: 500px;
    margin-top: 10px;
}

.product-image-section .va12_item {
    padding: 0 5px;
}

.product-image-section .va12_item_inner {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.product-image-section .va12_item_inner:hover {
    transform: scale(1.05);
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(158, 196, 61, 0.3);
}

.product-image-section #va12_dots {
    margin-top: 15px;
}


.product-image {
    width: 100%;
    height: auto;
    max-width: 500px;
}

.product-details-section {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 20px;
    color: var(--text-medium);
    text-decoration: line-through;
    opacity: 0.7;
}

.sale-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -1px;
}

.sale-price::before {
    content: '$';
    font-size: 24px;
    vertical-align: super;
    margin-right: 2px;
}

.savings-badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-dark) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(158, 196, 61, 0.1);
    border: 1.5px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    letter-spacing: 0.3px;
}

.stock-badge::before {
    content: '✓';
    font-size: 16px;
    font-weight: 700;
}

.quantity-section {
    margin-bottom: 25px;
}

.quantity-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-selector {
    position: relative;
    width: 180px;
}

.quantity-select {
    width: 100%;
    height: 45px;
    padding: 0 40px 0 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: white;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
}

.quantity-select:hover {
    border-color: var(--green-light);
}

.quantity-select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--text-dark);
}

.add-to-cart-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-dark) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 196, 61, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* ===== About Section ===== */
.about-section {
    padding: 64px 20px;
    background: #FFFFFF;
    text-align: center;
}

.about-section .container {
    max-width: 900px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.about-section p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.trial-link {
    text-align: center;
    padding-top: 16px;
}

.trial-link a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
}

.trial-link a:hover {
    color: var(--green-dark);
}

/* ===== Features Container ===== */
.features-container-section {
    padding: 64px 20px;
    background: #FFFFFF;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.features-left {
    padding: 60px 50px;
    background: transparent;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
    line-height: 1.2;
}

.features-underline {
    width: 80px;
    height: 4px;
    background: #191919;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #191919;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.feature-text {
    font-size: 1.05rem;
    color: #191919;
    line-height: 1.6;
    font-weight: 500;
}

.warranty-text {
    margin-top: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #191919;
}

.features-right {
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.features-image-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== System Requirements Container ===== */
.system-requirements {
    padding: 64px 20px;
    background: #F9F9F9;
}

.requirements-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.requirements-left {
    padding: 60px 50px;
    background: transparent;
}

.requirements-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
    line-height: 1.2;
}

.requirements-underline {
    width: 80px;
    height: 4px;
    background: #191919;
    margin-bottom: 40px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.requirement-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #191919;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.requirement-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.requirement-content {
    flex: 1;
}

.requirement-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #191919;
    margin-bottom: 4px;
}

.requirement-text {
    font-size: 0.95rem;
    color: #191919;
    line-height: 1.6;
}

.requirements-right {
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.requirements-image-wrapper {
    background: #2C2849;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
}

.requirements-image-header {
    background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.requirements-image-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.requirements-badge {
    background: #ffffff;
    color: #C8102E;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.requirements-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.requirements-footer {
    background: #1F1A3A;
    padding: 12px 24px;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
}

/* ===== Footer (Simplified) ===== */
.footer {
    background: #F9F9F9;
    color: #191919;
    padding: 32px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #191919;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-column a {
    color: #666666;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-green);
}

.footer-column strong {
    color: #191919;
    display: block;
    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid #E0E0E0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo img {
    height: 32px;
    opacity: 0.8;
}

.footer-text {
    text-align: right;
    font-size: 12px;
    color: #999999;
}

.footer-text p {
    margin-bottom: 4px;
}

/* ===== Trusted Partners Section ===== */
.trusted-partners {
    padding: 64px 20px;
    background: var(--bg-light);
}

.trusted-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.trusted-head h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-shield {
    height: 36px;
    width: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(158, 196, 61, 0.4);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 6px rgba(158, 196, 61, 0.4);
    }

    50% {
        box-shadow: 0 0 16px rgba(158, 196, 61, 0.7);
    }

    100% {
        box-shadow: 0 0 6px rgba(158, 196, 61, 0.4);
    }
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.trust-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: 0.25s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(158, 196, 61, 0.25);
}

.logo-wrap {
    height: 40px;
    width: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.logo-wrap .icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.brand-text {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.brand-sub {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.trust-note {
    margin-top: 24px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Reviews Section (Trustpilot Style) ===== */
.reviews-section {
    padding: 64px 20px;
    background: var(--bg-light);
}

.tp-header {
    text-align: left;
    margin-bottom: 40px;
}

.tp-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.tp-rating-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tp-stars-overall {
    display: flex;
    gap: 4px;
}

.tp-star-overall {
    width: 32px;
    height: 32px;
    fill: var(--trustpilot-green);
}

.tp-rating-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tp-based-on {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.tp-logo {
    margin-left: auto;
}

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

.tp-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.tp-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.tp-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tp-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tp-user-details {
    display: flex;
    flex-direction: column;
}

.tp-user-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tp-user-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
}

.tp-trustpilot-icon {
    width: 24px;
    height: 24px;
    fill: var(--trustpilot-green);
    flex-shrink: 0;
}

.tp-card-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.tp-star {
    width: 20px;
    height: 20px;
    fill: var(--trustpilot-green);
}

.tp-star.empty {
    fill: none;
    stroke: var(--trustpilot-green);
    stroke-width: 2;
}

.tp-review-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.tp-review-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 12px;
}

.tp-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--trustpilot-green);
    font-weight: 500;
}

.tp-verified svg {
    width: 14px;
    height: 14px;
    fill: var(--trustpilot-green);
}

/* ===== Product Images Carousel ===== */
.product-images-section {
    padding: 48px 20px;
    background: #FFFFFF;
}

#va12_slider_wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    background: transparent;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

#va12_slider_viewport {
    overflow: hidden;
    width: 100%;
}

#va12_slider_track {
    display: flex;
    transition: transform 1.2s ease-in-out;
    will-change: transform;
}

.va12_item {
    flex: 0 0 33.3333%;
    padding: 6px;
    box-sizing: border-box;
}

.va12_item_inner {
    border-radius: 10px;
    border: 1px solid #c7c7c7;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
}

.va12_item_inner img {
    width: 100%;
    display: block;
}

#va12_dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.va12_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #999;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.va12_dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===== Responsive Styles ===== */
@media (min-width: 768px) {
    .tagline {
        display: block;
    }

    .nav-desktop {
        display: flex;
    }

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

    .coupon-banner::after {
        display: block;
    }
}

@media (max-width: 900px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .product-image-section {
        padding: 40px 30px;
    }

    .product-details-section {
        padding: 40px 30px;
    }

    .features-content {
        grid-template-columns: 1fr;
    }

    .features-left {
        padding: 40px 30px;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-right {
        padding: 40px 30px;
    }

    .requirements-content {
        grid-template-columns: 1fr;
    }

    .requirements-left {
        padding: 40px 30px;
    }

    .requirements-title {
        font-size: 2rem;
    }

    .requirements-right {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .coupon-banner {
        flex-direction: column;
        padding: 22px 18px;
        gap: 18px;
        text-align: center;
    }

    .coupon-banner::after {
        display: none;
    }

    .coupon-left {
        flex-direction: column;
        gap: 15px;
    }

    .coupon-code-box {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .tp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tp-main-title {
        font-size: 1.5rem;
    }

    .tp-logo {
        margin-left: 0;
        margin-top: 10px;
    }

    .tp-rating-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .tp-card {
        padding: 20px;
    }

    .tp-review-title {
        font-size: 0.9rem;
    }

    .tp-review-text {
        font-size: 0.85rem;
    }

    .va12_item {
        flex: 0 0 50%;
    }

    .trusted-head h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .va12_item {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .tp-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .tp-card {
        border: 2px solid var(--trustpilot-green);
        box-shadow: 0 4px 12px rgba(0, 182, 122, 0.15);
    }

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

    .tp-rating-box {
        justify-content: center;
    }
}


@media (max-width: 500px) {
    .hero-title {
        font-size: 28px;
    }

    .product-image-section {
        padding: 30px 20px;
    }

    .product-details-section {
        padding: 30px 20px;
    }

    .product-title {
        font-size: 20px;
    }

    .sale-price {
        font-size: 28px;
    }

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

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

    .faq-section h2 {
        font-size: 28px;
    }

    .faq-intro {
        font-size: 16px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .faq-cta p {
        font-size: 18px;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 80px 0;
    background: #F9F9F9;
    min-height: 60vh;
}

.legal-content {
    background: #FFFFFF;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F5F5F5;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #191919;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Contact Page Specifics */
.contact-info-box {
    margin-top: 30px;
}

.contact-details {
    margin-top: 30px;
    display: grid;
    gap: 30px;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    color: #191919;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px;
    }

    .legal-content h1 {
        font-size: 26px;
    }
}

/* =========================================
   MOBILE RESPONSIVE STYLES
   ========================================= */

@media (max-width: 768px) {

    /* Global Adjustments */
    body {
        font-size: 14px !important;
    }

    .container {
        padding: 0 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    section {
        padding: 24px 0 !important;
    }

    /* Header */
    .header {
        height: auto !important;
        padding: 10px 0 !important;
        position: relative !important;
    }

    .header-content {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 10px 0 !important;
        height: auto !important;
    }

    .logo img {
        max-width: 180px !important;
        /* Smaller logo on mobile */
        height: auto !important;
    }

    .nav-desktop {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .nav-desktop a {
        font-size: 13px !important;
        padding: 5px 10px !important;
        background: #f5f5f5;
        border-radius: 4px;
    }

    .cart-icon {
        display: none !important;
        /* Hide cart on mobile to prevent overlap */
    }

    .mobile-menu-btn {
        display: none !important;
    }

    /* Hero Section */
    .hero-section {
        margin-top: 20px !important;
        /* Add space below header */
        padding-top: 20px !important;
    }

    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-top: 10px !important;
    }

    .hero-content p {
        font-size: 16px !important;
    }

    /* Product Section */
    .product-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .product-image-section,
    .product-details-section {
        padding: 20px !important;
    }

    .product-title {
        font-size: 24px !important;
    }

    .price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    /* Trust Badges */
    .badges-grid {
        grid-template-columns: 1fr !important;
        /* Stack in 1 column for better readability */
        gap: 20px !important;
    }

    .badge {
        padding: 20px !important;
        /* Add more padding inside badges */
    }

    /* Features & Requirements */
    .features-container-section,
    .system-requirements {
        flex-direction: column !important;
    }

    .features-left,
    .features-right,
    .requirements-left,
    .requirements-right {
        width: 100% !important;
        padding: 0 !important;
    }

    .features-right,
    .requirements-right {
        margin-top: 30px;
        order: -1;
        /* Image on top for mobile */
    }

    .requirements-right {
        order: 1;
        /* Image on bottom for requirements if preferred, or keep consistent */
    }

    /* Reviews */
    .tp-reviews-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .footer {
        padding: 40px 15px !important;
    }

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

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

    /* Legal Pages */
    .legal-content {
        padding: 20px !important;
    }

    .legal-content h1 {
        font-size: 24px !important;
    }

    /* Carousel */
    .va12_item {
        flex: 0 0 50% !important;
        /* Show 2 items on mobile */
    }
}

@media (max-width: 480px) {

    /* Smaller Mobile Adjustments */
    .badges-grid {
        grid-template-columns: 1fr !important;
        /* Stack badges on very small screens */
    }

    .hero-content h1 {
        font-size: 24px !important;
    }

    .va12_item {
        flex: 0 0 100% !important;
        /* Show 1 item on very small screens */
    }
}/* =========================================
   CHECKOUT MODAL STYLES
   ========================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #FFFFFF;
    width: 90%;
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #EEEEEE;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #191919;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #191919;
}

.modal-body {
    padding: 25px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F5F5F5;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #F9F9F9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.cart-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: #191919;
}

.cart-item-license {
    margin: 0 0 10px;
    font-size: 13px;
    color: #777;
}

.cart-item-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-qty {
    font-size: 14px;
    color: #555;
    background: #F5F5F5;
    padding: 2px 8px;
    border-radius: 4px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #191919;
}

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

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.summary-row.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #F5F5F5;
    font-size: 18px;
    font-weight: 700;
    color: #191919;
}

.modal-footer {
    padding: 0 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
}

.btn-link {
    background: none;
    border: none;
    color: #777;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    text-align: center;
}

.secure-badge {
    background: #F9F9F9;
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-top: 1px solid #EEEEEE;
}

@media (max-width: 480px) {
    .modal-container {
        width: 95%;
    }
}/* =========================================
   UPDATED CHECKOUT MODAL STYLES
   ========================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    /* Modern blur effect */
    z-index: 9999;
    /* Higher z-index to be on top of everything */
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #FFFFFF;
    width: 90%;
    max-width: 420px;
    /* Slightly narrower for modern look */
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAFAFA;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #191919;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.modal-close:hover {
    color: #191919;
    background: #EEEEEE;
}

.modal-body {
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: #F5F5F5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #EEEEEE;
}

.cart-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-details h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: #191919;
    line-height: 1.3;
}

.cart-item-license {
    margin: 0 0 8px;
    font-size: 12px;
    color: #777;
}

.cart-item-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.cart-item-qty {
    font-size: 13px;
    color: #555;
    background: #F5F5F5;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #191919;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.green-text {
    color: #00b67a;
    font-weight: 500;
}

.summary-row.total {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px dashed #DDD;
    font-size: 18px;
    font-weight: 700;
    color: #191919;
    align-items: center;
}

.modal-footer {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(158, 196, 61, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(158, 196, 61, 0.4);
}

.payment-methods {
    text-align: center;
    border-top: 1px solid #F0F0F0;
    padding-top: 16px;
}

.secure-text {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (max-width: 480px) {
    .modal-container {
        width: 95%;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
        margin-bottom: 0;
        position: absolute;
        bottom: 0;
    }

    .modal-overlay.active .modal-container {
        transform: translateY(0);
    }

    .modal-overlay {
        align-items: flex-end;
        /* Sheet style on mobile */
    }
}