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

img {
    max-width: 100%;
}

:root {
    --primary: #ec4944;
    --primary-dark: #4f46e5;
    --secondary: #3b82f6;
    --accent: #f97316;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --dark: #1a1a1a;
    --light: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255, 255, 255);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo h2 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo i {
    margin-right: 0.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: #fff !important;
    padding: 10px 11px;
    border-radius: 50%;
    /* background: var(--primary); */
    /* background-color: #ec4944; */
    color: #ec4944 !important;
    transition: var(--transition);
}

.cart-icon:hover {
    /* background: var(--primary-dark); */
    transform: scale(1.05);
}

.cart-icon a {
    color: #ec4944 !important;
}

.cart-count {
    position: absolute;
    top: -21px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    min-width: 1.2rem;
    text-align: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    /* background: linear-gradient(1deg, #010204 0%, #4c77bd 100%); */
    background-image: url(../images/banner-bg-1.png);
    background-repeat: no-repeat;
    background-position: top center;
    height: calc(100vh - 71px);
    margin-top: 71px;
    position: relative;

}


.overlay {
    position: absolute;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;


}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;


}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: -50px;
    right: 100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 50%;
    right: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 4%;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--darker);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    /* max-width: 600px; */
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons a:first-child {
    border: 1px solid #ec4944;
    font-size: 20px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 16px;
}

.hero-buttons a:first-child:hover {
    transition: 0.5s;
    background-color: #ec4944;
    color: #fff
}

.hero-buttons a {
    border: 1px solid #fff;
    font-size: 20px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 16px;
}

.hero-buttons a:hover {
    transition: 0.5s;
    background-color: #fff;
    color: #ec4944
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #3a56d4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

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

.btn-secondary:hover {
    background: rgba(67, 97, 238, 0.1);
    transform: translateY(-3px);
}

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

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: var(--darker);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

/* Featured Themes */
.featured-grid {
    /* display: grid; */
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.featured-grid {
    display: flex;
}

.featured-card {
    background: var(--lighter);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.featured-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.featured-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--darker);
}

.card-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.2rem;
}

.add-to-cart {
    background: var(--primary);
    color: white;
    border: none;
}

.add-to-cart:hover {
    background: #3a56d4;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #4361ee 0%, #6c63ff 100%);
    color: rgb(20, 3, 3);
    text-align: center;
}

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

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    /* background: var(--lighter); */
    background-color: #f1f1f1;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.category-card:hover i {
    color: #fff;
}

.category-card h3 {
    margin-bottom: 15px;
    color: var(--darker);
}

/* Testimonials */
.testimonials-section {
    background: var(--light);
}

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

.testimonial-card {
    background: var(--lighter);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.author-details h4 {
    color: var(--darker);
}

.author-details p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--lighter);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured .pricing-header {
    background: var(--primary);
    color: white;
    margin: -40px -30px 30px;
    padding: 30px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--darker);
    margin: 20px 0;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
    margin-right: 10px;
}

/* CTA Section */
.cta-section {
    /* background: linear-gradient(135deg, #919296 0%, #a1a1a7 100%); */
    background-color: #f3f3f3;
    /* color: white; */
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #ec4944 !important;
    font-weight: bold;
}

.cta-text {
    margin-bottom: 30px;
    font-size: 22px;
    opacity: 0.9;
    color: #161616;
}


