/* ================= FONT DEFINITIONS ================= */
/* علی عزیز، فایل‌های فونت را در پوشه فونت‌های پروژه خود (مثلاً wwwroot/fonts) قرار بده و مسیرهای زیر را تنظیم کن */
@font-face {
    font-family: 'Dana';
    src: url('../fonts/Dana-Regular.woff2') format('woff2'), url('../fonts/Dana-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dana';
    src: url('../fonts/Dana-Medium.woff2') format('woff2'), url('../fonts/Dana-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dana';
    src: url('../fonts/Dana-Bold.woff2') format('woff2'), url('../fonts/Dana-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dana';
    src: url('../fonts/Dana-Black.woff2') format('woff2'), url('../fonts/Dana-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* فونت انگلیسی هندسی و مدرن مشابه کارت ویزیت */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* اولویت‌دهی فونت: برای متون فارسی دانا و برای متون انگلیسی/اعداد Barlow Condensed */
body, button, input, textarea, select {
    font-family: "Dana", "Barlow Condensed", -apple-system, BlinkMacSystemFont, sans-serif;

}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle, #1b263b, #0d1b2a);
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: rgba(13, 27, 42, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 12px 35px rgba(126, 217, 87, 0.28);
}

.brand-text h1 {
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 700;
}

.brand-text span {
    font-size: 12px;
    color: #9fb3c8;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .nav-links a {
        font-size: 14px;
        color: #dbe7f3;
        transition: 0.3s;
        font-weight: 500;
    }

        .nav-links a:hover {
            color: #7ed957;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 22px;
    border-radius: 16px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(180deg, #7ed957, #3a8c00);
    color: #0d1b2a;
    box-shadow: 0 14px 35px rgba(126, 217, 87, 0.25);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(126, 217, 87, 0.38);
    }

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.12);
    }

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ================= HERO / SLIDER ================= */

.hero {
    min-height: 100vh;
    padding-top: 82px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        width: 580px;
        height: 580px;
        background: rgba(126, 217, 87, 0.12);
        border-radius: 50%;
        filter: blur(60px);
        left: -180px;
        top: 120px;
    }

    .hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(65, 90, 119, 0.24);
        border-radius: 50%;
        filter: blur(70px);
        right: -100px;
        bottom: -70px;
    }

.slider {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.slide {
    display: none;
    width: 100%;
    animation: fadeSlide 0.7s ease;
}

    .slide.active {
        display: block;
    }

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(126, 217, 87, 0.12);
    color: #9cff7a;
    border: 1px solid rgba(126, 217, 87, 0.24);
    font-size: 13px;
    margin-bottom: 22px;
    font-weight: 500;
}

.hero-content h2 {
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 20px;
}

    .hero-content h2 span {
        color: #7ed957;
    }

.hero-content p {
    max-width: 620px;
    color: #b9c9d9;
    font-size: 17px;
    line-height: 2;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-content {
    padding-left: 40px;
    text-align: center;
}

.hero-card {
    position: relative;
    min-height: 560px;
    border-radius: 36px;
    transform: scale(1.05);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)), url("https://images.unsplash.com/photo-1622279457486-62dcc4a431d6?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    margin-right: -40px;
}

    .hero-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(13,27,42,0.92), transparent 65%);
    }

.hero-card-info {
    position: absolute;
    z-index: 2;
    bottom: 26px;
    right: 26px;
    left: 26px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(13, 27, 42, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
}

    .hero-card-info h3 {
        font-size: 22px;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .hero-card-info p {
        color: #c8d6e5;
        font-size: 14px;
        line-height: 1.8;
    }

.slider-controls {
    position: absolute;
    z-index: 5;
    bottom: 45px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.28);
    cursor: pointer;
    transition: 0.3s;
}

    .dot.active {
        width: 38px;
        background: #7ed957;
    }

/* ================= SECTIONS ================= */

.section {
    padding: 95px 0;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 45px;
}

    .section-head .mini-title {
        color: #7ed957;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .section-head h2 {
        font-size: clamp(28px, 4vw, 44px);
        margin-bottom: 12px;
        font-weight: 800;
    }

    .section-head p {
        color: #aebdca;
        max-width: 650px;
        margin: auto;
        line-height: 2;
    }

.glass-card {
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.18);
}

/* ================= SERVICES ================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    padding: 30px;
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(126,217,87,0.38);
    }

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(180deg, #7ed957, #3a8c00);
    color: #0d1b2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: #b9c9d9;
    line-height: 2;
    font-size: 15px;
}

/* ================= CAFE PRODUCTS ================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    overflow: hidden;
    transition: 0.3s;
}

    .product-card:hover {
        transform: translateY(-8px);
    }

.product-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    border-radius: 28px 28px 0 0;
}

.product-body {
    padding: 22px;
}

    .product-body h3 {
        font-size: 18px;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .product-body p {
        color: #aebdca;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 16px;
    }

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    color: #7ed957;
    font-weight: 900;
    font-size: 18px;
}

.small-btn {
    padding: 9px 14px;
    border-radius: 14px;
    background: rgba(126, 217, 87, 0.14);
    color: #9cff7a;
    border: 1px solid rgba(126,217,87,0.25);
    cursor: pointer;
    transition: 0.3s;
}

    .small-btn:hover {
        background: #7ed957;
        color: #0d1b2a;
    }

/* ================= ABOUT ================= */

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.about-img {
    min-height: 460px;
    border-radius: 36px;
    background: url("https://images.unsplash.com/photo-1554068865-24cecd4e34b8?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

    .about-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(13,27,42,0.55), transparent);
    }

.about-content {
    padding: 36px;
}

    .about-content h2 {
        font-size: 38px;
        margin-bottom: 18px;
        font-weight: 800;
    }

    .about-content p {
        color: #b9c9d9;
        line-height: 2.1;
        margin-bottom: 24px;
    }

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stat {
    padding: 20px;
    text-align: center;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

    .stat strong {
        display: block;
        font-size: 28px;
        color: #7ed957;
        margin-bottom: 6px;
        font-weight: 900;
    }

    .stat span {
        color: #b9c9d9;
        font-size: 13px;
    }

/* ================= GALLERY ================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    height: 240px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

    .gallery-item.large {
        grid-column: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.45s;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

    .gallery-item::after {
        content: "مشاهده تصویر";
        position: absolute;
        inset: 0;
        background: rgba(13,27,42,0.55);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.3s;
        color: #fff;
        font-weight: 800;
    }

    .gallery-item:hover::after {
        opacity: 1;
    }

/* ================= CONTACT ================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
}

.contact-info {
    padding: 34px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    background: rgba(126,217,87,0.14);
    color: #7ed957;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item p {
    color: #b9c9d9;
    line-height: 1.8;
    font-size: 14px;
}

.contact-form {
    padding: 34px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-control {
    width: 100%;
    padding: 15px 17px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.07);
    color: #fff;
    outline: none;
    transition: 0.3s;
}

    .form-control::placeholder {
        color: #8ea3b5;
    }

    .form-control:focus {
        border-color: rgba(126,217,87,0.55);
        box-shadow: 0 0 0 4px rgba(126,217,87,0.08);
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ================= MODAL ================= */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .modal.active {
        display: flex;
    }

    .modal img {
        max-width: 92vw;
        max-height: 85vh;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.2);
    }

.modal-close {
    position: absolute;
    top: 22px;
    left: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #0d1b2a;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ================= FOOTER ================= */

.footer {
    padding: 36px 0;
    background: rgba(0,0,0,0.20);
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #94a9ba;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .nav-links {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 82px);
        background: rgba(13, 27, 42, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: 0.35s;
        border-left: 1px solid rgba(255,255,255,0.08);
    }

        .nav-links.active {
            right: 0;
        }

    .menu-toggle {
        display: block;
    }

    .nav-actions .btn-primary {
        display: none;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 72px;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-card {
        min-height: 360px;
    }

    .products-grid,
    .gallery-grid,
    .stats,
    .form-row {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .brand-text h1 {
        font-size: 17px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.product-tab {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #d8fce8;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 500;
}

    .product-tab:hover,
    .product-tab.active {
        background: linear-gradient(135deg, #21c86a, #0e8f4b);
        color: #fff;
        border-color: transparent;
    }

.product-card {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: linear-gradient(135deg, #21c86a, #0e8f4b);
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
}

.product-img {
    height: 230px;
    background-size: cover;
    background-position: center;
    border-radius: 22px 22px 0 0;
    transition: 0.45s ease;
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-body {
    padding: 22px;
}

.product-category {
    display: inline-block;
    color: #21c86a;
    font-size: 13px;
    margin-bottom: 8px;
}

.product-body h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-body p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.9;
    font-size: 14px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 22px;
}

.price {
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

.small-btn {
    border: 0;
    background: rgba(33, 200, 106, 0.14);
    color: #28e982;
    padding: 9px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .small-btn:hover {
        background: #21c86a;
        color: #fff;
    }

.footer {
    padding: 70px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 35px;
}

.footer-brand p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 2;
    margin-top: 18px;
}

.footer .brand-logo img {
    width: 55px;
    height: auto;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a,
.footer-socials a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: 0.3s ease;
}

    .footer-col a:hover,
    .footer-socials a:hover {
        color: #21c86a;
    }

.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

    .footer-socials a {
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .product-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================
   PRODUCT DETAILS PAGE
========================= */

.details-hero {
    padding: 130px 0 30px;
    background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.18), transparent 30%), linear-gradient(180deg, #07110c 0%, #050805 100%);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #b8c9bc;
    font-size: 14px;
}

    .breadcrumb a {
        color: #8df0b5;
        text-decoration: none;
        transition: 0.3s;
    }

        .breadcrumb a:hover {
            color: #fff;
        }

.product-details-section {
    padding-top: 30px;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
    align-items: start;
}

.product-gallery,
.product-info,
.product-tabs-box {
    border: 1px solid rgba(255,255,255,0.08);
}

.product-main-image {
    width: 100%;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    background: #0a0f0c;
}

    .product-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

    .product-thumbs .thumb {
        width: 90px;
        height: 90px;
        border-radius: 14px;
        object-fit: cover;
        cursor: pointer;
        border: 2px solid transparent;
        opacity: 0.72;
        transition: 0.3s;
        background: #111;
    }

        .product-thumbs .thumb:hover {
            opacity: 1;
            transform: translateY(-3px);
        }

        .product-thumbs .thumb.active {
            border-color: #2ecc71;
            opacity: 1;
            box-shadow: 0 0 18px rgba(46,204,113,0.25);
        }

.product-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.single-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(46,204,113,0.15);
    color: #98f5bc;
    font-size: 13px;
    border: 1px solid rgba(46,204,113,0.25);
}

.single-status {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

    .single-status.in-stock {
        background: rgba(76, 175, 80, 0.14);
        color: #8ff0a1;
        border: 1px solid rgba(76, 175, 80, 0.3);
    }

.single-product-title {
    font-size: 36px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 800;
}

.single-product-subtitle {
    font-size: 16px;
    color: #bfd3c4;
    margin-bottom: 24px;
    line-height: 1.9;
}

.single-price-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.single-price-label {
    color: #c8d6cc;
    font-size: 15px;
}

.single-price {
    color: #2ecc71;
    font-weight: 800;
    font-size: 28px;
}

.single-short-desc {
    color: #d3ddd6;
    line-height: 2;
    margin-bottom: 28px;
}

.single-features h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #fff;
    font-weight: 700;
}

.single-features ul {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.single-features li {
    position: relative;
    padding-right: 22px;
    color: #cfe0d4;
}

    .single-features li::before {
        content: "✓";
        position: absolute;
        right: 0;
        top: 0;
        color: #2ecc71;
        font-weight: 800;
    }

.single-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 26px;
}

.qty-box {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

    .qty-btn:hover {
        background: rgba(46,204,113,0.12);
        color: #2ecc71;
    }

.qty-box input {
    width: 56px;
    height: 44px;
    border: none;
    text-align: center;
    background: transparent;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.big-action-btn {
    min-width: 180px;
    text-align: center;
}

.single-extra-info {
    display: grid;
    gap: 10px;
    color: #c6d3ca;
    font-size: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.product-tabs-box {
    margin-top: 35px;
    padding: 28px;
}

.details-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
}

.details-tab {
    border: none;
    background: rgba(255,255,255,0.05);
    color: #d6e1d9;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
    font-weight: 500;
}

    .details-tab:hover {
        background: rgba(46,204,113,0.12);
        color: #8df0b5;
    }

    .details-tab.active {
        background: #2ecc71;
        color: #041109;
        font-weight: 700;
    }

.details-tab-content {
    display: none;
    color: #d2ddd5;
    line-height: 2;
    animation: fadeDetails 0.35s ease;
}

    .details-tab-content.active {
        display: block;
    }

@keyframes fadeDetails {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.spec-item {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

    .spec-item span {
        display: block;
        color: #9eb2a4;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .spec-item strong {
        color: #fff;
        font-size: 16px;
    }

.comment-box {
    text-align: center;
    padding: 24px 10px 10px;
}

    .comment-box p {
        margin-bottom: 16px;
        color: #c9d6ce;
    }

.related-products-wrap {
    margin-top: 60px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .product-main-image {
        height: 420px;
    }

    .single-product-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .details-hero {
        padding: 110px 0 24px;
    }

    .product-main-image {
        height: 320px;
    }

    .product-thumbs .thumb {
        width: 72px;
        height: 72px;
    }

    .single-product-title {
        font-size: 26px;
    }

    .single-price {
        font-size: 24px;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .single-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .big-action-btn {
        width: 100%;
        min-width: auto;
    }
}
