/*==================================================
Prompt Locator Premium UI
==================================================*/

:root {

    /* Brand */

    --primary: #4F46E5;
    --primary-light: #6366F1;
    --secondary: #8B5CF6;
    --accent: #EC4899;

    /* Light Theme */

    --bg: #F7F8FC;

    --card: #FFFFFF;

    --card-2: #F8FAFC;

    --text: #111827;

    --text-light: #64748B;

    --border: #E5E7EB;

    --header-bg: rgba(255, 255, 255, .75);

    --navbar-bg: rgba(255, 255, 255, .75);

    --icon-bg: #FFFFFF;

    --footer-bg: #0F172A;

    --footer-text: #CBD5E1;

    --shadow: 0 15px 45px rgba(15, 23, 42, .08);

    --shadow-lg: 0 25px 60px rgba(15, 23, 42, .14);

    --radius: 24px;

    --transition: .35s;

}

body.dark {

    --bg: #0F172A;

    --card: #1E293B;

    --card-2: #273549;

    --text: #F8FAFC;

    --text-light: #CBD5E1;

    --border: #334155;

    --header-bg: rgba(15, 23, 42, .85);

    --navbar-bg: rgba(30, 41, 59, .85);

    --icon-bg: #334155;

    --footer-bg: #020617;

    --footer-text: #CBD5E1;

    --shadow: 0 15px 45px rgba(0, 0, 0, .35);

    --shadow-lg: 0 25px 60px rgba(0, 0, 0, .55);

}

* {

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

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;

    background: var(--bg);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;

    font-size: 16px;

    font-weight: 400;

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    transition:
        background-color .35s ease,
        color .35s ease;

}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scroll */

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-thumb {

    background: linear-gradient(180deg,
            var(--primary),
            var(--accent));

    border-radius: 20px;

}

/* Container */

.container {

    width: min(1280px, 92%);

    margin: auto;

}

/* Links */

a {

    text-decoration: none;

    color: inherit;

}

/* Images */

img {

    display: block;

    max-width: 100%;

}

/* Buttons */

button {

    font-family: inherit;

    cursor: pointer;

}

/* Sections */

section {

    padding: 90px 0;

}

/* Section Header */

.section-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 45px;

    gap: 30px;

}

.section-header h2 {

    font-size: 46px;

    font-weight: 800;

    line-height: 1.1;

}

.section-header p {

    margin-top: 15px;

    color: var(--text-light);

    max-width: 650px;

}

.section-badge {

    display: inline-flex;

    align-items: center;

    padding: 10px 18px;

    background: rgba(79, 70, 229, .08);

    color: var(--primary);

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 18px;

}

/* Buttons */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 26px;

    border-radius: 999px;

    font-weight: 600;

    transition: .35s;

}

.btn-primary {

    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    color: #fff;

    box-shadow:
        0 12px 30px rgba(79, 70, 229, .25);

}

.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(79, 70, 229, .35);

}

.btn-light {

    background: var(--card);

    border: 1px solid var(--border);

}

.btn-light:hover {

    background: rgba(79, 70, 229, .08);

}

/* Gradient Text */

.gradient {

    background: linear-gradient(90deg,
            var(--primary),
            var(--accent));

    -webkit-background-clip: text;

    color: transparent;

}

/* Glass */

.glass {

    background:
        rgba(255, 255, 255, .75);

    backdrop-filter: blur(16px);

    border:
        1px solid rgba(255, 255, 255, .4);

}

/* Utility */

.text-center {

    text-align: center;

}

.mt-40 {

    margin-top: 40px;

}

.mb-40 {

    margin-bottom: 40px;

}


/*==================================================
NAVBAR
==================================================*/

.header {

    position: fixed;

    top: 20px;

    left: 0;

    width: 100%;

    z-index: 9999;

    transition: .35s;

}

.header.scrolled {

    top: 0;

    background: var(--header-bg);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow);

}

.navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 82px;

    padding: 0 26px;

    backdrop-filter: blur(18px);

    border-radius: 22px;

    background: var(--navbar-bg);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

}

/*========================
LOGO
========================*/

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 800;

    font-size: 28px;

}

.logo-icon {

    width: 46px;

    height: 46px;

    border-radius: 16px;

    display: grid;

    place-items: center;

    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: #fff;

    font-size: 22px;

    box-shadow:
        0 12px 30px rgba(79, 70, 229, .25);

}

.logo-text {

    font-size: 30px;

    font-weight: 800;

    color: var(--dark);

}

.logo-text span {

    background: linear-gradient(90deg,
            var(--primary),
            var(--accent));

    -webkit-background-clip: text;

    color: transparent;

}

/*========================
MENU
========================*/

.nav-menu {

    display: flex;

    align-items: center;

    gap: 34px;

    list-style: none;

}

.nav-menu li {

    position: relative;

}

.nav-menu a {

    font-weight: 600;

    font-size: 15px;

    color: var(--text);

    transition: .3s;

}

.nav-menu a:hover {

    color: var(--primary);

}

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 0;

    height: 3px;

    border-radius: 20px;

    background: linear-gradient(90deg,
            var(--primary),
            var(--accent));

    transition: .35s;

}

.nav-menu a:hover::after,

.nav-menu a.active::after {

    width: 100%;

}

.nav-menu a.active {

    color: var(--primary);

}

/*========================
RIGHT SIDE
========================*/

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    display: none;
    /* for temp bcz we have short menu and more space showing when login and submit prompt implemet at that time remove this display none and search button move on this */
}

.icon-btn {

    width: 46px;

    height: 46px;

    border: none;

    border-radius: 50%;

    /*background: var(--card);*/
    background: var(--icon-bg);

    display: grid;

    place-items: center;

    font-size: 18px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, .08);

    transition: .35s;

    color: var(--text);

}

.icon-btn:hover {

    background: var(--primary);

    color: #fff;

    transform: translateY(-3px);

}

/*========================
SUBMIT BUTTON
========================*/

.nav-right .btn-primary {

    padding: 14px 24px;

    font-size: 14px;

}

/*========================
LOGIN BUTTON
========================*/

.nav-right .btn-light {

    padding: 14px 22px;

}

/*========================
MOBILE
========================*/

/*=========================================
MOBILE TOGGLE
=========================================*/

