@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg-dark: #0F0F0F;
    --bg-dark-2: #1A1A1A;
    --accent-blue: #1AFFF1;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --glow-rgb: 26, 255, 241;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

/* Typography Standardization */
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 950px;
    margin: auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
}

/* Header Styles */
.navbar-custom {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

    .navbar-custom.scrolled {
        /* background-color: rgba(15, 15, 15, 0.9) !important; */
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(var(--glow-rgb), 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        padding: 0px !important;
    }

.logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--glow-rgb), 0.1);
    border: 1px solid rgba(var(--glow-rgb), 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .logo-icon:hover {
        box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.4);
    }

.navbar-custom .nav-link {
    color: var(--text-gray);
    position: relative;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

    .navbar-custom .nav-link:hover {
        color: var(--accent-blue);
    }

    .navbar-custom .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-blue);
        transition: width 0.3s ease;
    }

    .navbar-custom .nav-link:hover::after {
        width: 100%;
    }

.btn-primary-custom {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 255, 241, 0.3);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    color: #1AFFF1;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

    .btn-primary-custom:hover {
        background: rgba(26, 255, 241, 0.1);
        border-color: rgba(26, 255, 241, 0.8);
        box-shadow: 0 0 15px rgba(26, 255, 241, 0.3);
        transform: scale(1.05);
        color: #1AFFF1;
    }

.btn-outline-custom {
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    background: transparent;
    transition: all 0.3s ease;
}

    .btn-outline-custom:hover {
        background: rgba(var(--glow-rgb), 0.1);
        color: var(--accent-blue);
    }

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(var(--glow-rgb), 0.2);
        border-radius: 16px;
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .navbar-nav .nav-item {
        margin-bottom: 1rem;
        text-align: center;
    }

    .d-flex.align-items-center.gap-3 {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-custom {
        width: 100%;
        text-align: center;
    }

    .glow-orb,
    .glow-orb-1,
    .glow-orb-2 {
        width: 200px !important;
        height: 200px !important;
        filter: blur(80px) !important;
    }
}

/* Product Card Text Truncation */
.product-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-new {
    color: #1AFFF1;
    font-weight: 700;
    font-size: 1.25rem;
}

.price-old {
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 0.9rem;
    opacity: 0.7;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 255, 241, 0.3);
    color: #1AFFF1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
}

    .slider-btn:hover {
        background: rgba(26, 255, 241, 0.2);
        box-shadow: 0 0 15px rgba(26, 255, 241, 0.3);
    }


/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 130px !important;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--bg-dark), var(--bg-dark-2), var(--bg-dark));
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: linear-gradient(var(--accent-blue) 1px, transparent 1px), linear-gradient(90deg, var(--accent-blue) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}


.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-blue);
    opacity: 0.2;
    filter: blur(150px);
    border-radius: 50%;
    top: 33%;
    left: 50%;
    transform: translateX(-50%);
}

.glow-orb-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    opacity: 0.2;
    filter: blur(150px);
    border-radius: 50%;
    top: 0;
    left: 25%;
    animation: pulse 3s ease-in-out infinite;
}

.glow-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    opacity: 0.2;
    filter: blur(150px);
    border-radius: 50%;
    bottom: 0;
    right: 25%;
    animation: pulse 3s ease-in-out infinite 1s;
}

@keyframes pulse {

    0%, 100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes pulse2 {

    0%, 100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.7;
    }
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(var(--glow-rgb), 0.1);
    border: 1px solid rgba(var(--glow-rgb), 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(var(--glow-rgb), 0.2);
}

.gradient-text {
    background: linear-gradient(90deg, #1AFFF1, #93ff00, #1AFFF1);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s linear infinite;
    font-weight: 800;
    letter-spacing: -1px;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-image-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--glow-rgb), 0.3), transparent);
    filter: blur(60px);
}

.hero-image {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(var(--glow-rgb), 0.4);
    transition: transform 0.7s ease;
}

    .hero-image:hover {
        transform: scale(1.05);
    }

.stats-item {
    text-align: center;
    padding: 1rem;
}

.stats-number {
    font-size: 2.5rem;
    color: var(--accent-blue);
    font-weight: 700;
}

