/*
Theme Name: Personify AI Theme
Theme URI: https://personify.in
Author: Arghya
Author URI: https://personify.in
Description: Custom WordPress theme based on Personify AI Hub HTML and CSS.
Version: 1.0
Text Domain: personify-ai-theme
Tags: e-commerce, ai, prompts
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: hsl(0, 0%, 100%);
    color: hsl(220, 20%, 10%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid hsl(220, 13%, 91%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 50%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 50%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(220, 20%, 10%);
    transition: color 0.2s;
}

.nav-link:hover {
    color: hsl(217, 91%, 60%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    background: transparent;
    color: hsl(220, 20%, 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    position: relative;
}

.icon-btn:hover {
    background: hsl(220, 15%, 96%);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(180deg, hsl(0, 0%, 100%), hsl(217, 91%, 98%));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
}

.hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 50%));
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(220, 20%, 10%);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: hsl(220, 10%, 45%);
    margin-bottom: 2rem;
}

.search-container {
    position: relative;
    margin-bottom: 2rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(220, 10%, 45%);
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 1px solid hsl(220, 13%, 91%);
    border-radius: 0.75rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s;
}

.search-input:focus {
    border-color: hsl(217, 91%, 60%);
    box-shadow: 0 0 0 3px hsla(217, 91%, 60%, 0.1);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 50%));
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -4px hsla(217, 91%, 60%, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid hsl(220, 13%, 91%);
    color: hsl(220, 20%, 10%);
}

.btn-outline:hover {
    background: hsl(220, 15%, 96%);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.813rem;
}

.btn-outline-lg {
    padding: 0.875rem 2rem;
    background: transparent;
    border: 1px solid hsl(220, 13%, 91%);
    color: hsl(220, 20%, 10%);
}

.btn-outline-full {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 1px solid hsl(220, 13%, 91%);
    color: hsl(220, 20%, 10%);
}

.btn-primary-full {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 50%));
    color: white;
}

.btn-link {
    background: transparent;
    color: hsl(217, 91%, 60%);
    padding: 0;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-link:hover {
    opacity: 0.8;
}

/* Sections */
section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.75rem;
    color: hsl(220, 20%, 10%);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    text-align: center;
    color: hsl(220, 10%, 45%);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.section-title-left {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: hsl(220, 20%, 10%);
}

