/* ======================================================
   Imports
   (kept as you had them)
====================================================== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('../../css/_custom.css');

@font-face {
    font-family: 'Ivy Journal';
    src: url('../fonts/IvyJournal-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ivy Journal';
    src: url('../fonts/IvyJournal-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ======================================================
   :root variables (kept original names & values)
====================================================== */
:root {
    /* Brand Palette */
    --clr-accent: #ff3131;
    --clr-bg: #F2EFDA;
    --clr-bg-light: #FFFDF0;
    --clr-dark: #0C0203;
    --clr-gray: #484848;
    --clr-light: #3D0f12;
    --clr-muted: #555;
    --clr-primary: #007bff;
    --clr-text: #222;
    --clr-border: #e0e0e0;

    /* Gradients */
    --gradient-light: linear-gradient(135deg, #fff6f6, #fffef2);
    --gradient-primary: linear-gradient(135deg, #ff4747, #ff3131);

    /* Typography */
    --font-base: 'Arimo', system-ui, sans-serif;
    --fs-xs: 13px;
    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-lg: 18px;
    --fs-xl: 22px;
    --fw-bold: 700;
    --fw-medium: 500;
    --fw-normal: 400;

    /* Effects */
    --radius-md: 10px;
    --radius-sm: 6px;
    --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* ======================================================
   Dark mode (prefers-color-scheme)
====================================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --clr-bg: #121212;
        --clr-bg-light: #1f1f1f;
        --clr-text: #f1f1f1;
        --clr-muted: #ccc;
        --clr-border: #333;
    }
}

/* ======================================================
   Global reset & base
====================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
}
.text-theme-light{
    color: var(--clr-light);
}
body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-base);
    font-size: var(--fs-md);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Sticky Search Bar */
.sticky-search-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #100405;
    padding: 12px 60px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}
