/* Voice Activity Store - Matching main website design */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

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

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-logo-ball {
    height: 20px;
    width: 20px;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.brand-logo-ball:hover {
    transform: scale(1.1) rotate(10deg);
}

.brand-text {
    color: #2c3e50;
}

.brand-accent {
    color: #F0522E;
}


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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F0522E;
}

.nav-phone {
    background: #F0522E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: #d63912;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-accent {
    color: #F0522E;
    display: block;
}

.hero-features {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    color: #2c3e50;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 82, 46, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

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

.btn-primary {
    background: #F0522E;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #d63912;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 82, 46, 0.3);
}

.btn-primary:disabled,
a.btn-primary[aria-disabled="true"] {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

a.btn-primary[aria-disabled="true"]:hover {
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: #F0522E;
    border: 2px solid #F0522E;
}

.btn-secondary:hover {
    background: #F0522E;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Products Section */
.products {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.5);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(240, 82, 46, 0.1);
}

/* Single product card - wider layout */
.product-grid:has(.product-card:only-child) .product-card {
    max-width: 700px;
}

.product-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-badge {
    background: linear-gradient(45deg, #F0522E, #ff6b47);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.product-description {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.skill-links {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(240, 82, 46, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(240, 82, 46, 0.1);
}

.skill-links h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.amazon-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.amazon-links li {
    padding: 0;
}

.amazon-links a {
    display: block;
    padding: 0.5rem;
    color: #F0522E;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.amazon-links a:hover {
    background: rgba(240, 82, 46, 0.1);
    color: #d63912;
}

.important-note {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    border-left: 4px solid #F0522E;
}

.note-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #856404;
}

.warning-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.important-note p {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #2c3e50;
    font-weight: 500;
}

.product-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #F0522E, #ff6b47);
    border-radius: 15px;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    opacity: 0.9;
}

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

.payment-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-note::before {
    content: "🔒";
    font-size: 0.9rem;
}

.manage-subscription-note {
    margin-top: 0.5rem;
    color: #888;
    font-size: 0.82rem;
    text-align: center;
}

.manage-subscription-note a {
    color: #F0522E;
    text-decoration: none;
}

.manage-subscription-note a:hover {
    text-decoration: underline;
}

.refund-policy {
    margin: 0 0 2rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
}

.refund-policy h4 {
    color: #2c3e50;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.refund-policy p {
    color: #666;
    font-size: 0.7rem;
    line-height: 1.5;
    margin: 0;
}

.terms-checkbox {
    margin-bottom: 1.25rem;
    text-align: center;
    padding: 1rem;
    background: rgba(240, 82, 46, 0.03);
    border-radius: 8px;
}

.terms-checkbox label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #F0522E;
    flex-shrink: 0;
}

.terms-checkbox span {
    color: #2c3e50;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Support Section */
.support {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(240, 82, 46, 0.05);
}

.support h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.support p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #F0522E;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ff6b47;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.soc-item {
    display: inline-block;
}

.soc-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.soc-item a:hover {
    background: rgba(240, 82, 46, 0.1);
    transform: translateY(-2px);
}

.soc-item svg {
    transition: all 0.3s ease;
}

.soc-item a:hover svg {
    fill: #ff6b47;
}

.footer-copyright {
    color: #F0522E;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        margin: 0 1rem;
    }

    .amazon-links {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states and animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.product-card {
    animation: fadeInUp 0.6s ease-out;
}