.section-subtitle-left {
    color: hsl(220, 10%, 45%);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Features Section */
.features {
    background: hsl(0, 0%, 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.woocommerce-breadcrumb{
    display: none;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(220, 15%, 98%));
    border: 1px solid hsl(220, 13%, 91%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px -8px hsla(217, 91%, 60%, 0.15);
}

.feature-icon {
    color: white;
    margin-bottom: 1rem;
}

.gradient-blue .feature-icon {
    color: hsl(217, 91%, 60%);
}

.gradient-green .feature-icon {
    color: hsl(142, 76%, 36%);
}

.gradient-purple .feature-icon {
    color: hsl(271, 76%, 53%);
}

.gradient-orange .feature-icon {
    color: hsl(25, 95%, 53%);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: hsl(220, 20%, 10%);
}

.feature-description {
    color: hsl(220, 10%, 45%);
    font-size: 0.875rem;
}

/* Categories Section */
.categories {
    background: hsl(220, 15%, 98%);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid hsl(220, 13%, 91%);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px -4px hsla(217, 91%, 60%, 0.15);
    border-color: hsl(217, 91%, 60%);
}

.category-icon {
    margin: 0 auto 1rem;
}

.color-blue {
    color: hsl(217, 91%, 60%);
}

.color-green {
    color: hsl(142, 76%, 36%);
}

.color-purple {
    color: hsl(271, 76%, 53%);
}

.color-orange {
    color: hsl(25, 95%, 53%);
}

.color-pink {
    color: hsl(330, 81%, 60%);
}

.color-cyan {
    color: hsl(189, 94%, 43%);
}

.category-title {
    font-size: 1.125rem;
    color: hsl(220, 20%, 10%);
}

/* Products Section */
.featured-products {
    background: hsl(0, 0%, 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid hsl(220, 13%, 91%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px -8px hsla(217, 91%, 60%, 0.15);
}

.product-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-badge.color-blue {
    background: hsla(217, 91%, 60%, 0.1);
    color: hsl(217, 91%, 60%);
}

.product-badge.color-green {
    background: hsla(142, 76%, 36%, 0.1);
    color: hsl(142, 76%, 36%);
}

.product-badge.color-purple {
    background: hsla(271, 76%, 53%, 0.1);
    color: hsl(271, 76%, 53%);
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: hsl(220, 20%, 10%);
}

.product-description {
    color: hsl(220, 10%, 45%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(217, 91%, 60%);
}

.text-center {
    text-align: center;
}

.mt-12 {
    margin-top: 3rem;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(180deg, hsl(217, 91%, 98%), hsl(142, 76%, 98%));
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.check-icon {
    color: hsl(142, 76%, 36%);
    flex-shrink: 0;
}

.why-choose-card {
    padding: 2.5rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid hsl(220, 13%, 91%);
    box-shadow: 0 16px 48px -8px hsla(217, 91%, 60%, 0.2);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 50%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: hsl(220, 20%, 10%);
}

.card-description {
    color: hsl(220, 10%, 45%);
    line-height: 1.7;
    font-size: 1rem;
}

/* Bundles Section */
.bundles {
    background: hsl(0, 0%, 100%);
}

.bundles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .bundles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bundle-card {
    padding: 2.5rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid hsl(220, 13%, 91%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px -8px hsla(217, 91%, 60%, 0.15);
}

.bundle-popular {
    border-color: hsl(217, 91%, 60%);
    box-shadow: 0 16px 48px -8px hsla(217, 91%, 60%, 0.2);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    right: 2rem;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 50%));
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bundle-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: hsl(220, 20%, 10%);
}

.bundle-description {
    color: hsl(220, 10%, 45%);
    margin-bottom: 1.5rem;
}

.bundle-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(217, 91%, 60%);
    margin-bottom: 1.5rem;
}

.bundle-features {
    list-style: none;
    margin-bottom: 2rem;
}

.bundle-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(220, 13%, 91%);
    color: hsl(220, 20%, 10%);
}

.bundle-features li:last-child {
    border-bottom: none;
}

/* Testimonials & Blog */
.testimonials-blog {
    background: hsl(220, 15%, 98%);
}

.testimonials-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .testimonials-blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid hsl(220, 13%, 91%);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    color: hsl(45, 93%, 47%);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: hsl(220, 20%, 10%);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: hsl(220, 20%, 10%);
}

.testimonial-role {
    color: hsl(220, 10%, 45%);
    font-size: 0.875rem;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-post {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: white;
    border: 1px solid hsl(220, 13%, 91%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post:hover {
    box-shadow: 0 8px 24px -4px hsla(217, 91%, 60%, 0.15);
    border-color: hsl(217, 91%, 60%);
}

.blog-date {
    display: block;
    font-size: 0.875rem;
    color: hsl(220, 10%, 45%);
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: hsl(220, 20%, 10%);
}

.blog-excerpt {
    color: hsl(220, 10%, 45%);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: hsl(220, 15%, 96%);
    border-top: 1px solid hsl(220, 13%, 91%);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: hsl(220, 10%, 45%);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(220, 20%, 10%);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: hsl(220, 10%, 45%);
    transition: color 0.2s;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: hsl(217, 91%, 60%);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid hsl(220, 13%, 91%);
    color: hsl(220, 10%, 45%);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(220, 10%, 45%);
    transition: all 0.2s;
}

.social-link:hover {
    background: hsl(217, 91%, 60%);
    color: white;
    transform: translateY(-2px);
}
.nav-desktop li{
    list-style:none!important;
}
.feature-card{
    text-align: center;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(142, 76%, 36%) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: hsl(0, 0%, 100%);
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-hero-description {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 5rem 0;
}

.about-section-alt {
    background-color: hsl(217, 33%, 97%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid-reverse {
    direction: rtl;
}

.about-grid-reverse > * {
    direction: ltr;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(217, 33%, 17%);
    letter-spacing: -0.02em;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: hsl(215, 16%, 47%);
    margin-bottom: 1.25rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, hsl(217, 91%, 95%) 0%, hsl(142, 76%, 90%) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(217, 91%, 60%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(217, 33%, 17%);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: hsl(215, 16%, 47%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: hsl(0, 0%, 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(217, 33%, 97%);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px hsla(217, 91%, 60%, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(142, 76%, 36%) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(0, 0%, 100%);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: hsl(217, 33%, 17%);
}

.value-card p {
    color: hsl(215, 16%, 47%);
    line-height: 1.6;
}

.stats-section {
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(142, 76%, 36%) 100%);
    padding: 4rem 0;
    color: hsl(0, 0%, 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(217, 33%, 17%);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    color: hsl(215, 16%, 47%);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid-reverse {
        direction: ltr;
    }

    .about-content h2 {
        font-size: 1.875rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.875rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Product Description Page Styles */
.product-page {
    min-height: 100vh;
    background: white;
}

.product-header {
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(142, 76%, 36%) 100%);
    padding: 7.5rem 1.25rem 5rem;
    text-align: center;
    color: white;
}

.product-header-content {
    max-width: 56.25rem;
    margin: 0 auto;
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3.125rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1rem;
}

.product-rating, .product-delivery {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-description {
    padding: 5rem 1.25rem;
    background: hsl(0, 0%, 98%);
}

.description-hero {
    max-width: 56.25rem;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: hsl(0, 0%, 20%);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.description-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: hsl(0, 0%, 30%);
    margin-bottom: 1.5rem;
}

.product-features {
    padding: 5rem 1.25rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    margin-top: 3rem;
}

.feature-card {
    background: hsl(0, 0%, 98%);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: hsl(217, 91%, 60%);
    transform: translateY(-0.25rem);
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.08);
}

.feature-card-highlight {
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(142, 76%, 36%) 100%);
    color: white;
}

.feature-card-highlight .feature-title,
.feature-card-highlight .feature-description,
.feature-card-highlight .feature-list,
.feature-card-highlight .feature-note {
    color: white;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    color: hsl(0, 0%, 20%);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: hsl(0, 0%, 30%);
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.feature-list li {
    font-size: 1rem;
    color: hsl(0, 0%, 40%);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(142, 76%, 36%);
    font-weight: 700;
}

.feature-card-highlight .feature-list li::before {
    color: white;
}

.feature-note {
    font-size: 0.875rem;
    color: hsl(0, 0%, 50%);
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.5;
}

.product-includes {
    padding: 5rem 1.25rem;
    background: hsl(0, 0%, 98%);
}

.includes-content {
    max-width: 56.25rem;
    margin: 0 auto;
}

.includes-intro {
    font-size: 1.25rem;
    color: hsl(0, 0%, 30%);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.files-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.file-item {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid hsl(217, 91%, 60%);
    font-size: 1rem;
    color: hsl(0, 0%, 30%);
    font-weight: 500;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: hsl(217, 91%, 60%);
    color: white;
    transform: translateX(0.25rem);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 1rem;
    max-width: 50rem;
    margin: 0 auto;
}

.benefit-badge {
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(142, 76%, 36%) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.product-audience {
    padding: 5rem 1.25rem;
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 1.5rem;
    max-width: 62.5rem;
    margin: 0 auto;
    margin-top: 3rem;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: hsl(0, 0%, 98%);
    padding: 1.5rem 1.75rem;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.audience-item:hover {
    border-color: hsl(142, 76%, 36%);
    transform: translateX(0.25rem);
}

.audience-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.audience-text {
    font-size: 1rem;
    color: hsl(0, 0%, 30%);
    font-weight: 500;
    line-height: 1.5;
}

.product-faq {
    padding: 5rem 1.25rem;
    background: hsl(0, 0%, 98%);
}

.faq-list {
    max-width: 56.25rem;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: hsl(217, 91%, 60%);
}

.faq-question {
    font-size: 1.25rem;
    color: hsl(0, 0%, 20%);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    color: hsl(0, 0%, 40%);
    line-height: 1.7;
    margin: 0;
}

.product-cta {
    padding: 6.25rem 1.25rem;
    background: white;
}

.product-cta .cta-box {
    max-width: 43.75rem;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(142, 76%, 36%) 100%);
    padding: 3.75rem 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3.75rem;
    background: white;
    color: hsl(217, 91%, 60%);
    border: none;
    border-radius: 3.125rem;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.3);
}

.cta-guarantee {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Responsive adjustments for product page */
@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}
/* Single Product Page Styles */
.product-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: hsl(220, 20%, 10%);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(217, 91%, 60%);
    margin-bottom: 1.5rem;
}

.product-add-to-cart .single_add_to_cart_button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 50%));
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
}

.product-add-to-cart .single_add_to_cart_button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -4px hsla(217, 91%, 60%, 0.3);
}

.product-meta {
    font-size: 0.875rem;
    color: hsl(220, 10%, 45%);
    margin-bottom: 2rem;
}

.product-meta .sku, .product-meta .posted_in, .product-meta .tagged_as {
    display: inline-block;
    margin-right: 1rem;
}

.product-description {
    line-height: 1.7;
    color: hsl(220, 20%, 10%);
}

.product-description h2, .product-description h3, .product-description h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-description ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-reviews {
    margin-top: 3rem;
    border-top: 1px solid hsl(220, 13%, 91%);
    padding-top: 2rem;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-top: 2rem;
}

.woocommerce-Price-amount {
    color: hsl(217, 91%, 60%);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .product-add-to-cart .single_add_to_cart_button {
        width: auto;
    }
}

/* Product Gallery Styles */
.product-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-gallery-summary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .product-gallery-summary {
        flex-direction: row;
        gap: 3rem;
    }
    .product-gallery {
        flex: 1;
    }
    .product-summary {
        flex: 1;
    }
}

.product-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.product-gallery .woocommerce-product-gallery__image {
    border: 1px solid hsl(220, 13%, 91%);
    border-radius: 1rem;
    overflow: hidden;
}

.product-gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-gallery .flex-control-thumbs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
}

.product-gallery .flex-control-thumbs li {
    width: 80px;
    flex-shrink: 0;
}

.product-gallery .flex-control-thumbs img {
    border: 1px solid hsl(220, 13%, 91%);
    border-radius: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
}

.product-gallery .flex-control-thumbs img:hover,
.product-gallery .flex-control-thumbs .flex-active img {
    border-color: hsl(217, 91%, 60%);
    box-shadow: 0 0 0 3px hsla(217, 91%, 60%, 0.1);
}

/* Adjust existing styles if needed for integration */
.product-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}