.mobile-toggle {

    width: 52px;

    height: 52px;

    border: none;

    border-radius: 14px;

    background: var(--card);

    border: 1px solid var(--border);

    display: none;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    gap: 6px;

    cursor: pointer;

    box-shadow: var(--shadow);

    transition: .35s;

    padding: 12px;

}

.mobile-toggle:hover {

    background: var(--primary);

}

.mobile-toggle span {

    display: block;

    width: 24px;

    height: 3px;

    margin: 4px 0;
    /* Extra spacing */

    background: var(--text);

    border-radius: 50px;

    transition: all .35s ease;

    flex-shrink: 0;

}

.mobile-toggle:hover span {

    background: #fff;

}

/* Active Animation */

.mobile-toggle.active span:nth-child(1) {

    transform: translateY(9px) rotate(45deg);

}

.mobile-toggle.active span:nth-child(2) {

    opacity: 0;

}

.mobile-toggle.active span:nth-child(3) {

    transform: translateY(-9px) rotate(-45deg);

}

/* Show only on Mobile */

@media (max-width:992px) {

    .mobile-toggle {

        display: flex;

    }

    .nav-menu {

        display: none;

    }

    .nav-actions .btn {

        display: none;

    }

}

/*========================
MOBILE MENU
========================*/
/*
.mobile-menu {

    position: fixed;

    top: 0;

    right: -360px;

    width: 330px;

    height: 100vh;

    background: var(--card);

    padding: 120px 35px;

    display: flex;

    flex-direction: column;

    gap: 20px;

    transition: .4s;

    box-shadow: -20px 0 50px rgba(15, 23, 42, .15);

    z-index: 9998;

}

*/

.mobile-menu {

    position: fixed;

    top: 70px;

    left: 0;

    width: 100%;

    background: var(--card);

    border-top: 1px solid var(--border);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

    padding: 20px;

    display: none;

    flex-direction: column;

    gap: 18px;

    z-index: 999;

}

.mobile-menu {

    display: none;

}

.mobile-menu.active {

    /*right: 0;*/
    display: flex;


}

.mobile-menu a {

    font-size: 17px;

    font-weight: 600;

    padding: 14px 18px;

    border-radius: 14px;

    transition: .3s;

}

.mobile-menu a:hover {

    background: rgba(79, 70, 229, .08);

    color: var(--primary);

    padding-left: 28px;

}

.mobile-submit {

    margin-top: 20px;

    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    color: #fff !important;

    text-align: center;

}

/*========================
SEARCH OVERLAY
========================*/

.search-overlay {

    position: fixed;

    inset: 0;

    background: rgba(15, 23, 42, .65);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 99999;

}

.search-overlay.active {

    opacity: 1;

    visibility: visible;

}

.search-box {

    width: min(720px, 92%);

    background: var(--card);

    padding: 18px;

    border-radius: 24px;

    display: flex;

    gap: 15px;

    box-shadow: 0 25px 60px rgba(15, 23, 42, .2);

}

.search-box input {

    flex: 1;

    border: none;

    outline: none;

    font-size: 18px;

    padding: 16px;

}

.search-box button {

    padding: 16px 28px;

    border: none;

    border-radius: 16px;

    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    color: #fff;

    font-weight: 600;

}

@media(max-width: 768px) {
    .search-box {
        display: grid;
    }

}

/*========================
RESPONSIVE
========================*/

@media(max-width:1100px) {

    .nav-menu {

        display: none;

    }

    .mobile-toggle {

        display: block;
        color: var(--text);

    }

    .nav-right .btn-light,

    .nav-right .btn-primary {

        display: none;

    }

}

@media(max-width:768px) {

    .container {
        width: 94%;
    }

    .header {
        top: 8px;
    }

    .navbar {

        height: 64px;

        padding: 0 14px;

        border-radius: 16px;

    }

    .logo {

        gap: 8px;

    }

    .logo-text {

        font-size: 18px;

    }


    .logo-icon {

        width: 38px;

        height: 38px;

        border-radius: 12px;

        font-size: 18px;

    }

    .mobile-menu {

        width: 100%;

        right: -100%;

    }

    .icon-btn {

        width: 40px;

        height: 40px;

        font-size: 16px;

    }

    .mobile-toggle {

        width: 40px;

        height: 40px;

        padding: 8px;

        gap: 4px;

    }

    .mobile-toggle span {

        width: 20px;

        height: 2px;

        margin: 10;

    }

}

/*==================================================
HERO SECTION
==================================================*/

.hero {

    position: relative;

    overflow: hidden;
    padding: 180px 0 0px;
    /*padding: 180px 0 120px;*/

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f7f8fc 60%,
            #eef3ff 100%);

}

/*==========================
GRID BACKGROUND
==========================*/

.hero-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(rgba(99, 102, 241, .08) 1px, transparent 1px),

        linear-gradient(90deg, rgba(99, 102, 241, .08) 1px, transparent 1px);

    background-size: 50px 50px;

    mask-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .9),
            transparent);

    pointer-events: none;

}

/*==========================
GLOW BLOBS
==========================*/

.hero-blob {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .45;

    animation: floatBlob 10s ease-in-out infinite;

}

.hero-blob-1 {

    width: 420px;

    height: 420px;

    background: #6366F1;

    top: -140px;

    left: -120px;

}

.hero-blob-2 {

    width: 340px;

    height: 340px;

    background: #EC4899;

    right: -120px;

    top: 100px;

    animation-delay: 2s;

}

.hero-blob-3 {

    width: 300px;

    height: 300px;

    background: #8B5CF6;

    bottom: -80px;

    left: 45%;

    animation-delay: 4s;

}

/*==========================
LAYOUT
==========================*/

.hero .container {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: center;

    position: relative;

    z-index: 2;

}

/*==========================
CONTENT
==========================*/

.hero-content {

    max-width: 700px;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 999px;

    background: rgba(79, 70, 229, .08);

    color: var(--primary);

    font-weight: 700;

    margin-bottom: 28px;

    box-shadow: var(--shadow);

}

.hero h1 {

    font-size: 72px;

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 25px;

    letter-spacing: -2px;

}

.hero h1 span {

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--accent));

    -webkit-background-clip: text;

    color: transparent;

}

.hero p {

    font-size: 18px;

    color: var(--text-light);

    margin-bottom: 40px;

    max-width: 620px;

}

/*==========================
SEARCH
==========================*/