.sticky-search-bar.active {
    visibility: visible;
}
.sticky-search-form {
    max-width: 1140px;
    margin: 0 auto;
}
.sticky-search-bar .search-box {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 4px;
}
.sticky-search-bar .search-box input {
    width: 100%;
    padding: 8px 55px 8px 42px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    background: transparent;
}
.sticky-search-bar .search-box input:focus {
    outline: none;
}
.sticky-search-bar .search-box .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
.sticky-search-bar .search-box .search-btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.sticky-search-bar .search-box .search-btn:hover {
    background: linear-gradient(90deg, #ff4545 0%, #ff7a7a 100%);
    transform: translateY(-50%) scale(1.02);
}
.sticky-search-bar .search-box .search-btn svg {
    color: #fff;
    stroke: #fff;
}
@media screen and (max-width: 768px) {
    .sticky-search-bar {
        padding: 12px 16px;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .sticky-search-bar .search-box {
        padding: 4px;
        margin: 0;
    }
    .sticky-search-bar .search-box input {
        padding: 10px 48px 10px 40px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
    .sticky-search-bar .search-box .search-icon {
        left: 16px;
    }
    .sticky-search-bar .search-box .search-btn {
        right: 6px;
        width: 36px;
        height: 36px;
    }
}

/* Reusable utilities */
.u-transition {
    transition: var(--transition);
}

.u-shadow-sm {
    box-shadow: var(--shadow-sm);
}

.u-shadow-md {
    box-shadow: var(--shadow-md);
}

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

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

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

.hidden {
    display: none !important;
}

/* ======================================================
   Buttons (consolidated)
====================================================== */
.btn {
    font-size: 22px;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    line-height: 1;
    background: transparent;
    color: #ffffff;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Accent / Danger */
.btn-danger,
.btn-primary {
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 20px 60px !important;
}

.btn-danger:hover,
.btn-primary:hover {
    background: linear-gradient(90deg, #ff4545 0%, #ff7a7a 100%);
}

/* Outlines */
.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-dark {
    border: 1px solid #4a1f1f;
    color: #4a1f1f;
    background: transparent;
}

.btn-outline-dark:hover {
    background-color: #4a1f1f;
    color: #fff;
}

/* See-all / pill button */
.btn-see-all {
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    color: #fff;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 500;
    border: none;
}

/* ======================================================
   Navbar
====================================================== */
.navbar {
    background-color: #FFFDF0;
    box-shadow: var(--shadow-sm);
    min-height: 100px;
    transition: var(--transition);
}

.nav-text {
    color: #000000;
}

/* brand */
.navbar-brand img {
    width: 100px;
    transition: transform .3s ease;
}

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

/* nav links */
.navbar-nav .nav-link {
    color: #2c2c2c;
    font-family: 'Arimo', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-left: 28px;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link strong {
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #dc3545;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc3545;
    transition: width 0.3s ease;
}

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

.dropdown-icon {
    color: #FF3131;
}

/* login button */

#login-btn {
    padding: 10px 32px;
    margin-left: 16px;
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

#login-btn:hover {
    background: linear-gradient(90deg, #ff4545 0%, #ff7a7a 100%);
    color: #fff;
}

/* Avatar spacing */
.navbar .dropdown {
    margin-left: 8px;
    margin-right: 10px;
}

/* ======================================================
   Search area
====================================================== */
.search-area {
    background: #34111B;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    min-height: 80px;
}

.search-area .search-content {
    min-height: 50px;
}

/* Search box page style with arrow button */
.search-box-page {
    position: relative;
    max-width: 700px;
    background: #fff;
    border-radius: 12px;
    padding: 4px;
}

.search-box-page .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
}

.search-box-page input {
    width: 100%;
    padding: 12px 55px 12px 45px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    background: transparent;
    outline: none;
}

.search-box-page .search-btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.search-box-page .search-btn:hover {
    background: linear-gradient(90deg, #ff4545 0%, #ff7a7a 100%);
    transform: translateY(-50%) scale(1.02);
}

.search-box-page .search-btn svg {
    color: #fff;
    stroke: #fff;
}

.search-box {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
}

.search-box input {
    width: 100%;
    padding: 14px 55px 14px 45px;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--fs-md);
    outline: none;
    background-color: #fff;
    color: var(--clr-text);
}

.search-box input::placeholder {
    color: #aaa;
}

.search-box .search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

.search-box .search-btn:hover {
    background: linear-gradient(90deg, #ff4545 0%, #ff7a7a 100%);
}

.search-box .search-btn svg {
    width: 18px;
    height: 18px;
    color: #fff;
    stroke: #fff;
}

#popular-search {
    margin-top: .5rem;
}

#popular-search a {
    color: #ddd;
    margin: 0 4px;
    transition: var(--transition);
}

#popular-search a:hover {
    color: #fff;
}

/* ======================================================
   Homepage
====================================================== */
.home-title {
    font-weight: 400;
    font-size: 84px;
    text-align: center;
    color: #fff;
}


/* ======================================================
   Tags & Keywords
====================================================== */
#keywords-title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
    color: var(--clr-light) !important;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags a {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-light);
    color: var(--clr-light);
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: var(--transition);
}

.tags a:hover {
    background: var(--clr-light);
    color: #fff;
}


/* ======================================================
   Gallery (column layout preserved, responsive)
====================================================== */
/* .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    height: 220px;
    width: auto;
    object-fit: cover;
    flex-grow: 1;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
} */

/* responsive gallery columns (grouped) */
@media (max-width:1400px) {
    /* .gallery {
        columns: 5;
    } */
}

@media (max-width:1200px) {
    /* .gallery {
        columns: 4;
    } */
}

@media (max-width:992px) {
    /* .gallery {
        columns: 3;
    } */
}

@media (max-width:768px) {
    /* .gallery {
        columns: 2;
    } */
}

@media (max-width:480px) {
    /* .gallery {
        columns: 1;
    } */
}

/* ======================================================
   Footer
====================================================== */
.site-footer {
    background-color: #120304;
    color: #e0e0e0;
    padding: 80px 0 0;
    font-family: 'Arimo', system-ui, sans-serif;
}

.footer-main {
    padding-bottom: 50px;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-brand-col {
    padding-right: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.7;
    color: #999;
    margin: 0;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Arimo', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 0;
}

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 16px;
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

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

.footer-social-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.footer-social-link i {
    font-size: 16px;
}

.footer-lang {
    margin-top: 24px;
}

.footer-lang .btn-outline-light {
    font-size: 13px;
    padding: 8px 16px;
    border-color: #444;
    color: #999;
}

.footer-lang .btn-outline-light:hover {
    background-color: #333;
    border-color: #555;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 24px 0;
}

.footer-bottom .copyright {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Legacy support */
footer,
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.bg-dark-2 {
    background-color: #1a1a1a !important;
}

.bg-dark-3 {
    background-color: #111 !important;
}

@media (max-width: 991px) {
    .site-footer {
        padding: 60px 0 0;
    }

    .footer-brand-col {
        padding-right: 15px;
        margin-bottom: 50px;
    }

    .footer-col {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        text-align: left;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

/* ======================================================
   Premium page sections (HERO, STOCK, TITLES)
   Combine repeated typography into grouped selectors
====================================================== */

/* Shared serif/display titles */
.display-serif {
    color: var(--clr-light);
    line-height: 1.2;
}

/* hero-section & hero variants */
.hero-section,
.client-hero-section {
    min-height: 80vh;
    position: relative;
    color: #fff;
}

.hero-section::before,
.client-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-section::before {
    background: rgba(0, 0, 0, 0.55);
}

.hero-section .container,
.client-hero-section .container {
    position: relative;
    z-index: 2;
}

.custom-pt-6 {
    padding-top: 8rem;
}

.hero-title,
.stock-title,
.stock-description,
.collection-sub-title,
.collection-title,
.client-hero-section .hero-title,
.text-content h2,
.curation-section h2,
.comparison-section h2,
.faq-section h2,
.conceptually-similar h3,
.visually-similar h3 {
/* Grouped display styles */
}

/* Background gradient */
.background-gradient {
    background: linear-gradient(to bottom, #F2EFDA, #FFFFFF);
}

/* specific sizes */
.hero-title {
    font-size: 64px;
    text-align: center;
    color: #fff;
}

.stock-title,
.collection-title {
    font-weight: 400;
    font-size: 63px;
    line-height: 1.4;
    color: #3D0F12;
}

.stock-description,
.collection-description {
    font-weight: 400;
    font-size: 20px;
    color: #797979;
}

.stock-section {
    background-color: #F2EFDA;
    padding-top: 62px !important;
}
.stock-section .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
}

/* client hero custom */
.client-hero-section {
    background: url('/assets/images/img/mission-hero.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
    position: relative;
}

.client-hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
}

.client-badge {
    background-color: var(--clr-light);
    color: #fff;
    width: 200px;
    padding: 16px 25px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .3px;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.client-badge.contributor {
    min-width: 240px;
}
.client-badge>.icon {
    background-color: var(--clr-bg-light);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin: 0 20px 0 -10px;
}

.icon-black {
    filter: brightness(0) saturate(100%); !important;
}

.client-badge img {
    margin-top: 5px;
    transform: scale(2.5);
}

.client-subtitle {
    font-size: 18px;
    color: #f1f1f1;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.client-badge {
    background-color: var(--clr-light);
    color: #fff;
    min-width: 200px;
    padding: 16px 35px 16px 100px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .3px;
    margin: 30px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    white-space: nowrap;
}

.badge-text {
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
}

.client-icon {
    position: absolute;
    left: 6px;
    background-color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-icon img {
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
    top: 5px;
}

.hero-subtitle {
    font-weight: 400;
    font-size: 24px;
    color: #f1f1f1;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* partner logos */
.partner-logos-container {
    width: 100%;
    background-color: rgba(61, 15, 18, 0.02);
    backdrop-filter: blur(4px);
    padding: 40px 20px;
}

.partner-logos {
    max-width: 1200px;
    margin: 0 auto;
    gap: 70px !important;
}

.partner-logos img {
    height: auto;
    width: auto;
    max-height: 70px;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

.partner-logos img:hover {
    opacity: 1;
    transform: scale(1.15);
}

.client-title {
    font-weight: 400;
    font-size: 84px;
    color: #ffffff;
}

.client-title p {
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
}

/* responsive hero adjustments */
@media (max-width:768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .partner-logos img {
        max-height: 35px;
    }
}

/* ======================================================
   Curated & Collections
====================================================== */
.curated-section {
    background-color: #FFFDF0;
    color: #3D0F12;
}
.curated-section > .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
}
.curated-section .section-header {
    align-items: flex-end !important;
}
.curated-section .collection-description {
    margin-bottom: 35px !important;
}
.curated-section .section-header .btn-danger {
    margin-bottom: 35px;
}
.curated-section .collection-sub-title {
    text-align: left;
    color: #591C20 !important;
    justify-content: flex-start;
}
.curated-section .collection-assets-count,
.collection-assets-count {
    text-align: left;
    color: #706C6C;
    font-size: 17px;
    margin-top: -5px;
    margin-bottom: 40px;
}
/* Collection card hover */
.curated-section .collection-card {
    border-radius: 8px;
}
.curated-section a:hover .collection-sub-title {
    color: #E43A3A !important;
}
/* Collections page specific styles */
.curated-section.collections-page {
    background-color: #FFFDF0;
    padding-top: 100px !important;
}
.curated-section.collections-page .collection-title {
    color: #3D0F12;
    font-family: 'Ivy Journal', serif;
    font-size: 54px;
}
.curated-section.collections-page .collection-description {
    color: #706C6C;
}
.curated-section.collections-page .collection-grid {
    height: 240px;
}
.curated-section.collections-page .collection-sub-title {
    color: #3D0F12;
    font-size: 18px;
    font-weight: 600;
}
.curated-section.collections-page .collection-assets-count {
    color: #888;
    font-size: 14px;
}
/* Curated section mobile fix */
@media screen and (max-width: 768px) {
    .curated-section {
        overflow-x: hidden;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .curated-section .section-header {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 0 !important;
    }
    .curated-section .section-header .btn-danger {
        margin-top: 15px;
        margin-bottom: 20px;
        position: static;
    }
    .curated-section .container-fluid > .row {
        padding: 0 !important;
    }
}
@media screen and (max-width: 480px) {
    .curated-section .collection-title {
        font-size: 36px !important;
    }
}

.section-header .title {
    color: #e4dba5;
    letter-spacing: .5px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e4dba5;
}

.icon-wrapper img {
    margin-top: 10px;
}

.collection-card {
    text-align: center;
}

.collection-grid {
    display: flex;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #111;
}

.collection-grid .large-image {
    flex: 1;
    overflow: hidden;
}

.collection-grid .small-images {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.collection-grid .small-images img {
    height: 50%;
}

.collection-grid .large-image img,
.collection-grid .small-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.collection-grid img:hover {
    transform: scale(1.05);
}

.collection-sub-title {
    font-weight: 500;
    font-size: 24px;
    color: #fff;
}

.collection-title {
    font-size: 63px;
    color: #FFF8C5;
    margin-top: 0 !important;
}

/* ======================================================
   Top Category Section
====================================================== */
.top-category-section {
    color: #FFF8C5;
    background-color: #100405;
}

.top-category-section {
    font-weight: 400;
    font-size: 65px;
    color: var(--clr-light);
}

.category-item {
    display: block;
    font-size: 20px;
    color: #424242;
    text-decoration: none;
    transition: all .3s ease;
}

.category-item:hover {
    color: #8a5a44;
    text-decoration: underline;
}

/* ======================================================
   Sacred stock, features, icons
====================================================== */
.sacred-stock-section {
    font-weight: 300;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.sacred-stock-section .section-text {
    font-size: 20px;
    line-height: 1.7;
    color: #484848;
}

/* Sacred Stock Visual - Layered animation */
.sacred-stock-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.sacred-stock-visual .blood-blob {
    position: absolute;
    width: 80%;
    max-width: 500px;
    opacity: 0;
    z-index: 1;
}

.sacred-stock-visual .cross-laptop {
    position: relative;
    width: 90%;
    max-width: 550px;
    opacity: 0;
    z-index: 2;
}

/* features */
.features-section {
    background-color: #FFFDF0;
    padding: 60px 60px;
    position: relative;
    z-index: 2;
    border-top: 1px solid #e8e4d4;
    border-bottom: 1px solid #e8e4d4;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border-right: 1px solid #e8e4d4;
    height: 100%;
}

.features-section .row .col-6:last-child .feature-box,
.features-section .row .col-md-3:last-child .feature-box {
    border-right: none;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon {
    max-width: 56px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Arimo', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3D0F12;
    margin: 0;
}

@media (max-width: 767px) {
    .features-section {
        padding: 40px 20px;
    }

    .feature-box {
        border-bottom: 1px solid #e8e4d4;
        border-right: 1px solid #e8e4d4;
    }

    /* Remove right border from items on the right column (2nd and 4th) */
    .features-section .row .col-6:nth-child(2) .feature-box,
    .features-section .row .col-6:nth-child(4) .feature-box {
        border-right: none;
    }

    /* Remove bottom border from last row (items 3 and 4 in 2x2 grid) */
    .features-section .row .col-6:nth-child(3) .feature-box,
    .features-section .row .col-6:nth-child(4) .feature-box {
        border-bottom: none;
    }

    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .feature-icon {
        max-width: 44px;
        max-height: 44px;
    }

    .feature-title {
        font-size: 14px;
    }
}

/* ======================================================
   Testimonials
====================================================== */
.testimonials-section {
    background-color: #FFFDF0;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonials-section .section-title {
    font-family: 'Ivy Journal', serif;
    font-size: 48px;
    font-weight: 400;
    color: #3D0F12;
    margin-bottom: 10px;
}

.testimonials-section .section-subtitle {
    font-family: 'Arimo', system-ui, sans-serif;
    color: #6B5A5C;
    font-size: 18px;
    font-weight: 400;
}

.testimonial-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(61, 15, 18, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(61, 15, 18, 0.1);
}

.testimonial-text {
    font-family: 'Arimo', system-ui, sans-serif;
    color: #4A3638;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 24px 0;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-family: 'Ivy Journal', serif;
    font-size: 48px;
    color: #E43A3A;
    line-height: 0;
    display: block;
    margin-bottom: 16px;
}

.author-name {
    font-family: 'Arimo', system-ui, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #3D0F12 !important;
}

.testimonial-author small {
    font-family: 'Arimo', system-ui, sans-serif;
    color: #8B7A7C !important;
    font-size: 13px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid #F2EFDA;
}

@media screen and (max-width: 768px) {
    .testimonials-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .testimonials-section .section-title {
        font-size: 36px;
    }
    .testimonial-card {
        padding: 24px;
    }
}

.contribute-section {
    position: relative;
    background: url('../images/img/cta-bg.png') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    padding: 4rem 0;
}

.contribute-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.contribute-section h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.contribute-section p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    opacity: .9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contribute-section .btn {
    font-weight: 500;
    z-index: 11;
    transition: var(--transition);
    font-size: 1.1rem;
}

.contribute-section .btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
}

/* ======================================================
   Pricing section (cards and toggles)
====================================================== */
.pricing-section {
    background-color: #F5F3E8;
    padding: 60px 0;
    text-align: center;
}

.pricing-section h2 {
    font-weight: 400;
    font-family: 'Ivy Journal', serif;
    color: #3D0F12;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 24px;
}

.pricing-section p {
    color: #484848;
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 155%;
}

/* Toggle */
.toggle-btns {
    background: #fff;
    border-radius: 30px;
    display: inline-flex;
    padding: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.toggle-btns button {
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    background: none;
    color: #a1a1aa;
    font-weight: 500;
    transition: .3s;
}

.toggle-btns button.active {
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    color: #fff;
}

/* Cards */
.pricing-section .row {
    align-items: stretch;
}

.pricing-section .col-md-3 {
    display: flex;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform .3s ease;
    background: #fff;
}

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

/* pricing icons */
.pricing-section .card .icon {
    width: 50px;
    height: 50px;
    background-color: var(--clr-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-section .card .icon img {
    width: 28px;
    filter: brightness(0) invert(1);
}

.pricing-section .card.highlight .icon {
    background: #ffffff;
    filter: none;
}

.pricing-section .card.highlight .icon img {
    filter: none;
}

/* highlight */
.highlight {
    background-color: var(--clr-light);
    color: #fff;
}

.highlight p {
    color: var(--clr-border);
}

/* Card headers */
.pricing-section .plan-header {
    text-align: left;
    margin-top: 10px;
}

.pricing-section .plan-header h5 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .3px;
}

.pricing-section .plan-header p {
    font-size: 16px;
    color: var(--clr-border);
    margin: 0;
}

/* Plan badge & price */
.plan-badge {
    font-size: 12px;
    color: #FF3131;
    background: #ffffff;
    border-radius: 10px;
    padding: 2px 8px;
    height: 20px;
}

.price-content h3 {
    font-size: 60px;
    font-weight: bold;
}

.price-content .member p {
    margin: 0 0 0 10px;
    font-size: 15px;
}

/* Buttons inside card */
.card .btn-primary {
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    border: none;
    border-radius: 6px;
    width: 100%;
    font-weight: 500;
    transition: background-color .3s;
}

.card .btn-primary:hover { background: linear-gradient(90deg, #ff4545 0%, #ff7a7a 100%);
}

.card .btn-outline-light,
.card .btn-outline-dark {
    width: 100%;
    margin-top: 10px;
    transition: .3s;
}

/* Benefits list */
ul.benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    text-align: left;
    font-size: 14px;
}

ul.benefits li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

ul.benefits li img {
    margin-right: 8px;
    width: 16px;
}

/* Responsive adjustments */
@media (max-width:768px) {
    .card {
        margin-bottom: 25px;
    }
}

/* ======================================================
   Authentic section
====================================================== */
.authentic-section {
    padding: 80px 0 400px;
    background-color: #f6f4e0;
}

.image-stack {
    position: relative;
    padding-right: 100px;
}

.image-stack img {
    border-radius: 10px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: -60px;
    right: 60px;
    height: 200px;
    width: 200px !important;
    border-radius: 10px;
    border: 5px solid #f9f6e9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn-pay { background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
}
.btn-pay:hover { background: linear-gradient(90deg, #ff4545 0%, #ff7a7a 100%);
    color: #fff;
}


.text-content {
    color: var(--clr-light);
    margin-top: 15%;
}

.text-content h2 {
    font-size: 65px;
}

.text-content p {
    color: #484848;
    font-size: 24px;
    text-align: left;
    line-height: 1.7;
}

@media (max-width:992px) {
    .authentic-section {
        text-align: center;
    }

    .image-stack {
        padding-right: 0;
    }

    .image-overlay {
        bottom: -30px;
        right: 0;
    }
}

/* ======================================================
   Comparison section
====================================================== */
.comparison-section {
    padding: 80px 0 0;
    margin: 0 -3rem;
    background: url('/assets/images/img/bg-image.png') no-repeat center/cover;
}

.comparison-section h2 {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Ivy Journal', serif;
    color: #3D0F12;
    line-height: 58px;
    text-align: left;
}

.comparison-section h2 a {
    color: var(--clr-light);
    text-decoration: none;
}

.comparison-table {
    padding: 40px 0 0;
    margin: 0 auto;
}
.comparison-table .btn {
    margin-left: 40px;
}
.comparison-table h5 {
    color: var(--clr-light);
    font-size: 24px;
    font-weight: bold;
}

.comparison-table p {
    color: #484848;
    font-size: 20px;
    line-height: 156%;
}

.divider {
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

.arrow {
    font-weight: 600;
    margin-left: 5px;
}

@media (max-width:768px) {
    .comparison-table {
        padding: 25px;
    }

    .comparison-section h2 {
        font-size: 32px;
    }
}

/* ======================================================
   FAQ / Accordion styles
====================================================== */
.faq-section {
    padding: 80px 0;
    text-align: center;
    background-color: #FFFDF2;
    color: var(--clr-light);
}

.faq-badge {
    background-color: #c5281c;
    color: #fff;
    font-size: .75rem;
    border-radius: 50px;
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.faq-section h2 {
    font-size: 65px;
    font-weight: 400;
    color: var(--clr-light);
}

.faq-section h3 {
    font-weight: 400;
    color: var(--clr-light);
}

.faq-section p {
    color: #6c6c6c;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 30px;
}

.accordion-button {
    background-color: #f9f6ec;
    font-weight: bold;
    color: var(--clr-light);
    font-size: 24px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #3b1f18;
    background-color: #f4efe3;
}

.accordion-body {
    background-color: #f9f6ec;
    color: #6c6c6c;
    font-size: .95rem;
}

/* ======================================================
   Client hero section (already grouped above)
====================================================== */

/* ======================================================
   Message section (image-grid / text-content)
====================================================== */
.message-section {
    background-color: #F9F7F1;
    color: var(--clr-light);
    z-index: 1;
    position: relative;
}

.image-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    min-height: 500px;
}

.image-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 15px;
    justify-content: flex-end;
}

.image-column img.tall {
    max-height: 420px;
}

.text-content h2 {
    font-size: 50px;
    color: var(--clr-light);
    line-height: 1;
    margin-bottom: 20px;
    max-width: 650px;
    text-align: left;
    margin: 50px auto;
}

.text-content p {
    font-size: 20px;
    color: #484848;
    margin-bottom: 15px;
}

@media (max-width:992px) {
    .image-grid {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
    }

    .image-column {
        flex: 1 1 45%;
    }

    .text-content {
        text-align: center;
    }

    .text-content h2 {
        font-size: 2rem;
    }
}

@media (max-width:768px) {
    .image-grid {
        flex-direction: column;
        height: auto;
    }

    .image-column img,
    .image-column img.half,
    .image-column img.tall {
        height: auto;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }
}

/* ======================================================
   Curation section
====================================================== */
.curation-section {
    color: var(--clr-light);
}

.curation-section h2 {
    font-size: 58px;
    font-weight: 400;
    color: var(--clr-light);
    margin-bottom: 20px;
}

.curation-section p,
.text-content-message p {
    font-size: 20px;
    line-height: 1.7;
    color: #484848;
    margin-bottom: 15px;
    max-width: 550px;
}

.curation-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 760px;
    margin-left: auto;
}
.client-badge-text {
   margin-right: 20px;
}
.curation-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width:992px) {
    .curation-section .text-content {
        text-align: center;
    }

    .curation-section .text-content h2 {
        font-size: 2rem;
    }

    .curation-section .text-content p {
        margin: 0 auto 15px;
    }

    .curation-image-grid {
        margin-top: 30px;
    }
}

@media (max-width:768px) {
    .curation-image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .curation-section .text-content h2 {
        font-size: 1.8rem;
    }
}

/* ======================================================
   Purchase / Product small components
====================================================== */
.purchase-image img {
    border-radius: 10px;
}

.btn-outline-secondary {
    border-color: #d9d9d9;
    width: 140px;
    color: #444;
    font-size: 16px;
    padding: 6px 16px;
    border-radius: 30px;
}

.btn-outline-secondary:hover {
    background-color: #f0f0f0;
    color: #000;
}

.btn-outline-secondary img {
    width: 25px;
}

.purchase-card h5 {
    font-size: 36px;
    font-weight: bold;
    color: var(--clr-light);
}

.purchase-card p {
    font-size: 25px;
    font-weight: bold;
    color: #414141;
}


.size-options .option {
    background-color: #fff;
    transition: all .3s ease;
    cursor: pointer;
}

.size-options .option:hover {
    background-color: #f9f9f9;
}

.size-options .option.active {
    background-color: #ffecec;
    border-color: #FFCACA;
}

.form-select {
    border-radius: 8px;
}

.user-access select,
.extend-license select {
    height: 78px;
    background-color: transparent;
}

/* ======================================================
   Photo details / user profile / badges
====================================================== */
.photo-details-section {
    color: #2b2b2b;
}

.user-profile {
    background: linear-gradient(135deg, #3D0f12 0%, #5a1a1f 100%);
    color: #fff;
    padding: 8px 20px 8px 8px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .3px;
    box-shadow: 0 2px 8px rgba(61, 15, 18, 0.3);
    transition: all 0.3s ease;
}

.user-profile:hover {
    box-shadow: 0 4px 12px rgba(61, 15, 18, 0.4);
    transform: translateY(-1px);
}

.user-profile .icon {
    margin-right: 12px;
}

.user-profile img {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-profile a,
.user-profile h5 {
    color: #fff !important;
}

.btn-follow {
    background-color: var(--clr-light);
    color: #fff;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: .9rem;
    transition: background-color .3s ease;
    height: 50px;
}

.btn-follow:hover {
    background-color: var(--clr-light);
    color: var(--clr-border);
}

.photo-details-section .image-title {
    font-size: 30px;
    font-weight: bold;
    color: #414141;
}

.photo-details-section .image-detaile {
    font-size: 24px;
    color: #484848;
}

.photo-details-section .keywords {
    font-size: 14px;
    font-weight: 600;
    color: #484848;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.purchase-section > .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
}

.purchase-section .keywords {
    font-size: 14px;
    font-weight: 600;
    color: #484848;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Image Title - Purchase Section */
.purchase-section .image-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Tags - Stocksy Style */
.purchase-section .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.purchase-section .tags a {
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.purchase-section .tags a:hover {
    background: #3D0f12;
    border-color: #3D0f12;
    color: #fff;
}

.purchase-section .tags .tag-toggle {
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px dashed #999;
    background: #f5f5f5;
    color: #666;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.purchase-section .tags .tag-toggle:hover {
    background: #eee;
    border-color: #666;
    color: #333;
}

.purchase-section .tags .tag-toggle i {
    margin-right: 4px;
}

.badge {
    font-weight: 400;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: .85rem;
}

/* Color Palette - Stocksy Style */
.color-box {
    padding: 8px 14px;
    height: auto;
    min-width: 80px;
    border-radius: 50px;
    border: none;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.color-box:hover {
    transform: scale(1.05);
}

.photo-details-section .image-info {
    font-size: 24px;
    color: #484848;
}

.photo-details-section .image-info h6 {
    font-weight: bold;
}

/* ======================================================
   Related images / carousel / thumbs
====================================================== */
.related-images-section .btn-group {
    background-color: #ffffff;
    border-radius: 50px;
}

.btn-category {
    color: var(--clr-light);
    font-weight: 500;
    padding: 6px 18px;
    transition: all .3s ease;
    margin: 5px;
    border-radius: 50px !important;
}

.btn-category.active {
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    color: #fff;
}

.btn-category:hover {
    border-radius: 50px;
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
    color: #fff;
}

.related-images {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.related-images::-webkit-scrollbar {
    height: 8px;
}

.related-images::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Fixed height, auto width thumbs */
.related-img {
    height: 250px;
    width: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .3s ease;
}

.related-img:hover {
    transform: scale(1.03);
}

/* Carousel arrows */
.carousel-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* conceptually/visually similar */
.conceptually-similar {
    background-color: #faf7ec;
}

.conceptually-similar h3,
.visually-similar h3 {
    font-size: 53px;
    color: var(--clr-light);
}

/* image gallery small thumbnails */
/* .image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery-img {
    height: 200px;
    width: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
} */

@media (max-width:768px) {
    /* .gallery-img {
        height: 180px;
    } */
}

/* ======================================================
   Misc small helpers
====================================================== */
.purchase-image img {
    border-radius: 10px;
}

/* ======================================================
   Responsive grouped queries for layout tweaks
====================================================== */
@media (max-width: 1200px) {

    /* reduce some big font sizes for medium screens */
    .stock-title,
    .collection-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {

    .stock-title,
    .collection-title {
        font-size: 40px;
    }

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

    .text-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    /* stacked layouts */
    .image-grid,
    .collection-grid,
    .partner-logos {
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

    .map,
    .image-grid,
    .image-column {
        height: auto;
    }
}

/* ======================================================
   End of stylesheet
====================================================== */


/* =========================================================
   SECTION: GET PAID
========================================================= */
.get-paid-section {
    background-color: #fdfbf5;
    color: #3b1f18;
    overflow: hidden;
}

.get-paid-section h2 {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 20px;
}

.get-paid-section p {
    font-size: 20px;
}

.get-paid-section h5 {
    font-weight: 700;
    font-size: 24px;
    padding: 15px 0;
}

.border-right {
    border-right: 2px solid var(--clr-border);
}

/* ---- Image Stack ---- */
.image-stack {
    position: relative;
    width: 100%;
    height: 400px;
}

/* ---- Icon ---- */
.icon-circle img {
    width: 40px;
    height: 40px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .text-content {
        text-align: center;
    }

    .image-stack {
        margin-bottom: 40px;
        height: 320px;
    }

    .image-stack .img-top {
        left: 50%;
        transform: translateX(-50%);
    }

    .image-stack .img-middle {
        left: 20%;
    }

    .image-stack .img-bottom {
        right: 10%;
    }
}

/* =========================================================
   SECTION: SACRED MOMENTS
========================================================= */
.sacred-moments-section {
    background-color: #fdfbf5;
}

.sacred-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.sacred-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.sacred-image-wrapper:hover img {
    transform: scale(1.02);
}

/* ---- Text Overlay ---- */
.sacred-text-overlay {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: #fff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.sacred-text-overlay h2 {
    font-size: 50px;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .sacred-text-overlay {
        left: 20px;
        bottom: 20px;
    }

    .sacred-text-overlay h2 {
        font-size: 1.5rem;
    }
}

/* =========================================================
   SECTION: HOW IT WORKS
========================================================= */
.how-it-works {
    background-color: #fdfbf5;
    color: var(--clr-light);
}

.section-title {
    font-weight: 400;
    font-size: 53px;
}

.section-subtitle {
    color: #484848;
    font-size: 20px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* ---- Cards ---- */
.work-card {
    background-color: #fff;
    border: 1px solid #f0e8da;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.work-card .icon img {
    width: 40px;
}

.work-card h5 {
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 12px;
}

.work-card p {
    color: #6c6c6c;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- Highlighted Card ---- */
.work-card.highlight {
    background-color: var(--clr-light);
    color: #fff;
    border: none;
}

.work-card.highlight .icon {
    color: #f7d5cd;
}

.work-card.highlight p {
    color: #d7ccc8;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.9rem;
    }

    .work-card {
        padding: 30px 25px;
    }
}

/* =========================================================
   SECTION: VOICES
========================================================= */
.voices-section {
    background-color: #0d0d0d;
    padding: 100px 0;
}

.voices-section-subtitle {
    letter-spacing: 5px;
    font-size: 19px;
}

.voices-section h2 {
    font-size: 65px;
    color: #fff;
}

.voices-section p.lead {
    color: #918e8e;
    font-size: 21px;
    line-height: 1.7;
}

/* ---- Dots ---- */
.voices-section .dot {
    width: 8px;
    height: 8px;
    background-color: #666;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.voices-section .dot.active {
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%);
}

/* ---- Layout ---- */
.voices-section .row>div {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

/* ---- Image Cards ---- */
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 768px) {
    #popular-search {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }
    #popular-search span {
        display: block;
        width: 100%;
    }



    .voices-section {
        padding: 60px 0;
    }

    .voices-section h2 {
        font-size: 1.8rem;
    }

    .get-paid-section h2{
        margin-top: 50px;
    }

    .faq-section .toggle-btns{
        font-size: 14px;
    }

    .faq-section h2, .pricing-section h2, .top-category-section h2 {
        font-size: 40px;
    }
    .faq-section h3 button{
        font-size: 20px;
    }

    .comparison-section h2{
        font-size: 30px;
    }
    .contribute-section h2{
        font-size: 40px !important;
    }

    .message-section img{
        /* width: 100% !important; */
    }
    .purchase-section > .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
    .purchase-section .flex-wrap{
        justify-content: space-evenly;
    }
    .purchase-section .flex-wrap button{
        width: 100px;
        padding: 5px;
    }
    .purchase-section .flex-wrap button img{
        width: 25px;
    }
    .purchase-section .purchase-card button{
        width: 130px !important;
    }

    .authentic-section .image-overlay{
        margin-bottom: -60px;
    }
}


.btn-custom{
    background: linear-gradient(90deg, #ff3131 0%, #ff6b6b 100%) \!important;
    border: #FF3131;
    padding: 15px 44px !important;
    font-size: 1rem;
}

.login-title{
    padding-bottom: 4px !important;
}
.login-section-wrapper{
    background-image: var(--clr-bg-light) !important;
}
.Graceplan .card {
    background-color: #3d0f12;
    color: #fff;
}
.pricing-section .Graceplan  .plan-header p,
.pricing-section .Graceplan  p,
.pricing-section .Graceplan .benefits {
    color: #888!important;
}
.pricing-section .Graceplan .card .icon {
    background-color: #fff;
}   


.pricing-section .Graceplan .card .icon img {
    filter: none;
}
.navbar-nav .btn-custom {
    margin-left: 15px;
}


@media screen and (max-width: 767px) {
    .get-paid-section p,
    .section-subtitle {
        font-size: 16px;
    }
}

/* ======================================================
   MOBILE RESPONSIVENESS - INDUSTRY STANDARDS
   Based on Google's mobile-friendly guidelines:
   - Minimum touch target: 48px x 48px (44px acceptable)
   - Minimum font size: 16px for body text
   - Proper spacing and readable line heights
   - No horizontal scroll
   - Accessible contrast ratios
====================================================== */

/* ---- Mobile-First Base Fixes (max-width: 991px) ---- */
@media screen and (max-width: 991px) {
    /* Navbar mobile improvements */
    .navbar {
        min-height: 70px;
        padding: 10px 15px;
    }

    .navbar-brand img {
        width: 80px;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Mobile nav links - proper touch targets */
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 14px 16px;
        font-size: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    /* Stock section padding */
    .stock-section .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Curated section padding */
    .curated-section > .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Hero section padding */
    .hero-section .container {
        padding: 0 16px;
    }
}

/* ---- Tablet Breakpoint (max-width: 768px) ---- */
@media screen and (max-width: 768px) {
    /* Homepage hero - responsive title */
    .home-title {
        font-size: 36px;
        line-height: 1.2;
        padding: 0 16px;
    }

    .custom-pt-6 {
        padding-top: 4rem;
    }

    /* Hero section adjustments */
    .hero-section,
    .client-hero-section {
        min-height: 60vh;
    }

    /* Search box mobile */
    .search-box {
        max-width: 100%;
        margin: 0 16px;
    }

    .search-box input {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 16px 50px 16px 45px;
    }

    .search-box .search-btn {
        min-width: 44px;
        min-height: 44px;
    }

    /* Popular categories link */
    .linkCategoryPopular {
        font-size: 14px;
        padding: 0 16px;
    }

    .linkCategoryPopular a {
        display: inline-block;
        padding: 8px 12px;
        margin: 4px 2px;
    }

    /* Stock section */
    .stock-title {
        font-size: 32px;
        padding: 0 8px;
    }

    .stock-description {
        font-size: 16px;
        padding: 0 16px;
    }

    /* Collection titles */
    .collection-title {
        font-size: 32px !important;
    }

    .collection-description {
        font-size: 16px;
    }

    /* Buttons - proper touch targets */
    .btn {
        font-size: 16px;
        min-height: 44px;
        padding: 12px 24px !important;
    }

    .btn-danger,
    .btn-primary {
        padding: 14px 28px !important;
    }

    /* Features section */
    .features-section {
        padding: 40px 16px;
    }

    .feature-box {
        padding: 24px 16px;
    }

    /* Testimonials */
    .testimonials-section .section-title {
        font-size: 28px;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }

    /* Footer mobile */
    .site-footer {
        padding: 50px 20px 0;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-links a {
        padding: 8px 0;
        display: inline-block;
        min-height: 44px;
        line-height: 28px;
    }

    /* Contribute section */
    .contribute-section {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .contribute-section h2 {
        font-size: 28px !important;
    }

    .contribute-text {
        font-size: 16px;
    }

    /* Image grid responsive */
    .flex-images .item {
        margin-bottom: 2px;
    }

    /* Section padding consistency */
    section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ---- Mobile Small (max-width: 576px) ---- */
@media screen and (max-width: 576px) {
    /* Even smaller hero title for phones */
    .home-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .custom-pt-6 {
        padding-top: 3rem;
    }

    .hero-section,
    .client-hero-section {
        min-height: 55vh;
    }

    /* Search box full width */
    .search-box {
        margin: 0 12px;
        border-radius: 8px;
    }

    .search-box input {
        padding: 14px 48px 14px 40px;
        font-size: 16px;
    }

    .search-box i {
        left: 14px;
        font-size: 16px;
    }

    /* Stock section titles */
    .stock-title {
        font-size: 26px;
    }

    .stock-description {
        font-size: 15px;
    }

    /* Collection section */
    .collection-title {
        font-size: 26px !important;
    }

    .collection-sub-title {
        font-size: 18px;
    }

    /* Section titles */
    .section-title {
        font-size: 28px;
    }

    /* Testimonial cards */
    .testimonials-section .section-title {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    /* Feature boxes 2 columns */
    .features-section .col-6 {
        padding: 4px;
    }

    .feature-title {
        font-size: 13px;
    }

    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    /* Buttons mobile */
    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
    }

    .btn-danger,
    .btn-primary {
        padding: 16px 24px !important;
    }

    /* Footer compact */
    .footer-heading {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom .copyright {
        font-size: 12px;
    }

    /* Sacred stock section */
    .sacred-stock-section {
        padding: 50px 16px;
    }

    .sacred-stock-section .section-text {
        font-size: 16px;
    }

    /* Curated collections mobile */
    .curated-section {
        padding: 40px 16px !important;
    }

    .curated-section .section-header {
        margin-bottom: 20px;
    }

    /* Collection grid mobile */
    .collection-grid {
        height: 220px;
    }

    /* Pricing section mobile */
    .pricing-section h2 {
        font-size: 28px;
    }

    .pricing-section p {
        font-size: 15px;
    }

    /* FAQ section */
    .faq-section h2 {
        font-size: 28px;
    }

    /* Top category section */
    .top-category-section h2 {
        font-size: 28px;
    }

    .category-item {
        font-size: 16px;
        padding: 8px 0;
    }
}

/* ---- Extra Small (max-width: 375px) ---- */
@media screen and (max-width: 375px) {
    .home-title {
        font-size: 24px;
    }

    .stock-title,
    .collection-title {
        font-size: 22px !important;
    }

    .search-box input {
        font-size: 15px;
        padding: 12px 44px 12px 36px;
    }

    .btn {
        font-size: 15px;
        padding: 12px 16px !important;
    }
}

/* ---- Mobile Menu Overlay Improvements ---- */
@media screen and (max-width: 991px) {
    .offcanvas {
        max-width: 300px;
    }

    .offcanvas-body .nav-link {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Mobile bottom bar improvements */
    .menuMobile {
        padding: 8px 12px !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1040;
    }

    .menuMobile .btn-mobile {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menuMobile .icon-navbar {
        font-size: 22px;
    }

    /* Add padding to body for fixed bottom nav */
    body {
        padding-bottom: 70px;
    }
}

/* ---- Prevent Horizontal Scroll ---- */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.container-fluid {
    overflow-x: hidden;
}

/* ---- Safe Area Insets for Notched Devices ---- */
@supports (padding: max(0px)) {
    .navbar {
        padding-top: max(10px, env(safe-area-inset-top));
    }

    .site-footer {
        padding-bottom: max(70px, calc(60px + env(safe-area-inset-bottom)));
    }

    .menuMobile {
        padding-bottom: max(8px, env(safe-area-inset-bottom)) !important;
    }
}

/* ---- Smooth Scroll on Mobile ---- */
@media screen and (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* ---- Image Loading Performance ---- */
.previewImage,
.collection-grid img {
    content-visibility: auto;
}

/* ---- Focus States for Accessibility ---- */
@media screen and (max-width: 768px) {
    a:focus,
    button:focus,
    input:focus {
        outline: 2px solid var(--clr-accent);
        outline-offset: 2px;
    }

    .btn:focus {
        box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.3);
    }
}

/* ======================================================
   Image Grid Hover Effects - Title Overlay
====================================================== */
.flex-images .item.item-photo-custom {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.flex-images .item.item-photo-custom .image-title {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    text-align: center;
    opacity: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%) !important;
    color: #fff !important;
    padding: 45px 10px 10px !important;
    font-size: 13px !important;
    font-weight: 500;
    line-height: 1.3;
    transition: opacity 0.3s ease;
    border-radius: 0 0 8px 8px;
    z-index: 5;
    margin: 0 !important;
    pointer-events: none;
}

.flex-images .item.item-photo-custom:hover .image-title {
    opacity: 1 !important;
}
/* ======================================================
   Top Page Loading Bar
====================================================== */
#page-loader-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #ff6b7a, #dc3545);
    background-size: 200% 100%;
    z-index: 99999;
    transition: width 0.4s ease, opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
    animation: shimmer 1.5s infinite linear;
}

#page-loader-bar.loading {
    width: 85%;
}

#page-loader-bar.complete {
    width: 100%;
}

#page-loader-bar.hide {
    opacity: 0;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Contributor/Photographer Hero */
.contributor-hero {
    background: url('/assets/images/img/photographer-hero.png') no-repeat center center/cover !important;
}

/* ======================================================
   Animation Performance Optimizations
====================================================== */

/* GPU Acceleration for animated elements */
.collage-img,
.marquee-content,
.possibility-card,
.voices-image-item img,
.work-card,
.feature-box,
.category-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
}

/* Will-change hints for scroll-triggered animations */
.get-paid-section .collage-img,
.get-paid-section .red-circle,
.get-paid-title,
.get-paid-text,
.showcase-title,
.showcase-text,
.possibilities-title {
    will-change: transform, opacity;
}

/* Optimize marquee performance */
.marquee-track {
    contain: layout style paint;
}

/* Reduce paint areas for cards */
.possibility-card,
.work-card,
.category-card {
    contain: layout paint;
    isolation: isolate;
}

/* Smooth scrolling performance */
.possibilities-track,
.voices-swiper {
    -webkit-overflow-scrolling: touch;
}

/* Reduce repaints on hover */
.collage-img:hover,
.voices-image-item:hover img {
    will-change: transform;
}

/* Force hardware acceleration on key sections */
.get-paid-section,
.showcase-section,
.possibilities-section,
.voices-section {
    transform: translateZ(0);
}

/* ======================================================
   Plan Credits Badge (Navbar)
====================================================== */
.plan-credits-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #FFF8E1;
    border: 1px solid #d4a853;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.plan-credits-badge:hover {
    background: #c9a227;
    border-color: #c9a227;
    text-decoration: none;
    color: #fff;
}

/* Mobile Menu Credits Badge */
.plan-credits-badge-mobile {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #3D0F12 0%, #5a1a1e 100%);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s ease;
}

.plan-credits-badge-mobile:hover {
    background: linear-gradient(135deg, #2d0b0e 0%, #4a1518 100%);
    text-decoration: none;
    color: #fff;
}

/* Empty credits badge - "Buy More" button styling */
.plan-credits-badge.plan-credits-empty {
    background: #FFF8E1;
    border-color: #d4a853;
    color: #1a1a1a;
}

.plan-credits-badge.plan-credits-empty:hover {
    background: #FFE082;
    border-color: #c9a227;
    color: #1a1a1a;
}

.plan-credits-badge-mobile.plan-credits-empty-mobile {
    background: #FFF8E1;
    color: #1a1a1a;
}

.plan-credits-badge-mobile.plan-credits-empty-mobile:hover {
    background: #FFE082;
    color: #1a1a1a;
}

/* ======================================================
   SweetAlert2 Brand Styling
====================================================== */
.swal-brand-popup {
    background: #FFFDF0 !important;
    border-radius: 16px !important;
}

.swal2-title {
    color: #3D0F12 !important;
    font-weight: 700 !important;
}

.swal2-html-container {
    color: #666 !important;
}

.swal-brand-confirm {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%) !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: none !important;
}

.swal-brand-confirm:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%) !important;
}

.swal-brand-cancel {
    background: #e0e0e0 !important;
    color: #666 !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: none !important;
}

.swal-brand-cancel:hover {
    background: #d0d0d0 !important;
    color: #333 !important;
}

.swal-brand-icon-cancel {
    width: 80px !important;
    height: 80px !important;
    border: none !important;
    border-radius: 50% !important;
    background: rgba(220, 53, 69, 0.15) !important;
    color: #dc3545 !important;
    margin: 0 auto 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.swal-brand-icon-cancel i {
    font-size: 32px !important;
    color: #dc3545 !important;
}