.stats-label {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Glass Card */
.glass-card {
    background: linear-gradient(to bottom right, var(--bg-dark-2), var(--bg-dark));
    border: 1px solid rgba(var(--glow-rgb), 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .glass-card:hover {
        border-color: rgba(var(--glow-rgb), 0.5);
        box-shadow: 0 0 40px rgba(var(--glow-rgb), 0.2);
        transform: translateY(-5px);
    }

.glass-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(var(--glow-rgb), 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.glass-card:hover .glass-card-bg {
    opacity: 1;
}

/* Product Card */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-image {
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Feature Icon */
.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, rgba(var(--glow-rgb), 0.2), rgba(var(--glow-rgb), 0.05));
    border: 1px solid rgba(var(--glow-rgb), 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

    .feature-icon-box:hover {
        box-shadow: 0 0 25px rgba(var(--glow-rgb), 0.4);
    }

    .feature-icon-box i {
        font-size: 2.5rem;
        color: var(--accent-blue);
    }

/* Lifestyle Banner */
.lifestyle-banner {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    height: 70dvh;
    display: grid;
    place-content: center;
}

.lifestyle-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1637759898746-283c2d6c24c5?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxtdXNpYyUyMHByb2R1Y2VyJTIwc3R1ZGlvfGVufDF8fHx8MTc2NDk4MjkxOHww&ixlib=rb-4.1.0&q=80&w=1080&utm_source=figma&utm_medium=referral');
    background-size: cover;
    background-position: center;
    animation: bg-move 20s ease-in-out infinite alternate;
}

@keyframes bg-move {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.7);
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: .15em solid var(--accent-blue);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .05em;
    animation: typing 8s steps(40, end) infinite, blink-caret .75s step-end infinite;
    display: inline-block;
    max-width: fit-content;
}

@keyframes typing {
    0% {
        width: 0
    }

    20% {
        width: 0
    }

    50% {
        width: 100%
    }

    70% {
        width: 100%
    }

    90% {
        width: 0
    }

    100% {
        width: 0
    }
}

@keyframes blink-caret {

    from, to {
        border-color: transparent
    }

    50% {
        border-color: var(--accent-blue);
    }
}

.lifestyle-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(var(--glow-rgb), 0.1), transparent);
}

/* Testimonial Card */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.3);
    object-fit: cover;
}

.star-rating i {
    color: var(--accent-blue);
}



/* FAQ Accordion */
.accordion-custom .accordion-item {
    background: linear-gradient(to bottom right, var(--bg-dark-2), var(--bg-dark));
    border: 1px solid rgba(var(--glow-rgb), 0.2);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

    .accordion-custom .accordion-item:hover {
        border-color: rgba(var(--glow-rgb), 0.4);
    }

.accordion-custom .accordion-button {
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

    .accordion-custom .accordion-button:not(.collapsed) {
        background: transparent;
        color: var(--text-white);
        box-shadow: none;
    }

    .accordion-custom .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231AFFF1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-custom .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(var(--glow-rgb), 0.4);
    }

.accordion-custom .accordion-body {
    color: var(--text-gray);
    background: transparent;
    padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--accent-blue);
    opacity: 0.1;
    filter: blur(120px);
    border-radius: 50%;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #0a0a0a, #050505);
    border-top: 1px solid rgba(var(--glow-rgb), 0.1);
    padding-top: 100px;
    padding-bottom: 25px;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(var(--glow-rgb), 0.3), transparent);
    }

.footer-brand {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .footer-link:hover {
        color: var(--accent-blue) !important;
        transform: translateX(5px);
        text-shadow: 0 0 10px rgba(var(--glow-rgb), 0.5);
    }

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

    .social-icon:hover {
        background: var(--accent-blue);
        color: black;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(var(--glow-rgb), 0.3);
        border-color: var(--accent-blue);
    }

.footer-bottom {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-watermark {
    font-size: 10vw;
    font-weight: 800;
    color: rgb(255 255 255 / 2%);
    text-align: center;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.bg-dark-gradient {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-dark-2));
}

.bg-dark-gradient-reverse {
    background: linear-gradient(to bottom, var(--bg-dark-2), var(--bg-dark));
}

@media screen and (max-width: 768px) {
    section {
        padding: 50px 0px !important;
    }

    .glass-card {
        padding: 1rem !important;
    }

    .product-slider {
        overflow: visible;
        padding: 0rem 0.1rem;
    }

    .hero-section {
        padding-top: 90px !important;
    }

    .breadcrumb {
        font-size: 10px !important;
    }
}

section {
    padding-block: 2rem !important;
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 6rem;
    }

    section {
        padding-block: 5rem !important;
    }
}