.hero-search {

    display: flex;

    background: var(--card);

    padding: 10px;

    border-radius: 70px;

    box-shadow: 0 20px 55px rgba(15, 23, 42, .08);

    margin-bottom: 35px;

}

.hero-search input {

    flex: 1;

    border: none;

    outline: none;

    padding: 20px 24px;

    font-size: 16px;

    background: transparent;

}

.hero-search button {

    padding: 18px 34px;

    border: none;

    border-radius: 60px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    color: #fff;

    font-weight: 700;

    transition: .35s;

}

.hero-search button:hover {

    transform: translateY(-3px);

}

/*==========================
CATEGORY CHIPS
==========================*/

.hero-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 40px;

}

.hero-tags a {

    padding: 12px 18px;

    border-radius: 50px;

    background: var(--card);

    font-size: 14px;

    font-weight: 600;

    box-shadow: var(--shadow);

    transition: .3s;

}

.hero-tags a:hover {

    background: var(--primary);

    color: #fff;

    transform: translateY(-3px);

}

/*==========================
STATS
==========================*/

.hero-stats {

    display: flex;

    gap: 60px;

}

.hero-stats h3 {

    font-size: 34px;

    font-weight: 800;

    margin-bottom: 6px;

    color: var(--primary);

}

.hero-stats span {

    font-size: 14px;

    color: var(--text-light);

}

/*==========================
RIGHT PREVIEW
==========================*/

.hero-preview {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}

.preview-card {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background: var(--card);

    box-shadow: var(--shadow-lg);

    width: 420px;

}

.preview-card img {

    width: 100%;

    height: 600px;

    object-fit: cover;

    transition: .5s;

}

.preview-card:hover img {

    transform: scale(1.08);

}

.preview-overlay {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 30px;

    background:
        linear-gradient(transparent,

            rgba(15, 23, 42, .95));

    color: #fff;

}

.preview-overlay span {

    display: inline-block;

    padding: 8px 14px;

    background: rgba(255, 255, 255, .18);

    backdrop-filter: blur(10px);

    border-radius: 30px;

    font-size: 13px;

    margin-bottom: 16px;

}

.preview-overlay h4 {

    font-size: 26px;

    margin-bottom: 18px;

}

.preview-overlay button {

    padding: 14px 22px;

    border: none;

    border-radius: 50px;

    background: var(--card);

    color: var(--text);

    font-weight: 700;

}

/*==========================
FLOATING CARDS
==========================*/

.floating-card {

    position: absolute;

    background: rgba(255, 255, 255, .9);

    backdrop-filter: blur(18px);

    padding: 14px 22px;

    border-radius: 18px;

    font-weight: 700;

    box-shadow: var(--shadow);

    animation: floatCard 5s ease-in-out infinite;

}

.card-one {

    top: 40px;

    left: -40px;

}

.card-two {

    right: -20px;

    top: 180px;

    animation-delay: 1.5s;

}

.card-three {

    bottom: 50px;

    left: -30px;

    animation-delay: 3s;

}

/*==========================
SCROLL INDICATOR
==========================*/

.scroll-indicator {

    display: flex;

    justify-content: center;

    margin-top: 70px;

}

.scroll-indicator span {

    width: 32px;

    height: 56px;

    border: 2px solid var(--primary);

    border-radius: 30px;

    position: relative;

}

.scroll-indicator span::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 10px;

    width: 6px;

    height: 12px;

    border-radius: 20px;

    background: var(--primary);

    transform: translateX(-50%);

    animation: scrollMouse 2s infinite;

}

/*==========================
ANIMATIONS
==========================*/

@keyframes floatBlob {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-40px);

    }

}

@keyframes floatCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

}

@keyframes scrollMouse {

    0% {

        opacity: 1;

        transform: translate(-50%, 0);

    }

    100% {

        opacity: 0;

        transform: translate(-50%, 20px);

    }

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1100px) {

    .hero .container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .hero-content {

        margin: auto;

    }

    .hero-tags {

        justify-content: center;

    }

    .hero-stats {

        justify-content: center;

    }

    .hero-preview {

        margin-top: 70px;

    }

}

@media(max-width:768px) {

    .hero {

        padding: 115px 0 60px;

    }

    .hero h1 {

        font-size: 42px;

        line-height: 1.15;

        letter-spacing: -1px;

        margin-bottom: 16px;

    }

    .hero p {

        font-size: 15px;

        line-height: 1.8;

        margin-bottom: 26px;

    }

    .hero-search {

        display: flex;

        flex-direction: column;

        padding: 8px;

        border-radius: 20px;

        gap: 8px;

    }

    .hero-search input {

        height: 52px;
        padding: 12px 16px;
        /* padding: 0 16px; */

    }

    .hero-search button {

        width: 100%;

        height: 52px;

        border-radius: 14px;

    }

    .hero-stats {

        flex-wrap: wrap;

        gap: 25px;

    }


    .hero-preview {

        margin-top: 0px;

    }

    .hero-tags {
        margin-bottom: 10px;
    }

    .preview-card {

        width: 100%;

    }

    .preview-card img {

        height: 420px;

    }

    .floating-card {

        display: none;

    }

    .hero .container {

        display: flex;

        flex-direction: column;

        gap: 45px;

        text-align: center;

    }

    .hero-content {

        max-width: 100%;

    }

    .hero-badge {

        font-size: 13px;

        padding: 9px 16px;

        margin-bottom: 18px;

    }



}

/*==================================================
FEATURED PROMPTS
==================================================*/

.featured-section {
    padding: 50px 0;
    /*padding: 100px 0; */

    background: #f8faff;

    position: relative;

    overflow: hidden;

}

.featured-section::before {

    content: "";

    position: absolute;

    top: -180px;

    right: -120px;

    width: 420px;

    height: 420px;

    background: radial-gradient(circle,
            rgba(99, 102, 241, .12),
            transparent 70%);

    border-radius: 50%;

    pointer-events: none;

}

/*======================================
SECTION HEADER
======================================*/

.view-all {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;

    color: var(--primary);

    transition: .3s;

}

.view-all:hover {

    gap: 18px;

}

/*======================================
FILTER BUTTONS
======================================*/

.prompt-tabs {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin: 45px 0;

}