.theme-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes float {

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

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

.hero-content {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%; */
}

.hero-text h1 {
    /* font-size: 84px; */
    font-size: clamp(64px, 36px, 24px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}


.hero-subtitle {
    /* font-size: 24px; */
    font-size: clamp(24px, 20px, 16px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

/* Featured Section */
.featured-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.featured-grid {
    display: grid;
    /* display: flex; */
    /* flex-wrap: wrap; */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    justify-content: space-between;

}

.featured-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;

}

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

.card-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;

}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.featured-grid .featured-card {
    /* width: 48%; */
    justify-content: space-between;
    padding: 5px;
}

.featured-grid .featured-card:nth-child(2),
.featured-grid .featured-card:nth-child(4) {
    float: left;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.card-image:hover .card-overlay {
    opacity: 1;
}

.card-image:hover img {
    transform: scale(1.05);
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.card-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Stats Section */
.stats-section {
    padding: 5rem 0;

    background-image: url(../images/banner-bg-1.png);
    background-repeat: no-repeat;
    background-position: top center;

    position: relative;

}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--success);
    font-size: 1.25rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: var(--gray-100);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.mission-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.mission-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.team-info p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Filter Section */
.filter-section {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
}

.filter-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-300);
    background: white;
    color: var(--gray-600);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.sort-controls select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    background: white;
    font-size: 1rem;
    cursor: pointer;
}

/* Themes Section */
.themes-section {
    padding: 3rem 0;
    background: white;
    min-height: 60vh;
}

.themes-grid {
    /* display: grid; */
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    /* gap: 2rem; */
}

.theme-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.theme-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.theme-image {
    position: relative;
    overflow: hidden;
    height: 200px;

}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.theme-image:hover .theme-overlay {
    opacity: 1;
}

.theme-image:hover img {
    transform: scale(1.1);
}

.theme-content {
    padding: 1.5rem;
}

.theme-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.theme-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.theme-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.theme-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.theme-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.theme-features i {
    color: var(--success);
}

.theme-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-footer .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* Blog Section */
.blog-section {
    padding: 3rem 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.blog-category {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
    line-height: 1.4;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.author span {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.read-more:hover {
    color: var(--primary-dark);
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.blog-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-300);
    background: white;
    color: var(--gray-600);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-num {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-300);
    background: white;
    color: var(--gray-600);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-num.active,
.pagination-num:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.pagination-dots {
    color: var(--gray-400);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.contact-info>p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.contact-details p {
    color: var(--gray-600);
    font-size: 0.975rem;
    margin-bottom: 0.25rem;
}

.social-contact h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.contact-form-container {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-form h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

/* Forms */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: green;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray-500);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group select:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:not(:placeholder-shown)+label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary);
    background: white;
    padding: 0 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label {
    position: static !important;
    color: var(--gray-600) !important;
    font-size: 0.975rem !important;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--gray-100);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Auth Section */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    position: relative;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: -1;
}

.auth-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.auth-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.auth-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
    animation-delay: 4s;
}

.auth-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 450px;
    margin: 0 2rem;
}

.auth-toggle {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    overflow: hidden;
}

.auth-toggle-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.auth-toggle-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.auth-form-container {
    display: none;
}

.auth-form-container.active {
    display: block;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--gray-600);
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    z-index: 1;
}

.input-group input {
    padding-left: 3rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    z-index: 1;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-300);
    z-index: -1;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    background: white;
    color: var(--gray-700);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.social-btn:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.social-btn.google:hover {
    border-color: #db4437;
    color: #db4437;
}

.social-btn.facebook:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.auth-switch {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.975rem;
}

.switch-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.switch-link:hover {
    text-decoration: underline;
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: var(--error);
    transition: var(--transition);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Checkout Section */
.checkout-section {
    padding: 3rem 0;
    background: white;
    min-height: 60vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--gray-800);
}

