@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --swiper-theme-color: #1e8c5b;
}

/* Base Styles */
* {
    padding: 0;
    margin: 0;
    outline: 0;
    border: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #141414;
    color: #fff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

select {
    width: 100%;
}

/* Container */
section,
header {
    padding: 5rem 0;
}

/* Navigation */
nav {
    margin: auto;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #1a1a1ae6;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.link a {
    position: relative;
    padding-bottom: 0.75rem;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.link a:hover {
    color: #1e8c5b;
}

.link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #1e8c5b;
    transition: width 0.3s;
}

.link a:hover::after {
    width: 90%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn-primary {
    color: #fff;
    background-color: #1e8c5b;
}

.btn-primary:hover,
a.btn-primary:hover {
    background-color: #155b3c;
    color: #fff;
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid #1e8c5b;
    color: #fff;
}

.btn-outline:hover {
    background-color: #1e8c5b;
}

.btn-primary {
    background-color: #1e8c5b;
    color: #fff;
}

.btn-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: #1e8c5b;
    border-radius: 50px;
}


.blur {
    position: absolute;
    box-shadow: 0 0 1000px 50px #1e8c5b;
    z-index: -100;
    opacity: 0.7;
}

section.hero .blur:nth-child(1) {
    top: -50px;
    left: -50px;
}

section.hero .blur:nth-child(2) {
    bottom: -50px;
    right: -50px;
}

body.landing .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #1e8c5b40;
    color: #29c580;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid #2da7364d;
}

section.hero .content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

section.hero .content h1 span {
    background: linear-gradient(to right, #1e8c5b, #60fa7b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.hero .content p {
    font-size: 1.1rem;
    color: #9d9d9d;
    margin-bottom: 4.5rem;
    max-width: 500px;
}

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

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

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0), #1a1a1ae6);
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, #0e0e0ef2, #ff000000);
    height: 50%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}


.slide-info .slide-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slide-info .slide-text p {
    font-size: 1rem;
    color: #9d9d9d;
    margin: 0rem;
}

/* Stats Section */
.stats-section {
    background-color: #191919;
    padding: 4rem 0;
}

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

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

.stat-icon {
    font-size: 2.5rem;
    color: #1e8c5b;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #1e8c5b, #60fa7b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 1rem;
    color: #9d9d9d;
}

/* Section Headers */
section .header {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.sub-header {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #9d9d9d;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.features .card {
    background-color: #191919;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgb(29 216 112 / 50%);
}

.features .card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background-color: #1e8c5b;
    color: #fff;
}

.features .card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.features .card p {
    color: #9d9d9d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features .card a {
    color: #1e8c5b;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.features .card a:hover {
    color: #60fa7b;
}

/* Product Categories */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background-color: #191919;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background-color: #1e8c5b;
}

/* Products Section */
.pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pricing .card {
    background-color: #191919;
    padding: 0;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgb(29 216 112 / 50%);
}

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

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background-color: #1e8c5b;
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-badge.hot {
    background-color: #ef4444;
}

.pricing .card .content {
    padding: 1.5rem;
    flex: 1;
}

.pricing .card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing .card h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.pricing .card h3 span {
    display: block;
    font-size: 0.875rem;
    color: #9d9d9d;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.pricing .card p {
    color: #fff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.pricing .card p i {
    color: #1e8c5b;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.pricing .card select {
    padding: 0.75rem 1rem;
    background-color: #141414;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 0 1.5rem;
    cursor: pointer;
}

.pricing .card select option {
    color: #fff;
    background-color: #141414;
}


/* How It Works Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
    width: 200px;
}

.step-number {
    position: absolute;
    top: -12px;
    right: calc(50% - 45px);
    width: 30px;
    height: 30px;
    background-color: #1e8c5b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #191919;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1e8c5b;
    margin: 0 auto 1.5rem;
    border: 1px solid rgb(29 216 43 / 30%);
}

.step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.step p {
    color: #9d9d9d;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #1e8c5b, #60fa7b);
    margin: 0 1rem;
    position: relative;
    top: -40px;
    margin: auto;
}

/* Testimonials Section */
.testimonial-slider {
    padding-bottom: 3rem;
}

.testimonial-slider .swiper-wrapper {
    max-height: 100%;
    overflow: hidden;
}


.testimonial-card {
    background-color: #191919;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: #9d9d9d;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.testimonial-author i {
    height: 50px;
    width: 50px;
    min-width: 50px;
    min-height: 50px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e8c5b40;
    color: #29c580;
    border: 1px solid #2da7364d;
    border-radius: 50%;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: #9d9d9d;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #191919;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.faq-question i {
    font-size: 1.5rem;
    color: #1e8c5b;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #9d9d9d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background-color: #191919;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.1rem;
    color: #9d9d9d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* footer .footer-wrapper */
footer .footer-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 0;
}

footer .footer-wrapper .blur:nth-child(1) {
    top: 0;
    left: 0;
}

footer .footer-wrapper .blur:nth-child(2) {
    bottom: 0;
    right: 0;
}

footer .footer-wrapper .column {
    position: relative;
    z-index: 1;
}

footer .footer-wrapper .column .logo {
    max-width: 100px;
    margin-bottom: 1.5rem;
}

