/* Local Fonts (Outfit) */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/outfit/outfit-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/outfit/outfit-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/outfit/outfit-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/outfit/outfit-700.ttf') format('truetype');
}

:root {
    --primary-color: #78BE43;
    /* Green from logo */
    --secondary-color: #1A1A1A;
    /* Dark Gray/Black */
    --accent-color: #FFFFFF;
    --text-color: #E0E0E0;
    --bg-dark: #0D0D0D;
    --card-bg: #1A1A1A;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

#tsparticles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    /* Above video-overlay but below content */
    pointer-events: none;
    background: transparent;
}

/* Video Background Styles */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: var(--bg-dark);
}

#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.6);
    /* Dark overlay for readability */
    z-index: 0;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    width: 100%;
    height: 130px;
    /* Ensure full width */
    margin: 0 auto;
}

.logo img {
    height: 150px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(13, 13, 13, 0.4) !important;
    /* Semi-transparent fallback */
    background-blend-mode: overlay;
}

/* Ensure the background images themselves have some transparency */
.swiper-slide[style*="background-image"] {
    background-image: linear-gradient(rgba(13, 13, 13, 0.4), rgba(13, 13, 13, 0.4)), var(--bg-img) !important;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.3) 100%);
    z-index: 1;
}

.swiper-slide {
    background-color: transparent !important;
    background-blend-mode: overlay;
    /* Optional: helps blend image with background video if image is partially transparent */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 100%;
    padding: 10% 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #629e35;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(120, 190, 67, 0.3);
}

/* Common Section Styling */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Section container below particles layer */
}

section>* {
    position: relative;
    z-index: 5;
    /* Content inside section above particles */
}

/* Override for Hero Section */
.hero {
    padding: 0;
    max-width: 100%;
    margin: 0;
}

/* Override for Sections that should be full width background but content centered */
#marcas,
#depoimentos {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

#marcas>div,
#depoimentos>div {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
}

.section-title p {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Cost Benefit Section */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    transition: background 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    /* Removemos transition 'all' para que o Vanilla-Tilt não tenha lag no transform */
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transform-style: preserve-3d;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.benefit-card:hover {
    background: rgba(26, 26, 26, 0.5);
    /* Fundo semi-transparente para o efeito vidro */
    backdrop-filter: blur(12px);
    /* Efeito de desfoque de vidro */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    /* Reflexo superior do vidro */
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    /* Reflexo esquerdo do vidro */
    box-shadow:
        -10px 20px 30px rgba(0, 0, 0, 0.6),
        /* Sombra externa projetada */
        inset 0 0 15px rgba(255, 255, 255, 0.05);
    /* Brilho interno */
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

/* Brands Section */
.brands-slider {
    padding: 20px 0;
    margin: 20px 0px 10px 0px;
}

.brand-item {
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item img {
    filter: grayscale(1) invert(1);
    opacity: 0.6;
    max-width: 150px;
    height: auto;
    transition: var(--transition);
}

.brand-item img:hover {
    filter: grayscale(0) invert(0);
    opacity: 1;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Chat Widget Styles */
#chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-toggle-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(120, 190, 67, 0.4);
    transition: var(--transition);
}

.chat-toggle-btn i {
    font-size: 1.5rem;
}

.chat-toggle-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(120, 190, 67, 0.6);
}

.chat-window {
    width: 350px;
    height: 500px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    transition: var(--transition);
    transform-origin: bottom right;
}

.chat-window.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.5);
}

.chat-header {
    background: rgba(120, 190, 67, 0.1);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-dark);
    padding: 5px;
}

.chat-header-info h3 {
    font-size: 1rem;
    color: #fff;
}

.chat-header-info p {
    font-size: 0.8rem;
    color: #aaa;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    margin-right: 5px;
}

#close-chat {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
}

#close-chat:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.95rem;
    position: relative;
}

.message.bot,
.message.attendant {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-bottom-left-radius: 2px;
}

.message.user {
    align-self: flex-end;
    background: var(--primary-color);
    color: #fff;
    border-bottom-right-radius: 2px;
}

.chat-input-container {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
}

.chat-input-container.hidden {
    display: none;
}

#chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    color: #fff;
    outline: none;
}

#chat-input:focus {
    border-color: var(--primary-color);
}

#send-message {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Store Styles (Virtual Showcase) */
#loja {
    max-width: 99%;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0.5%;
    padding-right: 0.5%;
}

.store-container {
    padding: 50px 0;
}

.store-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.store-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar for Sidebar */
.store-sidebar::-webkit-scrollbar {
    width: 4px;
}