.prompt-tabs button {

    border: none;

    padding: 14px 24px;

    border-radius: 999px;

    background: var(--card);

    box-shadow: var(--shadow);

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.prompt-tabs button:hover {

    background: var(--primary);

    color: #fff;

    transform: translateY(-3px);

}

.prompt-tabs button.active {

    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    color: #fff;

}

/*======================================
MASONRY GRID
======================================*/

.prompt-grid {

    display: grid;

    grid-template-columns:

        repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

}

/*======================================
CARD
======================================*/

.prompt-card {
    background: var(--card);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .4s;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

/*======================================
IMAGE
======================================*/

.card-image {
    position: relative;
    overflow: hidden;
    /* height: 360px; */
    aspect-ratio: 2/3;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.prompt-card:hover img {
    transform: scale(1.08);
}

/*======================================
IMAGE OVERLAY
======================================*/

.card-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background:
        linear-gradient(transparent,
            rgba(15, 23, 42, .9));
}

/*======================================
CATEGORY
======================================*/

.prompt-category {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    z-index: 5;
}

/*======================================
NEW
======================================*/

.prompt-new {
    position: absolute;
    top: 18px;
    right: 72px;
    padding: 8px 14px;
    background: #EF4444;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 40px;
    z-index: 5;
}

/*=========================================
    Favorite Button
=========================================*/

.favorite-btn {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #6B7280;

    font-size: 18px;
    cursor: pointer;

    transition: all .35s ease;

    z-index: 10;
}

/* Icon */

.favorite-btn i {
    transition: all .35s ease;
}

/* Hover */

.favorite-btn:hover {
    background: #EF4444;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(239, 68, 68, .35);
}

.favorite-btn:hover i {
    color: #fff;
}

/* Active */

.favorite-btn.active {
    background: #FFE5E8;
    color: #EF4444;
    box-shadow: 0 10px 24px rgba(239, 68, 68, .25);
}

.favorite-btn.active i {
    color: #EF4444;
}

/* Active + Hover */

.favorite-btn.active:hover {
    background: #EF4444;
    color: #fff;
}

.favorite-btn.active:hover i {
    color: #fff;
}

/*======================================
BODY
======================================*/

.card-body {
    /*padding: 28px;*/
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    /*
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    */

    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    min-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body p {
    /*color: var(--text-light);
    margin-bottom: 24px;*/
    /* margin-top:12px; */
    line-height: 1.7;
    color: var(--text-light);
    min-height: 58px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prompt-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

/*======================================
META
======================================*/

.prompt-meta {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 28px; */
    margin-bottom: 0px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    /* margin-top: auto; */
}

.prompt-meta span:nth-child(1) i {
    color: #3B82F6;
    /* Blue - Views */
}

.prompt-meta span:nth-child(2) i {
    color: #EF4444;
    /* Red - Favorites/Likes */
}

.prompt-meta span:nth-child(3) i {
    color: #10B981;
    /* Green - Copies */
}

/*======================================
BUTTONS
======================================*/

.card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.copy-btn {
    flex: 1;
    border: none;
    padding: 15px;
    border-radius: 16px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary));
    color: #fff;
    font-weight: 700;
    transition: .35s;
    height: 48px;
}

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

.share-btn {
    width: 90px;
    /* width: 58px; */
    border: none;
    border-radius: 16px;
    background: rgba(79, 70, 229, .08);
    font-size: 18px;
    transition: .35s;
    height: 48px;
}

.share-btn:hover {
    background: var(--primary);
    color: #fff;
}

/*======================================
ADVERTISEMENT
======================================*/

.ad-card {
    min-height: 520px;
    border-radius: 28px;
    background: var(--card);
    border: 3px dashed #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #94A3B8;
    transition: .35s;
}

.ad-card:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/*======================================
LOAD MORE
======================================*/

.load-more {
    text-align: center;
    margin-top: 70px;
}

.load-more .btn {
    padding: 18px 36px;
    font-size: 16px;
}

/*======================================
RESPONSIVE
======================================*/

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

@media(max-width:768px) {
    .prompt-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 300px;
    }

    .card-body {
        padding: 22px;
    }

    .card-body h3 {
        font-size: 22px;
        min-height: 50px;
    }

    .prompt-tabs {
        justify-content: center;
    }

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

    .share-btn {
        width: 100%;
        height: 54px;
    }

    .ad-card {
        min-height: 280px;
    }

}

/* ==================================================
   CATEGORY SECTION
================================================== */

.categories-section {
    padding: 50px 0;
    /*padding: 100px 0;*/
    background: #ffffff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.category-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 35px;
    transition: .35s;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(79, 70, 229, .15);
    border-color: #4F46E5;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 34px;
    background: rgba(79, 70, 229, .08);
    margin-bottom: 25px;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.category-card span {
    color: #4F46E5;
    font-weight: 700;
}


@media (max-width:768px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 14px;
    }

    .category-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        border-radius: 12px;
    }

    .category-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .category-card p {
        display: none;
    }

    .category-card span {
        font-size: 13px;
    }

}


/* ==================================================
   STATS
================================================== */