footer .footer-wrapper .column p {
    color: #9d9d9d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

footer .footer-wrapper .column .contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #60fa7b;
}

footer .footer-wrapper .column .socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

footer .footer-wrapper .column .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #191919;
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

footer .footer-wrapper .column .socials a:hover {
    background-color: #1e8c5b;
    transform: translateY(-5px);
}

footer .footer-wrapper .column h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

footer .footer-wrapper .column>a {
    display: block;
    color: #9d9d9d;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

footer .footer-wrapper .column>a:hover {
    color: #1e8c5b;
}

.copyright {
    max-width: 1200px;
    margin: auto;
    padding: 1.5rem 2rem;
    color: #9d9d9d;
    font-size: 0.875rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Utility Classes */
.w-100 {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1200px) {

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

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

@media (max-width: 992px) {
    header {
        grid-template-columns: 1fr;
    }

    header .image {
        order: -1;
    }

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

    footer .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #141414;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

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

    footer .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    footer .footer-wrapper .column .logo {
        margin: 0 auto 1.5rem;
    }

    footer .footer-wrapper .column .socials {
        justify-content: center;
    }

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

@media (max-width: 576px) {
    header .content h1 {
        font-size: 2.5rem;
    }

    .product-categories {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        width: 100%;
    }
}

.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: #fff;
}

/* handle m-show and m-hide */
@media (min-width: 768px) {

    .m-show {
        display: none !important;
    }

    .m-hide {
        display: inline-flex !important;
    }
}

@media (max-width: 768px) {
    .m-show {
        display: block !important;
    }

    .m-hide {
        display: none !important;
    }
}


@media (max-width: 768px) {

    section,
    header {
        padding: 2rem;
    }

    section.hero {
        text-align: center;

    }

    body.landing .badge {
        margin: 1rem;
    }

    section.hero .content p {
        margin-bottom: 3rem;
    }


    .hero-buttons {
        margin-bottom: 3rem;
    }

    .slide-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: flex-end;
        gap: 2rem;
        padding-bottom: 3rem;
        height: 100%;
        background: linear-gradient(to top, #000000, #00000082);
    }

    .step-connector {
        display: none;
    }

    .steps-container {
        align-items: center;

    }

    .contact-email {
        justify-content: center;
    }

}


/* Products Container */
body.dashboard .products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 600px), 1fr));
    gap: 2rem;
}

/* Empty State */
body.dashboard .empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

body.dashboard .empty-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background-color: var(--primary-light);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body.dashboard .empty-state h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text-primary);
}

body.dashboard .empty-state p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
}

/* Product Card */
body.dashboard .product-card {
    background-color: #191919;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: fit-content;
    overflow: hidden;
}

body.dashboard .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Product Header */
body.dashboard .product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

body.dashboard .product-id {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* Product Body */
body.dashboard .product-body {
    padding: 1.5rem;
    flex: 1;
    padding-top: 0;
}

body.dashboard .product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1.25rem;
}

body.dashboard .section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #636363;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.dashboard .features-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

body.dashboard .feature-item {
    font-size: 0.875rem;
}

body.dashboard .feature-item:last-child {
    border-bottom: none;
}

body.dashboard .feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.875rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Product Stats */
body.dashboard .product-stats {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

body.dashboard .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #141414;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100px;

}

body.dashboard .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

body.dashboard .stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Variants Section */
body.dashboard .variants-section {
    padding: 1.5rem;
    background-color: #191919;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.dashboard .variants-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

body.dashboard .variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

/* Variant Card */
body.dashboard .variant-card {
    background-color: #141414;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: fit-content;
    overflow: hidden;
}

body.dashboard .variant-card:hover {
    box-shadow: var(--shadow);
}

/* Variant Header */
body.dashboard .variant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #141414;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Variant Body */
body.dashboard .variant-body {
    padding: 1rem;
}

body.dashboard .variant-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

body.dashboard .variant-price {
    margin-bottom: 1rem;
}

body.dashboard .price-value {
    font-weight: 600;
    display: inline-block;
    font-size: 0.75rem;
    color: #f7f7f7;
    background-color: #30303054;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    border: 1px solid #2c2c2c;
}

body.dashboard .stock-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.dashboard .keyauth-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.dashboard .keyauth-item,
body.dashboard .stock-count {
    font-size: 0.75rem;
    color: #f7f7f7;
    background-color: #30303054;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    border: 1px solid #2c2c2c;
}

body.dashboard .keyauth-label,
body.dashboard .stock-label {
    font-weight: 600;
    margin-right: 0.25rem;
}

/* Empty Variants */
body.dashboard .empty-variants {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

body.dashboard .empty-variants p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0 0 1rem;
}

/* Utility Classes */
body.dashboard .hidden {
    display: none !important;
}

body.dashboard .delete-warning {
    color: var(--danger-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

body.dashboard .stock-warning {
    color: var(--danger-color);
    font-size: 0.75rem;
    margin: 0.5rem 0 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    body.dashboard .products-container {
        grid-template-columns: 1fr;
    }

    body.dashboard .variants-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    body.dashboard .product-header,
    body.dashboard .variant-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    body.dashboard .product-actions,
    body.dashboard .variant-actions {
        align-self: flex-end;
    }
}

body.dashboard .btn-icon {
    background-color: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
}