.clear-cart {
    color: var(--error);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.clear-cart:hover {
    text-decoration: underline;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.cart-item-image {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

.cart-item-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.cart-item-details p {
    color: var(--gray-600);
    font-size: 0.975rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

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

.remove-item {
    color: var(--error);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: var(--transition);
}

.remove-item:hover {
    text-decoration: underline;
}

.cart-empty {
    text-align: center;
    padding: 3rem 0;
}

.empty-icon {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.cart-empty h3 {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.coupon-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.coupon-section h3 {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.coupon-form {
    display: flex;
    gap: 0.75rem;
}

.coupon-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
}

.coupon-message {
    margin-top: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
}

.coupon-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.coupon-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

.order-summary {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.summary-row.total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--gray-300);
}

.summary-row.discount {
    color: var(--success);
}

.checkout-btn {
    margin-bottom: 2rem;
}

.checkout-btn:disabled {
    background: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.badge i {
    color: var(--success);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-content.success {
    text-align: center;
    max-width: 400px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--gray-800);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}

.modal-close:hover {
    color: var(--gray-600);
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h3 {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 500;
}

.payment-option input:checked+label {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary);
}

.payment-option label i {
    font-size: 1.5rem;
}

.credit-card-form {
    margin-bottom: 2rem;
}

.card-icons {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.25rem;
}

.card-icons i {
    font-size: 1.25rem;
    color: var(--gray-400);
}

.billing-address h3 {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    /* background: var(--gray-900); */
    background-color: #111111;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    PADDING-LEFT: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 10px;


}

.footer-section ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer .social-links a {
    background: var(--gray-800);
    color: var(--gray-400);
}

.footer .social-links a:hover {
    background: var(--primary);
    color: white;
}

.newsletter {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--gray-700);
    border-radius: var(--border-radius);
    background: var(--gray-800);
    color: white;
}

.newsletter input::placeholder {
    color: var(--gray-400);
}

.newsletter .btn {
    padding: 0.75rem 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    /* border-top: 1px solid var(--gray-800); */
    border-top: 1px solid #fff;
    color: var(--gray-400);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.scale-in {
    animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */

@media screen and (max-width:1600px) {
    .hero-content {
        margin-top: 4%;
    }
}


@media screen and (max-width:1366px) {
    .hero-content {
        margin-top: 7%;
    }

    .hero-text h1 {
        font-size: 52px;
    }

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

@media screen and (max-width:1200px) {

    .hero-content {
        margin-top: 9%;
    }

    .container.hero-content {
        padding-left: 50px;
        padding-right: 50px;
    }

}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;

    }

    .hero-content {
        margin-top: 18%;
    }

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

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

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

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

    .order-summary {
        position: static;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    /* .hero-subtitle {
        font-size: 1.125rem;
    } */

    .hero-buttons {
        /* flex-direction: column; */
        justify-content: center;
        align-items: center;
    }

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

    .hero-content {
        margin-top: 16%;
    }

    .featured-grid,
    .stats-grid,
    .mission-grid,
    .team-grid,
    .themes-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-login {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

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

    .pagination {
        flex-wrap: wrap;
    }

    .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
    }


    .themes-grid {
        display: block;
    }

    .nav-container,
    .container {
        width: 100%;
    }

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


    .themes-grid {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .modal {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .auth-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .filter-section .container {
        flex-direction: column;
    }

    .filter-controls {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .sort-controls {
        order: 1;
        width: 100%;
    }

    .sort-controls select {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .footer,
    .btn,
    .modal {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .page-header {
        background: white !important;
        color: black !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary: #0000ff;
        --secondary: #000080;
        --gray-600: #000000;
        --gray-700: #000000;
        --gray-800: #000000;
    }

    .btn-secondary {
        border: 2px solid black;
        color: black;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-shape {
        animation: none;
    }
}

/* Dark mode (for future implementation) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles would go here */
}









/* fdfdf............................................................................................................. */


/* Account Page Styles */
.account-section {
    padding: 3rem 0;
    background: white;
    min-height: 70vh;
}

.account-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.account-sidebar {
    background: var(--gray-50);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.user-profile {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.profile-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid var(--primary);
}

.change-avatar-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.profile-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.profile-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.user-status {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.account-nav ul {
    list-style: none;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 0.25rem;
}

.account-nav-link:hover,
.account-nav-link.active {
    background: var(--primary);
    color: white;
}

.account-nav-link i {
    width: 16px;
    text-align: center;
}

.logout-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.logout-link:hover {
    background: var(--error);
}

.account-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.account-tab {
    display: none;
}

.account-tab.active {
    display: block;
}

.tab-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.tab-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.tab-header p {
    color: var(--gray-600);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    /* background: var(--primary); */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.stat-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.recent-activity h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-details {
    flex: 1;
}

.activity-details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.activity-details p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.activity-amount {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.profile-form {
    max-width: 600px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.order-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.order-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.order-status.completed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.order-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.order-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.order-items {
    padding: 1.5rem;
}

.order-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.order-product:last-child {
    border-bottom: none;
}

.order-product img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.product-details {
    flex: 1;
}

.product-details h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.product-details p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

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

.download-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.download-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.download-info {
    padding: 1.5rem;
}

.download-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.download-info p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.download-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.download-actions {
    display: flex;
    gap: 0.5rem;
}

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

.favorite-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.favorite-image {
    position: relative;
}

.favorite-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.remove-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--error);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.remove-favorite:hover {
    background: var(--error);
    color: white;
}

.favorite-info {
    padding: 1.5rem;
}

.favorite-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.favorite-info p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.favorite-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.favorite-actions {
    display: flex;
    gap: 0.5rem;
}

.billing-section {
    margin-bottom: 3rem;
}

.billing-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
}

.card-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-info i {
    font-size: 2rem;
    color: var(--primary);
}

.card-details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.card-details p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.add-payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px dashed var(--gray-300);
    background: transparent;
    color: var(--gray-600);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.billing-address {
    margin-top: 2rem;
}

.address-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
}

.address-info h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.address-info p {
    color: var(--gray-600);
    line-height: 1.5;
}

.security-section {
    margin-bottom: 3rem;
}

.security-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.password-form {
    max-width: 400px;
}

.security-options {
    margin-top: 2rem;
}

.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.security-info h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.security-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: var(--transition);
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: var(--primary);
}

input:checked+.toggle-slider:before {
    transform: translateX(26px);
}

/* Theme Details Page Styles */
.theme-details-section {
    padding: 3rem 0;
    background: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--gray-600);
    text-decoration: none;
}

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

.breadcrumb i {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.breadcrumb span {
    color: var(--gray-800);
    font-weight: 500;
}

.theme-details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.theme-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.main-image:hover .image-overlay {
    opacity: 1;
}

.preview-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.preview-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.theme-info {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.theme-header {
    margin-bottom: 1.5rem;
}

.theme-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.theme-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.theme-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
}

.rating-text {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.theme-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 1.25rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.discount {
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.theme-description {
    margin-bottom: 1.5rem;
}

.theme-description p {
    color: var(--gray-600);
    line-height: 1.6;
}

.theme-features {
    margin-bottom: 2rem;
}

.theme-features h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.theme-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.theme-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.theme-features i {
    color: var(--success);
}

.theme-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
}

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

.favorite-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.theme-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.meta-item i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.theme-tabs-section {
    padding: 3rem 0;
    background: var(--gray-50);
}

.tabs-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary);
    background: white;
    border-bottom-color: var(--primary);
}

.tabs-content {
    padding: 2rem;
}

.tab-content {
    display: none;
}

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

.tab-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.tab-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--gray-800);
}

.tab-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tab-content ul {
    margin-bottom: 1.5rem;
}

.tab-content li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.included-files {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.file-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.changelog-item {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.version-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.version-date {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.changelog-item ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.changelog-item li {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.reviews-summary {
    margin-bottom: 2rem;
}

.rating-overview {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

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

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-count {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.rating-bar span:first-child {
    width: 60px;
    color: var(--gray-600);
}

.rating-bar span:last-child {
    width: 30px;
    text-align: right;
    color: var(--gray-600);
}

.bar {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #fbbf24;
    transition: var(--transition);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
}

.reviewer-details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.review-date {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.review-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.support-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    text-align: center;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.support-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.support-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.faq-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h5 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
}

.related-themes-section {
    padding: 3rem 0;
    background: white;
}

.related-themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsive Design for Account and Details Pages */
@media (max-width: 1024px) {
    .account-container {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }

    .theme-details-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .theme-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .account-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .account-sidebar {
        position: static;
    }

    .user-profile {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .account-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .account-nav-link {
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.875rem;
    }

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

    .tabs-nav {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: none;
        min-width: 120px;
    }

    .rating-overview {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .theme-actions {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .order-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .order-product {
        flex-direction: column;
        text-align: center;
    }

    .product-actions {
        justify-content: center;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
    }
}

/* __________________________________________________________________________________________________________________________ */


.home-product-content {
    display: flex;
}

.home-product-content .product-details {
    padding: 30px;
}

.home-product-content .product-details h2 {
    margin-bottom: 15px;
    font-size: 36px;
    color: #ec4944;
}

.home-product-content .product-details p {
    text-align: justify;
    line-height: 31px;
    font-size: 18px;
}

.product-details {
    flex: inherit !important;
}

.product-details button {
    margin-top: 50px
}

.product-details button {
    border: 1px solid #ec4944 !important;
    width: 80%;
    display: block;
}

.card-footer {
    display: block;
}

.card-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}


.card-footer button {
    /* border: 1px solid #ec4944 !important; */
    width: 100%;
    display: block;
    color: #fff;
    background-color: #ec4944 !important;
}

.card-footer button:hover {
    color: #fff !important
}

.card-footer .price {
    color: #ec4944
}

.featured-card:hover {
    background-color: #eeeeee;
    transition: 0.5s;
}

.card-content p {
    margin-bottom: 5px;
}

.stat-icon {
    font-size: 60px;
}

.card-overlay .btn {
    background-color: #ec4944 !important;
    color: #fff;
}

.stat-item:hover {
    transform: translateY(-5px);
    /* background: rgba(255, 255, 255, 0.2); */
    background-color: #f5f5f5 !important;

}

.category-card.cat-home h3 {
    color: #ec4944;
}

.category-card.cat-home:hover {
    background-color: #ec4944 !important;
    color: #fff;
    transition: 0.6s;

}

.category-card.cat-home:hover h3,
.category-card.cat-home:hover p {
    color: #fff
}

.contact-home {
    border: 1px solid #ec4944;
    color: #ec4944;
    font-size: 24px;
    border-radius: 16px;
}

.contact-home:hover {
    background-color: #ec4944;
    color: #fff;
    transition: 0.6s;
}

.badge {
    color: #fff;
}

.filter-btn:hover,
.filter-btn.active {

    color: #fff;
    background-color: #ec4944;
    border-color: #ec4944
}

.theme-prices .badge {
    float: left;
    color: #fff;
    font-size: 10px;
}


.add-to-cart-form {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.add-to-cart-form button {

    border: 1px solid #ec4944;
    color: #ec4944;
    font-size: 16px;
    border-radius: 12px;
    transition: 0.5s;
    background-color: transparent;
    outline: 0;
}

.add-to-cart-form button:hover {
    background-color: #ec4944;
    color: #fff;

}

/* Mobile Dropdown Fix - Proper Display */

@media (max-width: 768px) {

    .vendor-dropdown {

        position: relative;

    }

    .vendor-dropdown .dropdown-menu {

        position: static !important;

        display: none;

        width: 100%;

        margin: 0;

        padding: 0;

        box-shadow: none;

        border: none;

        background: transparent;

    }



    .vendor-dropdown.active .dropdown-menu {

        display: block;

    }



    .dropdown-item {

        padding: 12px 20px;

        display: block;

        color: #333;

        text-decoration: none;

        border-bottom: 1px solid #f0f0f0;

        background: #f8f9fa;

    }



    .dropdown-item:hover {

        background-color: #e9ecef;

    }

}

.theme-category {
    font-size: 16px;
}

.cart-icon span {
    padding: 5px 8px;
    text-align: center;
    width: 25px;
    height: 25px;
    font-size: 12px;

}

.cart-item {
    padding: 10px;
    align-items: center;
    text-align: center;
}

.cart-item-image {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #f1f1f1;
}

.cart-item-details .quantity {
    border: 0;
    outline: 0;
    text-align: center;
    background-color: #f5f5f5;
    height: 35px;
}

.remove-item {
    border-radius: 100%;
    padding: 7px 12px;
    background-color: #f5f5f5;
}

.remove-item:hover {

    background-color: #ec4944;
    color: #fff !important;
}

.cart-item-details {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

}

.theme-card {
    height: -webkit-fill-available;

}

/* Hover dropdown for Vendor Zone */
.vendor-dropdown {
    position: relative;
}

.vendor-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 180px;
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.vendor-dropdown:hover .dropdown-menu {
    display: block;
}

.vendor-dropdown .dropdown-item {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    display: block;
}

.vendor-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
}




.vendor-dropdown .dropdown-item:hover {

    background-color: #f5f5f5;

}

.vendor-login-card,
.vendor-send-otp-card {

    margin-top: 90px;

}

.vendor-login-header h1,
.vendor-send-otp-header h1 {

    font-size: 1.54rem !important;

    font-weight: 600;

}

.form-group input {
    padding: 0.5rem;
}

.input-icon {

    top: 13px !important
}

.vendor-login-card .form-group .password-toggle {
    top: 25px
}

.vendor-send-otp-header.vendor-send-otp-header {

    text-align: center;

    margin-bottom: 15px;

}

.auth-form-container .form-group .input-group input {
    padding-left: 45px;
}

.card-image,
.carousel-inner {
    background-color: #f1f1f1;
}

.btn {
    padding: 0.5rem 1rem !important;
}

@media (max-width: 320px) {
    .hero-subtitle {
        margin-bottom: 1rem;
    }

}

.nav-logo .nav-link:hover {
    text-decoration: none !important;
}

.section-header {
    margin-bottom: 0.5rem !important;
}

.theme-card .theme-image .theme-overlay a:hover {
    background-color: #0d6efd;
}