.stats-section {
    background: linear-gradient(135deg,
            #4F46E5,
            #7C3AED);
    padding: 90px 0;
    color: #fff;
}

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

.stat-card {
    background: rgba(255, 255, 255, .08);
    padding: 40px;
    border-radius: 22px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.stat-card h2 {
    font-size: 46px;
    margin-bottom: 12px;
}

.stat-card p {
    opacity: .9;
}


/* ==================================================
CTA
================================================== */

.cta-section {
    padding: 110px 0;
}

.cta-box {
    background: linear-gradient(90deg,
            #4F46E5,
            #7C3AED);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 40px;
}

.cta-content h2 {
    font-size: 46px;
    margin: 20px 0;
}

.cta-content p {
    max-width: 620px;
    opacity: .95;
}

.cta-buttons {
    display: flex;
    gap: 18px;
}


/* ==================================================
CREATORS
================================================== */

.creators-section {
    /*padding: 100px 0;*/
    padding: 50px 0;
}

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

.creator-card {
    background: var(--card);
    border-radius: 26px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    transition: .35s;
}

.creator-card:hover {
    transform: translateY(-10px);
}

.creator-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
    object-fit: cover;
}

.creator-card h3 {
    margin-bottom: 6px;
}

.creator-card span {
    color: var(--text-light);
}

.creator-stats {
    display: flex;
    justify-content: space-around;
    margin: 28px 0;
}


/* ==================================================
TESTIMONIAL
================================================== */

.testimonial-section {
    background: var(--card-2);
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--card);
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.testimonial-card p {
    font-size: 18px;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card h4 {
    color: #4F46E5;
}


/* ==================================================
FAQ
================================================== */

.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-list details {
    background: var(--card);
    margin-bottom: 18px;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.faq-list summary {
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
}

.faq-list p {
    margin-top: 18px;
    color: var(--text-light);
}


/* ==================================================
NEWSLETTER
================================================== */

.newsletter-section {
    padding: 110px 0;
}

.newsletter-box {
    background: #111827;
    color: #fff;
    padding: 80px;
    border-radius: 30px;
    text-align: center;
}

.newsletter-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-top: 40px;
    display: flex;
    max-width: 700px;
    margin-inline: auto;
    background: var(--card);
    padding: 8px;
    border-radius: 70px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 20px;
    font-size: 17px;
    outline: none;
}

.newsletter-form button {
    border: none;
    padding: 18px 35px;
    border-radius: 60px;
}


/* ==================================================
FOOTER
================================================== */

.footer {
    background: #0F172A;
    padding: 90px 0 40px;
    color: #CBD5E1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 60px;
}

.footer h3,
.footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    transition: .3s;
}

.footer a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}


/* ==================================================
RESPONSIVE
================================================== */

@media(max-width:992px) {

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

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .newsletter-form button {
        width: 100%;
    }

}

@media(max-width:768px) {

    .creators-grid,
    .stats-grid,
    .testimonial-grid,
    .footer-grid {

        /* /* grid-template-columns: 1fr; */
        /* grid-template-columns: repeat(2, 1fr); */

    }

    /*.footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }*/


    .newsletter-box {

        padding: 45px 25px;

    }

    .newsletter-box h2 {

        font-size: 34px;

    }

    .cta-content h2 {

        font-size: 34px;

    }

    section {

        padding: 45px 0;

    }

}

/* =====================================================
   PREMIUM ANIMATIONS
===================================================== */

/* Smooth */

* {

    transition:
        background .35s,
        color .35s,
        border-color .35s,
        transform .35s,
        box-shadow .35s;

}

/* =====================================================
CARD HOVER GLOW
===================================================== */

.prompt-card {

    position: relative;

    overflow: hidden;

}

.prompt-card::before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 60%;

    height: 100%;

    background:

        linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .45),

            transparent);

    transform: skewX(-25deg);

    transition: .8s;

    z-index: 3;

}

.prompt-card:hover::before {

    left: 140%;

}

/* =====================================================
BUTTON SHINE
===================================================== */

.btn-primary {

    position: relative;

    overflow: hidden;

}

.btn-primary::after {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 80px;

    height: 100%;

    background:

        rgba(255, 255, 255, .25);

    transform: skewX(-25deg);

    transition: .8s;

}

.btn-primary:hover::after {

    left: 130%;

}

/* =====================================================
FLOATING
===================================================== */

.floating {

    animation: floating 5s ease-in-out infinite;

}

@keyframes floating {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

}

/* =====================================================
FADE UP
===================================================== */

.fade-up {

    opacity: 0;

    transform: translateY(60px);

    animation: fadeUp .8s forwards;

}

@keyframes fadeUp {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* =====================================================
ZOOM
===================================================== */

.zoom {

    animation: zoom .5s ease;

}

@keyframes zoom {

    from {

        transform: scale(.9);

        opacity: 0;

    }

    to {

        transform: scale(1);

        opacity: 1;

    }

}

/* =====================================================
ROTATE ICON
===================================================== */

.category-icon {

    transition: .35s;

}

.category-card:hover .category-icon {

    transform: rotate(-10deg) scale(1.12);

}

/* =====================================================
IMAGE
===================================================== */

.prompt-card img {

    transition: transform .7s;

}

.prompt-card:hover img {

    transform: scale(1.08);

}

/* =====================================================
GRADIENT BORDER
===================================================== */

.gradient-border {

    position: relative;

}

.gradient-border::before {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: inherit;

    padding: 2px;

    background:

        linear-gradient(90deg,

            #4F46E5,

            #7C3AED,

            #EC4899);

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

}

/* =====================================================
RIPPLE
===================================================== */

.ripple {

    position: relative;

    overflow: hidden;

}

.ripple span {

    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, .4);

    transform: scale(0);

    animation: ripple .7s linear;

}

@keyframes ripple {

    to {

        transform: scale(4);

        opacity: 0;

    }

}

/* =====================================================
SCROLL BAR
===================================================== */

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: rgba(79, 70, 229, .08);

}

::-webkit-scrollbar-thumb {

    background:

        linear-gradient(180deg,

            #4F46E5,

            #EC4899);

    border-radius: 20px;

}

/* =====================================================
GLASS EFFECT
===================================================== */

.glass {

    background:

        rgba(255, 255, 255, .6);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .45);

}

/* =====================================================
BACKGROUND BLOBS
===================================================== */

body::before {

    content: "";

    position: fixed;

    width: 500px;

    height: 500px;

    left: -180px;

    top: -180px;

    background:

        radial-gradient(circle,

            rgba(99, 102, 241, .18),

            transparent);

    filter: blur(50px);

    z-index: -1;

    animation: blob1 12s infinite alternate;

}

body::after {

    content: "";

    position: fixed;

    width: 450px;

    height: 450px;

    right: -120px;

    bottom: -120px;

    background:

        radial-gradient(circle,

            rgba(236, 72, 153, .15),

            transparent);

    filter: blur(60px);

    z-index: -1;

    animation: blob2 10s infinite alternate;

}

@keyframes blob1 {

    0% {

        transform: translate(0, 0);

    }

    100% {

        transform: translate(80px, 60px);

    }

}

@keyframes blob2 {

    0% {

        transform: translate(0, 0);

    }

    100% {

        transform: translate(-80px, -60px);

    }

}

/* =====================================================
TEXT GRADIENT
===================================================== */