.store-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.store-sidebar::-webkit-scrollbar-thumb {
    background: rgba(120, 190, 67, 0.2);
    border-radius: 10px;
}

.store-main {
    flex: 1;
}

.store-header {
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-box {
    width: 100%;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.filters-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.filter-group {
    width: 100%;
}

.filter-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.filter-group select {
    width: 100%;
    padding: 12px;
}

.filter-group select:hover {
    background: rgba(255, 255, 252, 0.1);
}

/* Mobile Responsive Adjustments */
@media (max-width: 1100px) {
    .store-layout {
        flex-direction: column;
    }

    .store-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .store-header {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .search-box {
        flex: 1;
        min-width: 250px;
    }

    .filters-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .filter-group {
        flex: 1;
        min-width: 140px;
    }
}

/* Store Banner Styles */
.store-banner-area {
    margin-bottom: 50px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.storeSwiper {
    width: 100%;
    height: 400px;
}

.campaign-slide {
    position: relative;
    display: flex;
    align-items: flex-end; /* Align to bottom */
    justify-content: flex-start; /* Align to left */
    padding: 60px 8%;
    text-align: left; /* Text align left */
}

.campaign-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: none; /* Removed transform transition */
}

.swiper-slide-active .campaign-bg {
    transform: none; /* Removed scale(1.1) */
}

.campaign-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
}

.campaign-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.campaign-content h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.campaign-content p {
    font-size: 1.2rem;
    color: #fff;
    /* Brighter color for visibility */
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.campaign-content .btn {
    padding: 15px 35px;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.storeSwiper .swiper-button-next,
.storeSwiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.storeSwiper .swiper-button-next:hover,
.storeSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: #000;
}

.storeSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}

.storeSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

@media (max-width: 768px) {
    .storeSwiper {
        height: 300px;
    }

    .campaign-content h3 {
        font-size: 1.8rem;
    }

    .campaign-content p {
        font-size: 1rem;
    }
}

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

/* Responsive adjustments for the grid */
@media (max-width: 1200px) {
    .product-vitrine {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 650px) {
    .product-vitrine {
        grid-template-columns: 1fr;
    }
}

.store-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-10px);
    border-color: rgba(120, 190, 67, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #000;
}

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

.store-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-brand {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.card-description {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    flex-grow: 1;
}

.card-info-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.badge-info {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
}

.badge-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.form-buy {
    flex: 1;
}

.card-price {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.btn-buy {
    background: var(--primary-color);
    color: #fff;
    width: 100%;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.75rem;
    gap: 8px;
}

.btn-buy:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(120, 190, 67, 0.3);
}

/* Professional Select & Option Visibility Fix */
select {
    color-scheme: dark;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2378BE43' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding: 12px 40px 12px 15px;
}

option {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 10px;
}

select:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(120, 190, 67, 0.2);
}

/* Technical Specifications UI */
.btn-specs {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    padding: 0 15px;
    height: 42px;
    flex: 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(120, 190, 67, 0.3);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.75rem;
    gap: 8px;
    white-space: nowrap;
}

.btn-specs:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(120, 190, 67, 0.3);
}

.btn-share {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-share:hover {
    background: rgba(120, 190, 67, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.spec-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 50px 0;
}

.spec-modal-content {
    background: var(--card-bg);
    margin: 0 auto;
    width: 600px;
    max-width: 90%;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalAppear 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.spec-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.spec-modal-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.spec-close {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.spec-close:hover {
    opacity: 1;
    color: var(--primary-color);
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item strong {
    display: block;
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-weight: 700;
}

.spec-item span {
    color: #eee;
    font-size: 1rem;
}

.spec-item.full-width {
    grid-column: 1 / -1;
}

.spec-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.spec-footer {
    margin-top: 10px;
}

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

/* Product Gallery Lightbox */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    width: 900px;
    max-width: 95%;
    max-height: 90vh;
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.gallery-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.gallery-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.gallery-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 300px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-main img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.gallery-nav button {
    background: rgba(120, 190, 67, 0.2);
    border: 1px solid var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.gallery-nav button:hover {
    background: var(--primary-color);
    color: #000;
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}


.gallery-thumbs img.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: translateY(-5px);
}

/* Card Zoom Hint */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.zoom-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    background: rgba(120, 190, 67, 0.9);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 10;
}

.card-img-wrapper:hover .zoom-hint {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-img-wrapper:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.card-img-wrapper img {
    transition: var(--transition);
}

.text-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
    transition: var(--transition);
}

.text-logo span {
    color: var(--primary-color);
}

.text-logo:hover {
    transform: scale(1.05);
    display: inline-block;
}