/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary: #0CD428;
    --secondary: #111111;
    --tertiary: #222222;
    --neutral: #F2F2F2;
    --surface: #FFFFFF;
    --on-surface: #0f1419;
    --success: #3AA63A;
    --error: #e0245e;

    /* Centralized Section Gapping */
    --section-gap-desktop: 60px;
    --section-gap-mobile: 60px;

    --primary-contrast: #111111;
    --border: #000000;

    /* Typography - Montserrat for Frontend */
    --font-primary: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --headline-display-size: 56px;
    --headline-display-lh: 67px;
    --headline-lg-size: 41px;
    --headline-lg-lh: 56px;
    --headline-md-size: 30px;
    --headline-md-lh: 36px;
    --headline-sm-size: 22px;
    --headline-sm-lh: 26px;
    --body-lg-size: 18px;
    --body-lg-lh: 27px;
    --body-md-size: 16px;
    --body-md-lh: 24px;
    --label-lg-size: 16px;
    --label-sm-size: 12px;

    /* Spacing */
    --spacing-xs: 6px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 82px;

    /* Rounded */
    --rounded-none: 0px;
    --rounded-sm: 4px;
    --rounded-md: 8px;
    --rounded-lg: 16px;
    --rounded-xl: 24px;
    --rounded-full: 9999px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--neutral);
    color: var(--on-surface);
    -webkit-font-smoothing: antialiased;
}

/* Global Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out;
}

.btn-primary {
    background-image: linear-gradient(to right, #0cd428, #e0f65a);
    color: var(--primary-contrast);
    font-size: var(--label-lg-size);
    border-radius: var(--rounded-full);
    padding: 16px 24px;
    height: 48px;
    box-sizing: border-box;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    color: var(--tertiary);
    font-size: var(--label-lg-size);
    border-radius: var(--rounded-full);
    padding: 16px 24px;
    height: 48px;
    border: 1px solid var(--border);
    box-sizing: border-box;
}

/* --- Header / Navbar --- */
.main-header {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.main-header>* {
    min-width: 0;
}

.header-logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 80%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-icons {
    display: none;
    align-items: center;
}

.header-icons svg {
    cursor: pointer;
    color: var(--on-surface);
}

/* --- Sections --- */

/* 1. Hero Video Section */
.hero-wrapper {
    background: var(--neutral);
    display: flex;
    justify-content: center;
}

.hero-section {
    position: relative;
    width: 100%;
    max-width: 720px;
    height: 1280px;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 38px;
    left: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 10;
}

.hero-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #FFF;
    margin: 0px 0px 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-controls {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 10;
}

.pause-play-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.pause-play-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--on-surface);
}

/* 2. Horizontal Carousel */
.section-container {
    padding: var(--spacing-xl) 0;
    background: var(--neutral);
}

.section-header {
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    font-size: var(--headline-sm-size);
    margin: 0;
}

.carousel-wrapper {
    display: flex;
    overflow-x: auto;
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-md);
    scrollbar-width: none;
    /* Firefox */
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.carousel-item {
    flex: 0 0 calc(80vw - var(--spacing-md));
    max-width: 300px;
    position: relative;
    border-radius: 120px;
    /* specific pill shape like Image 2 */
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #ccc;
}

.carousel-item.arch {
    border-radius: 120px 120px 0 0;
    /* arch shape if requested, but full pill for now */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon-overlay svg {
    width: 12px;
    height: 12px;
    fill: var(--primary-contrast);
}

/* 3. Mixed Grid Section */
.mixed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-md);
}

.grid-item {
    position: relative;
    border-radius: var(--rounded-md);
    overflow: hidden;
    background: var(--surface);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid-item.square {
    aspect-ratio: 1/1;
}

.grid-item.rectangle {
    aspect-ratio: 3/4;
}

.grid-item-content {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    color: #FFF;
}

.grid-item-content h3 {
    margin: 0;
    font-size: var(--body-lg-size);
    line-height: var(--body-lg-lh);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* 4. Blog Posts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-md);
}

.blog-card {
    background: transparent;
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--rounded-md);
    object-fit: cover;
    margin-bottom: var(--spacing-xs);
}

.blog-title {
    font-size: var(--body-md-size);
    line-height: var(--body-md-lh);
    font-weight: 600;
    margin: 0;
}

.blog-date-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    padding: 4px 8px;
    border-radius: var(--rounded-sm);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