.gradient-text {

    background:

        linear-gradient(90deg,

            #4F46E5,

            #7C3AED,

            #EC4899);

    -webkit-background-clip: text;

    color: transparent;

}

/* =====================================================
LOADING
===================================================== */

.skeleton {

    background:

        linear-gradient(90deg,

            #eee,

            #f7f7f7,

            #eee);

    background-size: 200%;

    animation: skeleton 1.2s infinite;

}

@keyframes skeleton {

    0% {

        background-position: 200%;

    }

    100% {

        background-position: -200%;

    }

}

/* =====================================================
HOVER
===================================================== */

.card-hover:hover {

    transform:

        translateY(-10px) scale(1.02);

}

/* =====================================================
SELECTION
===================================================== */

::selection {

    background: #4F46E5;

    color: #fff;

}

/* =====================================================
FOCUS
===================================================== */

input:focus {

    box-shadow:

        0 0 0 4px rgba(79, 70, 229, .15);

}

/* =====================================================
END
===================================================== */

body.menu-open {
    overflow: hidden;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 23px;
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 23px;
}

.mobile-menu a.active {
    color: var(--primary);
    font-weight: 700;
}

.search-overlay {
    opacity: 0;
    visibility: hidden;
    transition: .35s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/*==================================================
LATEST SECTION V2
==================================================*/

.latest-section {

    padding: 50px 0;
    /*padding: 110px 0;*/

    background: #F8FAFF;

    position: relative;

    overflow: hidden;

}

.latest-section::before {

    content: "";

    position: absolute;

    right: -180px;

    top: -180px;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(99, 102, 241, .12),
            transparent 70%);

    filter: blur(20px);

}

.latest-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 45px;

}

.latest-header h2 {

    font-size: 54px;

    font-weight: 800;

    line-height: 1.1;

    margin: 18px 0;

}

.latest-header h2 span {

    background: linear-gradient(90deg,
            #4F46E5,
            #EC4899);

    -webkit-background-clip: text;

    color: transparent;

}

.latest-header p {

    color: var(--text-light);

    font-size: 17px;

}

.view-all {

    font-weight: 700;

    color: #4F46E5;

}

.view-all:hover {

    text-decoration: underline;

}

/*=====================================
FILTER BAR
=====================================*/

.latest-toolbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 45px;

    gap: 30px;

    flex-wrap: wrap;

}

.latest-filters {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}

.filter-btn {

    padding: 12px 20px;

    border-radius: 999px;

    border: 1px solid var(--border);

    background: var(--card);

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.filter-btn:hover {

    background: rgba(79, 70, 229, .08);

    color: #4F46E5;

}

.filter-btn.active {

    background: linear-gradient(90deg,
            #4F46E5,
            #7C3AED);

    color: #fff;

    border: none;

}

.latest-sort select {

    padding: 14px 20px;

    border-radius: 14px;

    border: 1px solid var(--border);

    font-weight: 600;

    outline: none;

    background: var(--card);

}

/*=====================================
GRID
=====================================*/

.latest-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;

    align-items: start;

}

@media(max-width:1024px) {

    .latest-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .latest-grid {

        grid-template-columns: 1fr;

    }

}

/*=====================================
CARD
=====================================*/

.latest-card {

    background: var(--card);

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid var(--border);

    transition: .35s;

    box-shadow:

        0 10px 35px rgba(15, 23, 42, .06);

}

.latest-card:hover {

    transform: translateY(-8px);

    box-shadow:

        0 20px 45px rgba(15, 23, 42, .12);

}

/*=====================================
IMAGE
=====================================*/

.latest-image {

    position: relative;

    height: 240px;

    overflow: hidden;

}

.latest-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

.latest-card:hover img {

    transform: scale(1.08);

}

.latest-image::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 45%;

    background:

        linear-gradient(transparent,

            rgba(15, 23, 42, .9));

}

/*=====================================
BADGE
=====================================*/

.latest-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    padding: 8px 16px;

    background: var(--card);

    color: #4F46E5;

    font-size: 13px;

    font-weight: 700;

    border-radius: 40px;

    z-index: 5;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

}

/*=====================================
TOP ICONS
=====================================*/

.latest-icons {

    position: absolute;

    top: 18px;

    right: 18px;

    display: flex;

    gap: 10px;

    z-index: 10;

}

.latest-icons button {

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(12px);

    font-size: 16px;

    cursor: pointer;

    transition: .35s;

    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);

}

.latest-icons button:hover {

    background: #4F46E5;

    color: #fff;

    transform: translateY(-3px);

}

/*=====================================
CONTENT
=====================================*/

.latest-content {

    padding: 24px;

}

.latest-content h3 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 12px;

    line-height: 1.3;

    color: var(--text);

}

.latest-content p {

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 20px;

    min-height: 48px;

}

/*=====================================
META
=====================================*/

.latest-meta {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 0;

    border-top: 1px solid #ECECEC;

    border-bottom: 1px solid #ECECEC;

    margin-bottom: 22px;

    font-size: 15px;

    font-weight: 600;

    color: #475569;

}

.latest-meta span {

    display: flex;

    align-items: center;

    gap: 6px;

}

/*=====================================
COPY BUTTON
=====================================*/

.latest-content .copy-btn {

    width: 100%;

    height: 52px;

    border: none;

    border-radius: 14px;

    background: linear-gradient(90deg,
            #4F46E5,
            #7C3AED);

    color: #fff;

    font-weight: 700;

    font-size: 15px;

    cursor: pointer;

    transition: .35s;

}

.latest-content .copy-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 18px 40px rgba(79, 70, 229, .25);

}

/*=====================================
LOAD MORE
=====================================*/

.latest-load {

    display: flex;

    justify-content: center;

    margin-top: 60px;

}

.latest-load .btn-outline {

    padding: 16px 34px;

    background: var(--card);

    border: 2px solid #4F46E5;

    border-radius: 999px;

    color: #4F46E5;

    font-weight: 700;

    cursor: pointer;

    transition: .35s;

}

.latest-load .btn-outline:hover {

    background: #4F46E5;

    color: #fff;

    transform: translateY(-3px);

}

/*=====================================
HOVER EFFECT
=====================================*/

.latest-card {

    position: relative;

}

.latest-card::before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 60%;

    height: 100%;

    background: linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .45),

            transparent);

    transform: skewX(-20deg);

    transition: .8s;

    pointer-events: none;

}

.latest-card:hover::before {

    left: 130%;

}

@media(max-width:768px) {
    .section-header h2 {
        font-size: 34px;
    }
}


/*****  START FOR PAGE CATEGORY DETAIL PAGE  *****/

/*=========================================
    PREMIUM STICKY FILTER
=========================================*/

.sticky-filter {

    position: sticky;

    top: 95px;

    z-index: 100;

    padding: 20px 0;

}

.filter-toolbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

    padding: 20px;

    border-radius: 26px;

    background: rgba(255, 255, 255, .82);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

