/* Base styles */
:root {
    --background: #fff;
    --foreground: #111;
    --card: #fff;
    --card-foreground: #111;
    --primary: #550000;
    --primary-foreground: #fff;
    --secondary: #B57434;
    --secondary-foreground: #fff;
    --muted: #FEFAF7;
    --muted-foreground: #7A869A;
    --accent: #43500C;
    --accent-foreground: #333;
    --border: #E9ECF1;
    --input: #E9ECF1;
    --radius: 16px;
    --font-playfair: 'Playfair Display', serif;
    --font-inter: 'Inter', sans-serif;
}

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

}

body {
    font-family: var(--font-inter);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-playfair);
}

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

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

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.navbar.hide {
    transform: translateY(-100%);
}

.navbar.show {
    transform: translateY(0);
}

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

.navbar-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.navbar-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.navbar-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;

}

.social-icon {
    color: var(--foreground);
    transition: color 0.3s;
    margin-top: auto;
}

.social-icon img:hover {
    border: 1px dotted var(--secondary);
    border-radius: 10%;
}

.social-icon img {
    width: 20px;
    height: 20px;
    margin-top: 30%;
}

.navbar-brand {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-brand:hover {
    color: var(--secondary);
}

.app-button {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
    width: fit-content;
}

.app-button:hover {
    background-color: #fadbc9;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Navbar Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.navbar-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--foreground);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navbar-nav.show {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 0;
    }

    .navbar-right .social-icons {
        display: none;
    }

    .navbar-nav.show .social-icons {
        display: flex;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
        width: 100%;
        justify-content: center;
    }

    .navbar-left {
        min-width: 180px;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background-color: var(--secondary);
    z-index: -1;
    opacity: 0.5;
}

.hero-subtitle {
    color: var(--muted-foreground);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Buttons */
.primary-button {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
}

.primary-button:hover {
    background-color: #fadbc9;
}

.secondary-button {
    background-color: var(--background);
    color: var(--foreground);
    border: 2px solid var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.secondary-button:hover {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Carousel */
.carousel-container {
    margin: 2rem auto;
    max-width: 1000px;
    width: 100%;
}

.carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: var(--radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot:hover {
    background-color: var(--secondary);
}

.carousel-dot.active {
    background-color: var(--primary);
    transform: scale(1.1);
}

/* Featured Posts */
.featured-posts {
    padding: 4rem 0;
    background-color: rgba(242, 234, 255, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.videos-grid,
.posts-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Video Cards */
.video-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.video-card:hover {
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.video-card .card-header {
    position: relative;
}

.video-card .image-container {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.video-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.video-card .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    cursor: pointer;
}

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

.video-card .play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-card .play-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 15px solid #333;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.video-card .video-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover .video-badge {
    transform: scale(1.1);
}

.video-card .card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.video-card .card-content .category-tag {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: capitalize;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.video-card .card-content .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--foreground);
}

.video-card .card-content .post-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* Post Cards */
.post-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
}

.post-card .card-header {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.post-card .card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.card-content .category-tag {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: capitalize;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.card-content .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--foreground);
}

.card-content .post-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.post-card .post-excerpt {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin: 0;
}

.category-tag {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: capitalize;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.card-title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.card-excerpt {
    font-size: 1rem;
    color: var(--muted-foreground);
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-image img {
    border-radius: var(--radius);
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* App Promo */
.app-promo {
    padding: 4rem 0;
    background-color: rgba(242, 234, 255, 0.2);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.app-image {
    position: relative;
    order: 1;
    width: 70%;
    height: 100%;
    min-height: 600px;
    margin-left: 20%;
}

.app-image img {
    border-radius: var(--radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 220px;
    height: 440px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
}

.phone-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-content {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 2rem;
}

.app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.app-ratings {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .app-promo {
        min-height: auto;
        padding: 2rem 0;
    }

    .app-grid {
        grid-template-columns: 1fr;
        gap: 2rem;

    }

    .app-image {
        min-height: 400px;
        order: 1;
        margin-top: 20%;
        margin-bottom: 20%;
    }

    .app-content {
        order: 2;
        padding-left: 0;
    }

    .phone-overlay {
        width: 180px;
        height: 360px;
    }
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background-color: var(--muted);
}

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

.newsletter-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 3/4;
    order: 1;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.newsletter-content {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background-color: var(--background);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary);
}

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

    .newsletter-image {
        aspect-ratio: 16/9;
        order: 1;
    }

    .newsletter-content {
        order: 2;
    }
}

/* Photo Grid Section */
.photo-grid-section {
    padding: 4rem 0;
}

.photo-grid-section .container {
    max-width: 1600px;
    padding: 0 2rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1/1;
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    font-family: var(--font-inter);
    font-size: 1rem;
    background-color: var(--background);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* About Page */
.about-hero {
    padding: 4rem 0;
}

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

.about-hero-image img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.social-link {
    color: var(--foreground);
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--secondary-foreground);
}

.rounded-image {
    border-radius: var(--radius);
}

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

.about-story {
    padding: 4rem 0;
    background-color: rgba(242, 234, 255, 0.2);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.philosophy-section {
    padding: 4rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.philosophy-card {
    background-color: var(--muted);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.philosophy-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-app-section {
    padding: 4rem 0;
    background-color: rgba(242, 234, 255, 0.2);
}

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

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

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

.contact-info {
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
}

/* Shop Page */
.shop-header {
    text-align: center;
    padding: 4rem 0 2rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-tab {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
}

.category-tab:hover {
    background-color: var(--primary);
}

.category-tab.active {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.products-grid,
.products-grid-recommendation {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card .product-image {
    cursor: pointer;
}

.product-card .product-image img {
    transition: transform 0.3s ease;
}

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

.product-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-category {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--foreground);
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

/* App Page */
.app-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background-color: rgba(242, 234, 255, 0.2);
}

.app-hero-grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: center;
    height: 70vh;
}

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

.app-hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-device-mockup {
    position: relative;
    height: 80%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-main-screen {
    width: 75%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-floating-screen {
    position: absolute;
    width: 70%;
    height: 100%;
    border-radius: 20px;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    overflow: hidden;
    background-color: white;
}
.app-floating-screen > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    
}
.app-features-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: rgba(242, 234, 255, 0.2);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.feature-icon.large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    margin-bottom: 1rem;
}

.testimonials-section {
    padding: 4rem 0;
    background-color: var(--muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #FFD700;
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 700;
}

.pricing-section {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-width: 300px;
    max-width: 390px;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    position: relative;
    border: 2px solid #B57434;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #B57434;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-tier {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-period {
    font-size: 1rem;
    font-weight: normal;
}

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

.pricing-feature {
    margin-bottom: 0.75rem;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    gap: 0.5rem;
}

.check-icon {
    color: green;
}

/* Footer */
.footer {
    background-color: var(--muted);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.footer-brand p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icon {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-social .social-icon:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

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

    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

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

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

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

/* Responsive Design */
@media (min-width: 768px) {

    .videos-grid,
    .posts-grid,
    .products-grid,
    .products-grid-recommendation {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .about-image {
        order: -1;
    }

    .about-content {
        order: 1;
    }

    .about-hero-grid,
    .story-grid,
    .about-app-grid,
    .contact-grid,
    .app-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-grid,
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        margin-right: 1rem;
        margin-bottom: 0;
        flex: 1;
    }

    .pricing-grid {
        flex-direction: row;
    }

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

    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .app-image {
        order: 2;
    }

    .app-content {
        order: 1;
    }
}

@media (max-width: 767px) {
    .navbar-nav {
        display: none;
    }

    .navbar-nav.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 99;
    }

    .nav-item {
        margin: 0.5rem 1rem;
    }

    .navbar-toggle {
        display: flex;
    }

    .social-icons {
        display: none;
    }

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

    .app-image {
        order: 1;
    }

    .app-content {
        order: 2;
    }
}

.app-ratings {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

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

.about-content .primary-button {
    width: fit-content;
    margin: 0 auto;
}

.app-image {
    position: relative;
}

.phone-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 360px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
}

.phone-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add padding to main content to account for fixed navbar */
main {
    padding-top: 80px;
    margin-top: 8rem;
}

.video-card .image-container,
.post-card .card-header {
    cursor: pointer;
}

.video-card .image-container img,
.post-card .card-header img {
    transition: transform 0.3s ease;
}

.video-card:hover .image-container img,
.post-card:hover .card-header img {
    transform: scale(1.05);
}

.navbar-center .social-icons {
    display: none;
}

@media (max-width: 767px) {
    .navbar-center .social-icons {
        display: flex;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
        width: 100%;
        justify-content: center;
    }

    .navbar-right .social-icons {
        display: none;
    }
}

/* Container spacing */
.container {
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section spacing */
section {
    margin-bottom: 3rem;
}

/* Page title spacing */
.page-title {
    margin-bottom: 1.5rem;
}

/* Page text spacing */
.page-text {
    margin-bottom: 1rem;
}

/* Blog Post Cards */
.blog-posts {
    padding: 4rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

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


.blog-post-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
}

.post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.post-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.post-content .category-tag {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: capitalize;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.post-content .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--foreground);
}

.post-content .post-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* Featured Post */
.featured-post {
    padding: 4rem 0;
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-post-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
}

.featured-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.featured-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.featured-content .category-tag {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: capitalize;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.featured-content .featured-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--foreground);
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Video Card Styles */
.video-card .post-image {
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Terms Section Styles */
.terms-section.full-height {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.terms-content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.terms-section h2,
.privacy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.terms-section h3,
.privacy-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.terms-section p,
.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-section ul,
.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section li,
.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .terms-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .terms-section h2,
    .privacy-section h2 {
        font-size: 2rem;
    }

    .terms-section h3,
    .privacy-section h3 {
        font-size: 1.25rem;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--foreground);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: default;
}

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

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

.pagination-number {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.pagination-number:hover:not(.active) {
    background-color: var(--muted);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
    }

    .pagination-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Blog Post Page */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

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

.blog-meta {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.blog-date {
    margin-right: 1rem;
}

.blog-featured-image {
    margin-bottom: 2rem;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.blog-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content ul li {
    margin-bottom: 0.5rem;
}

.blog-quote {
    border-left: 4px solid var(--secondary);
    padding: 1rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    background-color: rgba(253, 227, 216, 0.1);
}

.blog-image {
    margin: 2rem 0;
}

.image-caption {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.affiliate-products {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--muted);
    border-radius: var(--radius);
    text-align: center;
}

.affiliate-products h3 {
    margin-bottom: 0.5rem;
}

.affiliate-products>p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.affiliate-item {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.affiliate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
}

.affiliate-link {
    text-decoration: none;
    color: var(--foreground);
    display: block;
}

.affiliate-image {
    height: 200px;
    overflow: hidden;
}

.affiliate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.affiliate-content {
    padding: 1.5rem;
}

.affiliate-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.affiliate-price {
    font-weight: 700;
    color: var(--secondary-foreground);
}

.blog-author-bio {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: var(--muted);
    border-radius: var(--radius);
}

.author-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

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

.author-content h4 {
    margin-bottom: 0.5rem;
}

.author-content p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.blog-nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s;
}

.blog-nav-link:hover {
    color: var(--secondary-foreground);
}

/* Product Detail Page */
.product-breadcrumb {
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.product-breadcrumb a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

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

.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-images {
    display: flex;
    flex-direction: column;
}

.product-main-image {
    margin-bottom: 1rem;
}

.product-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.product-thumbnail {
    border: 2px solid transparent;
    border-radius: calc(var(--radius) - 4px);
    cursor: pointer;
    overflow: hidden;
}

.product-thumbnail.active {
    border-color: var(--secondary);
}

.product-thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.product-rating {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.star {
    color: #FFD700;
    margin-right: 2px;
}

.rating-count {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.product-description h3 {
    margin: 1.5rem 0 0.5rem;
}

.product-description ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-description li {
    margin-bottom: 0.5rem;
}

.product-variants {
    margin-bottom: 1.5rem;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.variant-option {
    background: none;
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.variant-option:hover {
    background-color: var(--muted);
}

.variant-option.active {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.product-quantity {
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    background-color: var(--muted);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 4px;
}

.quantity-selector input {
    width: 50px;
    height: 32px;
    text-align: center;
    margin: 0 0.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.secondary-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
}

.secondary-button:hover {
    background-color: #e5deff;
}

.product-payment-info {
    margin-bottom: 1.5rem;
}

.product-payment-info p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.payment-method {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: var(--muted);
    border-radius: 4px;
    font-size: 0.8rem;
}

.product-checkout-placeholder {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    background-color: var(--muted);
}

.payment-form-placeholder {
    text-align: center;
    padding: 2rem 0;
}

.payment-placeholder-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.product-tabs {
    margin-bottom: 4rem;
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    color: var(--muted-foreground);
}

.tab-button:hover {
    color: var(--foreground);
}

.tab-button.active {
    color: var(--foreground);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary);
}

.tab-content {
    display: none;
    padding: 1rem 0;
}

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

.tab-content h3 {
    margin-bottom: 1rem;
}

.review-summary {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

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

.average-rating {
    font-size: 2rem;
    font-weight: 700;
}

.total-reviews {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

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

.review-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    font-weight: 500;
}

.review-date {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.review-title {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.related-products {
    margin-bottom: 4rem;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Responsive Design for Blog and Product Pages */
@media (min-width: 768px) {
    .affiliate-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr 1fr;
    }
}


.app-demo-mockup-section{
    min-height: 55vh;
    background-color: rgba(242, 234, 255, 0.2);
}
.app-demo-mockup-container{
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    height: 70vh;
}
.app-demo-mockup-images {

    
 }
  
  .app-demo-mockup-video {
    width: 15vw;
    height: 55vh;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    object-fit: contain;
  }
  

.app-demo-mockup-features{
    padding: 5vw
}