/* Mobile first adjustments applied above, larger screens below */
@media (min-width: 768px) {
    .header-icons {
        display: none !important;
    }

    .carousel-item {
        flex: 0 0 250px;
    }

    .mixed-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Reels Modal --- */
.reels-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #000;
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
}

.reels-modal.active {
    display: flex;
}

.reels-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1010;
}

.reels-container {
    width: 100%;
    max-width: 720px;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}

.reels-container::-webkit-scrollbar {
    display: none;
}

.reel-item {
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
    background: #000;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 38px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 10;
}

.reel-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 10px 0;
}

.reel-actions {
    position: absolute;
    bottom: 38px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 20;
}

.reel-icon-btn {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-weight: bold;
    font-size: 9px;
    letter-spacing: 0.5px;
}

/* From index.php */
.section-container {
    display: none !important;
}

.desktop-carousel-wrapper {
    display: none;
}

.mobile-hero-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .mobile-hero-wrapper {
        display: none;
    }
}

@media (min-width: 1024px) {
    .desktop-hero-wrapper {
        display: block !important;
    }

    .reel-desktop-view {
        display: block !important;
    }

    .mobile-only-reels {
        display: none !important;
    }
}

.desktop-hero-wrapper {
    display: none;
}

.reel-desktop-view {
    display: none;
}

.nav-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.05);
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.wishlist-btn:hover {
    color: var(--primary) !important;
}

.show-more-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke: #000000;
}

.nav-arrow {
    position: absolute;
    top: calc(60px + 32.5vh);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.nav-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-arrow.prev {
    left: calc(50% - (65vh * 9 / 32) - 80px);
}

.nav-arrow.next {
    right: calc(50% - (65vh * 9 / 32) - 80px);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
    fill: #000;
}

.desktop-reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.desktop-reel-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.desktop-reel-card.inactive .desktop-reel-overlay {
    pointer-events: none;
}

/* From reel.php */
body.reels-page {
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
}

.reels-page-wrapper {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    background: #000;
}

.reels-container {
    width: 100%;
    max-width: 720px;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    position: relative;
}

.reels-container::-webkit-scrollbar {
    display: none;
}

.reels-close-btn {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1010;
    text-decoration: none;
    color: #000;
}

@media (min-width: 1024px) {
    body.reels-page {
        background: #f3f4f6;
    }

    .reels-page-wrapper {
        background: transparent;
        padding: 40px 0;
        box-sizing: border-box;
    }

    .reels-container {
        max-width: none;
        height: 100%;
        width: auto;
        aspect-ratio: 9/16;
        border-radius: 24px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        overflow-y: scroll;
    }

    .reel-item {
        border-radius: 24px;
        overflow: hidden;
    }
}

/* --- HOMEPAGE STATS BANNER --- */
.stats-banner-container {
    padding: 24px 20px;
    background: transparent;
    display: flex;
    justify-content: center;
}

.stats-banner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    width: 100%;
    max-width: 1200px;
    gap: 16px;
    box-shadow: none;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 59, 48, 0.2);
    background: rgba(255, 59, 48, 0.05);
}

.stat-icon-wrapper.trustpilot {
    border: 1px solid rgba(0, 200, 83, 0.2);
    background: rgba(0, 200, 83, 0.05);
}

.stat-icon.pink {
    color: #ff3b30;
}

.stat-text {
    display: flex;
    flex-direction: column;
    color: #000;
    font-family: var(--font-primary);
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

.middle-divider {
    margin: 0 16px;
}

@media (max-width: 768px) {
    .stats-banner-container {
        padding: 0px;
        margin: var(--section-gap-mobile) auto;
    }

    .stats-banner {
        flex-direction: column;
        padding: 0 20px;
        background: transparent;
        box-shadow: none;
        border: none;
        border-radius: 0;
        row-gap: 24px;
    }

    .stats-row {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .stat-item {
        flex: 1;
        margin-bottom: 0;
        align-items: flex-start;
    }

    .stat-text {
        flex: 1;
        word-break: break-word;
    }

    .stat-divider {
        display: none;
    }

    .stat-value {
        font-size: 17px;
    }
}

/* --- HOMEPAGE BLOGS SECTION --- */
.blogs-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .blogs-section {
        margin: 0 auto;
    }
}

.blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.blogs-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: #000;
}

@media (max-width: 768px) {
    .blogs-header h2 {
        font-size: 26px;
    }

    .blogs-header {
        margin-bottom: 30px;
    }
}