/* Product Details Page Styles */
.product-details-section {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.product-gallery-card {
    min-height: 356px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-stars {
    font-size: 1.2rem;
    color: var(--accent-blue);
}

.nav-pills .nav-link {
    color: var(--text-gray);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

    .nav-pills .nav-link:hover {
        color: var(--text-white);
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-pills .nav-link.active {
        background: rgba(var(--glow-rgb), 0.1);
        color: var(--accent-blue);
        border-color: rgba(var(--glow-rgb), 0.3);
        box-shadow: 0 0 15px rgba(var(--glow-rgb), 0.2);
    }

/* Background for specs section */
.bg-dark-2 {
    background-color: var(--bg-dark-2);
}

.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
    color: rgb(117 120 123 / 75%) !important;
}

.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
    color: rgb(117 120 123 / 75%) !important;
}

/* Product Gallery Styles - Swiper.js */
.swiper {
    width: 100%;
    height: 100%;
}

.product-gallery-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.mySwiper2 {
    height: 350px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    /* Glass effect on the slider container or slides */
}

    .mySwiper2 .swiper-slide {
        background: linear-gradient(to bottom right, var(--bg-dark-2), var(--bg-dark));
        border: 1px solid rgba(var(--glow-rgb), 0.2);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        padding: 2rem;
    }

        .mySwiper2 .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.mySwiper {
    height: auto;
    box-sizing: border-box;
    padding: 10px 0;
    width: 100%;
}

@media (min-width: 992px) {
    .mySwiper {
        height: 500px !important;
        width: 120px !important;
        padding: 0;
        margin-right: 1rem;
    }

    .product-gallery-container {
        /* Ensure main slider takes remaining width */
        flex: 1;
    }

    .mySwiper2 {
        height: 500px;
    }
}

.mySwiper .swiper-slide {
    aspect-ratio: 1/1;
    height: auto;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .mySwiper .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(var(--glow-rgb), 0.3);
}

.hero-prev,
.hero-next {
    color: var(--accent-blue) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(var(--glow-rgb), 0.2);
}

    .hero-prev:hover,
    .hero-next:hover {
        background: rgba(var(--glow-rgb), 0.2);
        box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.4);
    }

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-blue) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(var(--glow-rgb), 0.2);
}

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem !important;
        font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: rgba(var(--glow-rgb), 0.2);
        box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.4);
    }

/* Custom Accordion Styles - Dark Theme */
.custom-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 !important;
}

    .custom-accordion .accordion-item:last-child {
        border-bottom: none;
    }

.custom-accordion .accordion-button {
    background-color: transparent;
    color: var(--text-white);
    box-shadow: none;
    padding: 1.5rem 0;
    font-weight: 500;
    font-size: 1.1rem;
}

    .custom-accordion .accordion-button:not(.collapsed) {
        color: var(--accent-blue);
        background-color: transparent;
        box-shadow: none;
    }

    /* Custom Icon - White when collapsed, Accent when open */
    .custom-accordion .accordion-button::after {
        filter: brightness(0) invert(1);
        /* Make it white */
        transition: transform 0.3s ease;
    }

    .custom-accordion .accordion-button:not(.collapsed)::after {
        /* Use a custom colored SVG or just keep it white/accent */
        filter: none;
        /* Reset filter if setting specific image, or adjust to match accent */
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231AFFF1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(-180deg);
    }

.custom-accordion .accordion-body {
    padding: 0 0 1.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

    .spec-row:last-child {
        border-bottom: none;
    }

.spec-label {
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Products Page Styles */
.page-header {
    background: radial-gradient(circle at center, rgba(var(--glow-rgb), 0.1) 0%, transparent 70%);
}

.filter-bar {
    position: relative;
    z-index: 10;
}

.btn-filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--glow-rgb), 0.2);
    color: var(--text-gray);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .btn-filter:hover {
        background: rgba(var(--glow-rgb), 0.1);
        color: var(--text-white);
        border-color: rgba(var(--glow-rgb), 0.4);
    }

    .btn-filter.active {
        background: var(--accent-blue);
        color: #000;
        border-color: var(--accent-blue);
        box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.3);
    }

.product-item {
    transition: all 0.5s ease;
}


.ProductsRow {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .ProductsRow {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}



.contact-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(var(--glow-rgb), 0.1);
    border: 1px solid rgba(var(--glow-rgb), 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover .contact-icon-box {
    background: var(--accent-blue);
    color: black;
    box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.4);
}

.contact-icon-box i {
    font-size: 2rem;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.glass-card:hover .contact-icon-box i {
    color: black;
}