/* Search */

.filter-search {

    flex: 1;

    display: flex;

    align-items: center;

    gap: 14px;

    background: #fff;

    border-radius: 18px;

    padding: 0 18px;

    height: 58px;

    border: 1px solid rgba(79, 70, 229, .08);

}

.filter-search svg {

    color: var(--primary);

    flex-shrink: 0;

}

.filter-search input {

    flex: 1;

    border: none;

    background: none;

    outline: none;

    font-size: 15px;

    font-family: inherit;

}

/* Buttons */

.filter-options {

    display: flex;

    gap: 10px;

}

.filter-options button {

    height: 48px;

    padding: 0 20px;

    border: none;

    border-radius: 50px;

    background: #fff;

    color: var(--text);

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .04);

}

.filter-options button:hover {

    transform: translateY(-2px);

}

.filter-options button.active {

    color: #fff;

    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));

}

/* Select */

.filter-selects {

    display: flex;

    gap: 12px;

}

.filter-selects select {

    height: 48px;

    padding: 0 18px;

    border-radius: 16px;

    border: 1px solid rgba(79, 70, 229, .08);

    background: #fff;

    font-family: inherit;

    font-weight: 600;

    outline: none;

    cursor: pointer;

    transition: .3s;

}

.filter-selects select:hover {

    border-color: var(--primary);

}

@media (max-width:992px) {

    .filter-toolbar {

        flex-direction: column;

        align-items: stretch;

    }

    .filter-search {

        width: 100%;

    }

    .filter-options {

        overflow-x: auto;

        padding-bottom: 6px;

        scrollbar-width: none;

    }

    .filter-options::-webkit-scrollbar {

        display: none;

    }

    .filter-selects {

        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

    }

    .filter-selects select {

        width: 100%;

    }

}

@media (max-width:576px) {

    .filter-selects {

        grid-template-columns: 1fr;

    }

    .filter-options button {

        white-space: nowrap;

    }

}


.load-more-section {

    text-align: center;

    padding: 70px 0;

}

.load-btn {

    min-width: 260px;

    height: 60px;

    border: none;

    border-radius: 60px;

    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

    box-shadow: var(--shadow-lg);

    transition: .35s;

}

.load-btn:hover {

    transform: translateY(-5px);

}

.load-more-section p {

    margin-top: 20px;

    color: var(--text-light);

}


.related-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

    margin-top: 50px;

}

.related-card {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: .35s;

}

.related-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

}

.related-icon {

    width: 70px;

    height: 70px;

    margin: auto;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(79, 70, 229, .08);

    font-size: 32px;

    margin-bottom: 20px;

}

.related-card h4 {

    font-size: 22px;

    margin-bottom: 10px;

}

.related-card span {

    color: var(--text-light);

}



/*****  END FOR PAGE CATEGORY DETAIL PAGE  *****/


/***** START TOAST STYLE *****/
/*=========================================
GLOBAL TOAST
=========================================*/