.explore-blogs-link {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.explore-blogs-link:hover {
    opacity: 0.7;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #e0e0e0;
}

.blog-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pages Card Specific */
.page-card-image-wrapper {
    margin-bottom: 0;
    /* Remove bottom margin since there's no text below */
}

.page-action-btn-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    background: transparent;
    transition: background 0.2s;
}

.page-card:hover .page-action-btn-wrapper {
    background: rgba(0, 0, 0, 0.2);
}

.pages-btn {
    background: linear-gradient(to right, #00ff00, #E0F65A);
    color: #000;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 700;
    font-family: var(--font-primary);
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

@media (max-width: 768px) {
    .pages-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

.page-card:hover .pages-btn {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}

.blog-date-day {
    font-size: 18px;
    margin-bottom: 2px;
}

.blog-date-month {
    font-size: 12px;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- PUBLIC BLOG PAGE --- */
.blog-page-container {
    max-width: 1100px;
    margin: 60px auto 100px auto;
    padding: 0 20px;
}

.blog-hero-title {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.05;
    margin: 0 0 24px 0;
    color: #000;
    max-width: 800px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: underline;
}

.blog-body-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
}

.blog-content-wrapper {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
}

.blog-content-wrapper p {
    margin-bottom: 1.5em;
}

.blog-content-wrapper img {
    max-width: 100%;
    border-radius: 8px;
    height: auto;
}

.blog-cover-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.blog-cover-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .blog-card-title {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .blog-body-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-cover-wrapper {
        order: -1;
        position: relative;
        top: 0;
        max-width: 400px;
    }

    .blog-hero-title {
        font-size: 36px;
    }
}

/* Mobile Products Sheet */
.mobile-products-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.1, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-products-sheet.open {
    transform: translateY(0);
}

.sheet-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sheet-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #000;
}

.sheet-content {
    padding: 24px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mobile-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mobile-product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    padding: 16px;
    box-sizing: border-box;
}

.mobile-product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-product-img-wrapper .wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    outline: none;
}

.mobile-product-info {
    padding: 12px;
}

.mobile-product-info h4 {
    margin: 0;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* --- Global Page Styles --- */
.page-container {
    max-width: 1200px;
    margin: 40px auto 30px auto;
    padding: 0 20px;
    font-family: var(--font-primary), sans-serif;
}

.page-container-sm {
    max-width: 900px;
    margin: 60px auto 30px auto;
    padding: 0 24px;
    font-family: var(--font-primary), sans-serif;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    color: #000;
    letter-spacing: -1px;
    text-align: left;
    line-height: 1;
}

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.page-content-center {
    text-align: center;
    color: #333;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #000;
}

.page-content p {
    margin-bottom: 24px;
}

.breadcrumbs {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #666;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-align: left;
}

.breadcrumbs a {
    text-decoration: none;
    color: #666;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #000;
}

.grid-container {
    display: grid;
    gap: 24px;
}

.grid-cols-auto {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.grid-cols-wide {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* --- Bootsempire Studio Styles --- */
.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.studio-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    transition: transform 0.2s;
}

.studio-card:hover {
    transform: translateY(-4px);
}

.studio-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.studio-modal {
    display: none;
    position: fixed;
    top: var(--header-height, 75px);
    left: 0;
    width: 100%;
    height: calc(100% - var(--header-height, 75px));
    padding: 0 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.studio-modal-content {
    position: relative;
    max-height: calc(100% - 60px);
    max-width: 90vw;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 12px;
    overflow-y: auto;
}

.studio-modal video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.studio-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
}

@media (max-width: 768px) {
    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .studio-play-btn {
        width: 40px;
        height: 40px;
    }

    .studio-play-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* --- Feedbacks Styles --- */
.add-review-btn {
    background: #4662c5;
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.add-review-btn:hover {
    opacity: 0.8;
}

.feedback-card {
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: none;
    align-self: start;
}

.feedback-card:hover {
    transform: none;
    box-shadow: none;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #666;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.reviewer-name {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.reviewer-meta {
    font-size: 12px;
    color: #888;
}

.rating-stars {
    color: #FFB800;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.feedback-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.feedback-content {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    flex-grow: 1;
}

.share-btn {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    align-self: flex-start;
    margin-top: 20px;
}

.share-btn:hover {
    border-color: #000;
    color: #000;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.page-link:hover {
    border-color: #000;
}

.page-link.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.review-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* --- Blogs Styles --- */
.load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.load-more-btn {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
}

.load-more-btn:hover {
    background: #000;
    color: #fff;
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.page-header .page-title {
    margin-bottom: 0;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* --- Ticker Styles --- */
@font-face {
    font-family: "Zing Rust Demo Base";
    src: url("https://framerusercontent.com/assets/k4MlYkPvaCyNSNadZpDgmQScg2w.woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

.ticker-wrap {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #3AA63A;
    color: #fff;
    padding: 0px;
    align-items: center;
}

.ticker-content {
    display: flex;
    flex-shrink: 0;
    min-width: 100%;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
    animation: ticker-slide 20s linear infinite;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-text {
    font-family: "Zing Rust Demo Base", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    text-transform: uppercase;
}

.ticker-svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .ticker-text .text-desktop {
        display: none;
    }

    .ticker-text .text-mobile {
        display: inline;
    }
}

@media (min-width: 769px) {
    .ticker-text .text-desktop {
        display: inline;
    }

    .ticker-text .text-mobile {
        display: none;
    }
}

/* Feedback UI Updates */
.reviewer-avatar {
    background: #00b67a !important;
    color: #fff !important;
}

.feedback-text-content {
    font-size: 15px;
    color: #111;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.see-more-btn {
    background: none;
    border: none;
    color: #314bbd;
    cursor: pointer;
    font-size: 15px;
    padding: 0;
    font-family: inherit;
}

.see-more-btn:hover {
    text-decoration: underline;
}

/* Reply UI */
.inline-reply {
    position: relative;
    padding-left: 16px;
    margin-top: 6px;
    margin-bottom: 16px;
}

.reply-branch {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eee;
}

.reply-branch::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    width: 12px;
    height: 2px;
    background: #eee;
    border-radius: 0 0 0 8px;
}

.reply-content {
    margin-left: 12px;
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.reply-avatar {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: contain;
}

.reply-author {
    font-weight: 600;
    font-size: 14px;
    color: #111;
}

.reply-date {
    font-size: 13px;
    color: #666;
}

.reply-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.desktop-reply-indicator {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #888;
    cursor: pointer;
    margin-bottom: 8px;
}

.desktop-reply-indicator:hover {
    text-decoration: underline;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
}

.action-btn:hover {
    color: #000;
}

/* Desktop vs Mobile */
@media (min-width: 769px) {
    .feedbacks-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 80px;
        row-gap: 0px;
    }

    .feedback-text-content {
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .feedbacks-grid {
        row-gap: 30px;
    }

    .feedback-text-content {
        -webkit-line-clamp: unset;
        line-clamp: unset;
        display: block;
    }

    .desktop-only {
        display: none !important;
    }

    .inline-reply.mobile-only {
        display: block !important;
    }
}

/* Custom Pagination Buttons */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.page-btn {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.page-btn.prev-btn {
    border: 1px solid #d9d9d9;
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #a0a0a0;
}

.page-btn.prev-btn:not(.disabled) {
    color: #333;
}

.page-btn.prev-btn:not(.disabled):hover {
    background: #f4f4f4;
}

.page-btn.next-btn {
    border: 1px solid #1a56db;
    border-radius: 0 4px 4px 0;
    color: #1a56db;
}

.page-btn.next-btn:not(.disabled):hover {
    background: #f0f5ff;
}

.page-btn.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* AI Topics Section */
.topics-section {
    margin-top: 30px;
    margin-bottom: 40px;
}

.topics-title {
    font-size: 20px;
    font-weight: 600;
    color: #191919;
    margin-bottom: 16px;
}

.topics-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
    flex-wrap: nowrap;
}

.topics-container::-webkit-scrollbar {
    display: none;
}

.topic-card {
    min-width: 280px;
    width: 320px;
    background: linear-gradient(180deg, #f8f6ff 0%, #ffffff 100%);
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    flex-shrink: 0;
    transition: box-shadow 0.2s;
}

@media (min-width: 769px) {
    .topics-container {
        flex-wrap: wrap;
        width: fit-content;
        overflow-x: visible;
    }

    .topic-card {
        width: auto;
        flex: 1 1 300px;
        max-width: 350px;
    }
}

.topic-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.topic-title {
    font-size: 18px;
    font-weight: 600;
    color: #6c43c4;
    margin: 0 0 12px 0;
}

.topic-text {
    font-size: 15px;
    line-height: 1.5;
    color: #191919;
    margin: 0;
}

.topic-see-more {
    color: #2b56d3;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .topic-card {
        min-width: unset;
        width: 70%;
    }

    .topic-text {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}