.toast-container {
    position: fixed;
    top: 100px;
    right: 25px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.toast {
    min-width: 320px;
    max-width: 420px;
    padding: 16px 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    opacity: 0;
    transition: .35s;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: #DCFCE7;
    color: #16A34A;
}

.toast.error .toast-icon {
    background: #FEE2E2;
    color: #DC2626;
}

.toast.warning .toast-icon {
    background: #FEF3C7;
    color: #D97706;
}

.toast.info .toast-icon {
    background: #DBEAFE;
    color: #2563EB;
}

.toast-content h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.toast-content p {
    font-size: 13px;
    color: var(--text-light);
}

@media(max-width:768px) {
    .toast-container {
        left: 15px;
        right: 15px;
        top: 85px;
    }

    .toast {
        min-width: auto;
        width: 100%;
    }
}

/******** END TOAST STYLE ********/

/*=========================================
    PREMIUM BREADCRUMB
=========================================*/

.breadcrumb-section {

    position: relative;

    padding: 120px 0 30px;

    z-index: 5;

}

.premium-breadcrumb {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 14px 22px;

    border-radius: 60px;

    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .45);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.premium-breadcrumb a {

    color: var(--text);

    font-weight: 600;

    transition: .35s;

}

.premium-breadcrumb a:hover {

    color: var(--primary);

}

.premium-breadcrumb .divider {

    color: #B0B6C5;

    font-size: 18px;

}

.premium-breadcrumb .current {

    font-weight: 700;

    background: linear-gradient(135deg,

            var(--primary),

            var(--secondary));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

@media (max-width:768px) {

    .breadcrumb-section {
        position: relative;
        padding: 100px 0 30px;
        z-index: 5;
    }
}

@media (max-width: 600px) {

    .premium-breadcrumb {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 13px 16px;
        border-radius: 50px;
        overflow: hidden;
        white-space: nowrap;
    }

    /* HOME */
    .premium-breadcrumb>a:first-child {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        max-width: 72px;
        white-space: nowrap;
    }

    /* HOME ICON */
    .premium-breadcrumb>a:first-child i {
        font-size: 14px;
    }

    /* DIVIDERS */
    .premium-breadcrumb .divider {
        flex: 0 0 auto;
        font-size: 10px;
    }

    /* CATEGORY */
    .premium-breadcrumb>a:nth-of-type(2) {
        flex: 0 1 auto;
        min-width: 0;
        max-width: 105px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* CURRENT */
    .premium-breadcrumb .current {
        flex: 0 1 auto;
        min-width: 0;
        max-width: 115px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.prompt-grid-home {
    display: none;
}

.prompt-grid-home.active {
    display: grid;
}

.error-message {
    color: #EF4444;
    font-size: 13px;
    margin-top: 6px;
}

.favorite-counter {
    display: none;
}

/***** FOR HOME PAGE *********/
.home-hero-search {
    border-radius: 70px;
}

.search-box-input {
    border-radius: 70px;
}

@media (max-width: 768px) {
    .hero-preview {
        display: none;
    }

    .nav-right {
        display: block;
    }
}

@media (max-width: 1100px) {
    .hero-preview {
        display: none;
    }

    .nav-right {
        display: block;
    }
}

.alert-success {
    color: #16A34A;
}

/* ==========================================
   Prompt Instructions
========================================== */

.prompt-instructions {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.prompt-instructions h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f7;
}

.prompt-instructions h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 35px 0 15px;
}

.prompt-instructions p {
    margin-bottom: 18px;
}

.prompt-instructions ul {
    margin: 18px 0;
    padding-left: 0;
    list-style: none;
}

.prompt-instructions ul li {
    position: relative;
    padding: 10px 0 10px 34px;
    border-bottom: 1px solid #f1f5f9;
}

.prompt-instructions ul li:last-child {
    border-bottom: none;
}

.prompt-instructions ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #4f46e5;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prompt-instructions strong {
    color: #111827;
    font-weight: 600;
}

.prompt-instructions blockquote {
    margin: 30px 0;
    padding: 18px 22px;
    border-left: 5px solid #4f46e5;
    background: #f8faff;
    border-radius: 10px;
    font-style: normal;
}

.prompt-instructions blockquote strong {
    color: #4f46e5;
}

.tip-box {
    margin: 25px 0;
    padding: 20px 22px;
    border: 1px solid rgba(79, 70, 229, .15);
    border-left: 5px solid #4f46e5;
    background: linear-gradient(135deg, #f8f9ff, #eef2ff);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.tip-box p {
    margin: 0;
}

.tip-box strong {
    color: #4f46e5;
}

.prompt-instructions a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

.prompt-instructions a:hover {
    text-decoration: underline;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width:768px) {

    .prompt-instructions {
        font-size: 15px;
    }

    .prompt-instructions h2 {
        font-size: 24px;
    }

    .prompt-instructions h3 {
        font-size: 20px;
    }

    .prompt-instructions ul li {
        padding-left: 30px;
    }

    .prompt-instructions ul li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

}



/*==================================================
    Prompt Guide / Tips & Instructions
==================================================*/

.prompt-guide {
    margin-top: 0px;
    color: #4b5563;
}

.prompt-guide h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.guide-intro {
    max-width: 800px;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #6b7280;
}

/*==================================
Grid
==================================*/

.guide-grid {

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 40px;

}

/*==================================
Card
==================================*/

.guide-card {

    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 22px;
    padding: 32px;
    transition: .35s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
    display: flex;
    flex-direction: column;
    height: 100%;

}

.guide-card:hover {

    transform: translateY(-6px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(79, 70, 229, .12);

}

/*==================================
Header
==================================*/

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 0px;
}

.guide-icon {

    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;

}

.guide-card h3 {

    margin: 0;
    font-size: 28px;
    line-height: 1.3;
    color: #111827;

}

/*==================================
Camera Specification
==================================*/

.spec-list {

    display: flex;
    flex-direction: column;
    gap: 0;

}

.spec-item {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 5px 0;
    border-bottom: 1px solid #edf2f7;

}

.spec-item:last-child {

    border-bottom: none;

}

.spec-item span {

    color: #6b7280;
    font-weight: 600;

}

.spec-item strong {

    color: #111827;
    font-weight: 600;
    text-align: right;

}

/*==================================
Checklist
==================================*/

.check-list {

    margin: 0;
    padding: 0;
    list-style: none;

}

.check-list li {

    position: relative;
    padding: 8px 0 14px 38px;
    border-bottom: 1px solid #edf2f7;
    color: #4b5563;
    line-height: 1.7;

}

.check-list li:last-child {

    border-bottom: none;

}

.check-list li::before {

    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #6366f1;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;

}

/*==================================
Professional Tip
==================================*/

.pro-tip {

    margin: 50px 0;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #eef2ff, #f8faff);
    border: 1px solid rgba(99, 102, 241, .15);
    border-left: 6px solid #6366f1;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, .08);

}

.tip-icon {

    width: 72px;
    height: 72px;
    background: #6366f1;
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;

}

.pro-tip h3 {

    margin: 0 0 12px;
    color: #4338ca;
    font-size: 26px;

}

.pro-tip p {

    margin: 0;
    color: #4b5563;
    line-height: 1.9;

}

/*==================================
Models
==================================*/

.model-list {

    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;

}

.model-list span {

    padding: 12px 20px;
    border-radius: 50px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    transition: .3s;

}

.model-list span:hover {

    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
    transform: translateY(-3px);

}

/*==================================
Responsive
==================================*/

@media (max-width:992px) {

    .guide-grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width:768px) {

    .prompt-guide h2 {

        font-size: 26px;

    }

    .guide-card {

        padding: 24px;

    }

    .guide-card h3 {

        font-size: 22px;

    }

    .guide-icon {

        width: 58px;
        height: 58px;
        font-size: 26px;

    }

    .spec-item {

        flex-direction: column;
        align-items: flex-start;
        gap: 6px;

    }

    .spec-item strong {

        text-align: left;

    }

    .pro-tip {

        flex-direction: column;
        text-align: left;

    }

    .tip-icon {

        width: 60px;
        height: 60px;
        font-size: 28px;

    }

}

/*=========================================
    Prompt About
=========================================*/

.prompt-about {
    color: #4b5563;
    line-height: 1.8;
    font-size: 16px;
}

.prompt-about h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.prompt-about h3 {
    font-size: 24px;
    color: #111827;
    margin: 40px 0 20px;
}

.prompt-about h4 {
    margin: 12px 0;
    color: #111827;
    font-size: 18px;
}

.prompt-about p {
    margin-bottom: 18px;
}

.about-highlight {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
}

.about-highlight strong {
    display: block;
    font-size: 20px;
    margin-bottom: 15px;
    color: #111827;
}

.about-highlight ul {
    margin: 0;
    padding-left: 22px;
}

.about-highlight li {
    margin: 8px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    border-color: #6366f1;
}

.feature-card span {
    font-size: 34px;
}

.feature-card p {
    margin: 0;
    font-size: 15px;
}

.prompt-about blockquote {
    margin-top: 40px;
    background: linear-gradient(135deg, #eef2ff, #f8faff);
    border-left: 5px solid #6366f1;
    padding: 25px;
    border-radius: 14px;
    font-size: 17px;
}

.prompt-about blockquote strong {
    color: #4338ca;
    font-size: 20px;
}

@media(max-width:768px) {

    .prompt-about h2 {
        font-size: 24px;
    }

    .prompt-about h3 {
        font-size: 21px;
    }

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

}

/*=========================================
    Scroll Reveal
=========================================*/

.reveal {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        transform .55s cubic-bezier(.22, 1, .36, 1),
        opacity .55s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* * {
    outline: 1px solid red;
} */