/* Alternative Design 2 - Futuristic Neon Theme */

/* Bank Gothic font-face setup */
@font-face {
    font-family: 'Bank Gothic';
    src: url('../fonts/BankGothicMediumBT.ttf') format('truetype'),
         url('../fonts/Bank Gothic Light Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #b10705;
    --primary-glow: rgba(177, 7, 5, 0.5);
    --secondary-color: #870503;
    --secondary-glow: rgba(135, 5, 3, 0.5);
    --text-color: #ffffff;
    --text-light: #aaaaaa;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-light: #111111;
    --font-primary: 'Bank Gothic', 'Orbitron', 'Exo 2', sans-serif;
    --font-secondary: 'Exo 2', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bank Gothic', Arial, sans-serif !important;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-darker);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 15px;
}

.contact-info a {
    color: var(--text-light);
}

.contact-info a:hover {
    color: var(--primary-color);
}

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

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dsn-header {
    padding: 10px 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: none;
}

.header.scrolled {
    top: 0;
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
}

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

.header.scrolled .logo img {
    height: 50px;
}

.menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.logo-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-contact a {
    color: var(--text-light);
    transition: var(--transition);
}

.header-contact a:hover {
    color: var(--primary-color);
}

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

.header-social {
    display: flex;
    gap: 10px;
}

.header-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    line-height: 1;
}

.header-social a i {
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-social a:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 35px;
    height: 25px;
    position: relative;
    z-index: 10;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
}

.toggle-line {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}

.toggle-line:nth-child(1) {
    top: 0px;
}

.toggle-line:nth-child(2) {
    top: 10px;
}

.toggle-line:nth-child(3) {
    top: 20px;
}

.mobile-menu-toggle.active .toggle-line:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1002;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

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

.hero-text {
    max-width: 550px;
}

.hero-image {
    max-width: 450px;
    position: relative;
}

.hero-logo {
    width: 100%;
    animation: logoGlow 3s infinite alternate;
}

.glitch-text {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.1;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, 0, 0, 0);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 var(--primary-color);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 3px 0 var(--secondary-color);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.tagline-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 15px;
}

.tagline {
    font-family: var(--font-primary);
    font-size: 2.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: gradientText 5s ease infinite;
}

.subtext {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: moveChevron 3s ease-out infinite;
}

.chevron:first-child {
    animation-delay: 0s;
}

.chevron:nth-child(2) {
    animation-delay: 0.5s;
}

.chevron:nth-child(3) {
    animation-delay: 1s;
}

.chevron:before,
.chevron:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--primary-color);
}

.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    transform: skew(0deg, -30deg);
}

/* Stats Section */
.stats {
    padding: 50px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stat-count {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-title {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-color);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    height: 3px;
    bottom: -10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-header h2::before {
    width: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header h2::after {
    width: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.section-header p {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Featured Products Section */
.featured-products {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.product-card {
    background-color: rgba(35, 35, 35, 0.85);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(177, 7, 5, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateZ(0);
    margin-bottom: 10px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(177, 7, 5, 0) 0%, rgba(177, 7, 5, 0.15) 50%, rgba(177, 7, 5, 0) 100%);
    z-index: 1;
    transition: transform 0.6s;
    transform: translateX(-100%) rotate(45deg);
}

.product-card:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(177, 7, 5, 0.4);
    border-color: rgba(177, 7, 5, 0.5);
}

.product-image {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #18181c;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-footer {
    display: flex;
    justify-content: center;
}

/* Video Showcase */
.video-showcase {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.video-text h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.video-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.video-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(177, 7, 5, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(177, 7, 5, 0.5);
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(177, 7, 5, 0.7);
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/* Categories Section */
.categories {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border: 1px solid rgba(177, 7, 5, 0.2);
    background-color: rgba(35, 35, 35, 0.8);
    transform: translateZ(0);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(177, 7, 5, 0.5);
    border-color: rgba(177, 7, 5, 0.5);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(177, 7, 5, 0) 0%, rgba(177, 7, 5, 0.15) 50%, rgba(177, 7, 5, 0) 100%);
    z-index: 2;
    transition: transform 0.6s;
    transform: translateX(-100%) rotate(45deg);
    pointer-events: none;
}

.category-card:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.category-image {
    height: 100%;
    position: relative;
}

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

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transition: var(--transition);
    z-index: 2;
}

.category-card:hover .category-overlay {
    background: linear-gradient(transparent, rgba(177, 7, 5, 0.8));
}

.category-info h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.category-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: rgba(35, 35, 35, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(135, 5, 3, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(135, 5, 3, 0.4);
    border-color: rgba(135, 5, 3, 0.5);
    background-color: rgba(40, 40, 40, 0.95);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(135, 5, 3, 0.3);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 8px 20px rgba(135, 5, 3, 0.5);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Gallery Preview */
.gallery-preview {
    position: relative;
    background: url('../images/bg2.svg') center center/cover no-repeat, linear-gradient(140deg, #18181c 60%, #1a1a1a 100%);
    background-blend-mode: multiply;
    z-index: 1;
}

.gallery-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(24,24,28,0.92);
    z-index: 2;
    pointer-events: none;
}

.gallery-preview > .container {
    position: relative;
    z-index: 3;
    background: none;
    border-radius: 0;
    padding: 42px 4vw;
    box-shadow: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border: 1px solid rgba(177, 7, 5, 0.2);
    background-color: rgba(35, 35, 35, 0.8);
    transform: translateZ(0);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(177, 7, 5, 0) 0%, rgba(177, 7, 5, 0.15) 50%, rgba(177, 7, 5, 0) 100%);
    z-index: 2;
    transition: transform 0.6s;
    transform: translateX(-100%) rotate(45deg);
    pointer-events: none;
}

.gallery-item:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(177, 7, 5, 0.5);
    border-color: rgba(177, 7, 5, 0.5);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 15px;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background-color: rgba(177, 7, 5, 0.5);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* CTA Section */
.cta {
    position: relative;
    background: url('../images/bg2.svg') center center/cover no-repeat, linear-gradient(140deg, #18181c 60%, #1a1a1a 100%);
    background-blend-mode: multiply;
    z-index: 1;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(24,24,28,0.92);
    z-index: 2;
    pointer-events: none;
}

.cta > .container {
    position: relative;
    z-index: 3;
    background: none;
    border-radius: 0;
    padding: 42px 4vw;
    box-shadow: none;
}

.cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--font-primary);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -8px;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: var(--transition);
    padding-left: 0;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-social h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -8px;
    left: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    font-size: 16px;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-newsletter p {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 5px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: var(--font-secondary);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 10px 15px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: rgba(177, 7, 5, 0.8);
    transform: translateY(-3px);
}

.btn-neon {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
    text-shadow: 0 0 5px var(--primary-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-neon:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
    text-shadow: none;
}

.btn-neon:hover::before {
    width: 100%;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-outline:hover {
    color: var(--bg-dark);
    background-color: var(--text-color);
    transform: translateY(-3px);
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-whatsapp:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--primary-glow);
    border-color: var(--primary-color);
}

.btn-whatsapp:hover::before {
    left: 100%;
    animation: shine 1.5s infinite;
}

.btn-whatsapp i {
    margin-right: 5px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.btn-whatsapp:hover i {
    color: white;
    animation: pulse 2s infinite;
}

.view-all {
    text-align: center;
    margin-top: 20px;
}

/* WhatsApp Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    animation: none;
    background-color: #128C7E;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    border: 1px solid #25D366;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 1;
    animation: ripple 2s linear infinite;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    border: 1px solid #25D366;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 1;
    animation: ripple 2s linear 1s infinite;
}

.tooltip {
    position: absolute;
    top: -40px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Chat Now Button Style */
.btn-whatsapp-chat {
    background-color: rgba(35, 35, 35, 0.9);
    color: var(--text-color);
    border: 1px solid rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-whatsapp-chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.2), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-whatsapp-chat:hover {
    background-color: #25D366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    border-color: #25D366;
}

.btn-whatsapp-chat:hover::before {
    left: 100%;
    animation: shine 1.5s infinite;
}

.btn-whatsapp-chat i {
    margin-right: 5px;
    color: #25D366;
    transition: color 0.3s ease;
}

.btn-whatsapp-chat:hover i {
    color: white;
    animation: pulse 2s infinite;
}

.section-bg2 {
    position: relative;
    background: url('../images/bg2.svg') center center/cover no-repeat;
    z-index: 1;
}

.section-bg2 > .container {
    position: relative;
    z-index: 3;
    background: #303238;
    border-radius: 22px;
    padding: 42px 4vw;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
    .section-bg2 > .container {
        padding: 22px 2vw;
        border-radius: 12px;
    }
}

/* Animations */
@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(177, 7, 5, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(177, 7, 5, 0.6)) drop-shadow(0 0 30px rgba(135, 5, 3, 0.4));
    }
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(40px, 9999px, 34px, 0);
    }
    5% {
        clip: rect(115px, 9999px, 36px, 0);
    }
    10% {
        clip: rect(8px, 9999px, 4px, 0);
    }
    15% {
        clip: rect(75px, 9999px, 104px, 0);
    }
    20% {
        clip: rect(82px, 9999px, 16px, 0);
    }
    25% {
        clip: rect(112px, 9999px, 98px, 0);
    }
    30% {
        clip: rect(54px, 9999px, 47px, 0);
    }
    35% {
        clip: rect(110px, 9999px, 31px, 0);
    }
    40% {
        clip: rect(19px, 9999px, 26px, 0);
    }
    45% {
        clip: rect(71px, 9999px, 100px, 0);
    }
    50% {
        clip: rect(84px, 9999px, 78px, 0);
    }
    55% {
        clip: rect(92px, 9999px, 29px, 0);
    }
    60% {
        clip: rect(5px, 9999px, 70px, 0);
    }
    65% {
        clip: rect(117px, 9999px, 123px, 0);
    }
    70% {
        clip: rect(120px, 9999px, 64px, 0);
    }
    75% {
        clip: rect(73px, 9999px, 130px, 0);
    }
    80% {
        clip: rect(131px, 9999px, 74px, 0);
    }
    85% {
        clip: rect(30px, 9999px, 85px, 0);
    }
    90% {
        clip: rect(87px, 9999px, 38px, 0);
    }
    95% {
        clip: rect(20px, 9999px, 133px, 0);
    }
    100% {
        clip: rect(121px, 9999px, 91px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(18px, 9999px, 95px, 0);
    }
    5% {
        clip: rect(136px, 9999px, 99px, 0);
    }
    10% {
        clip: rect(43px, 9999px, 27px, 0);
    }
    15% {
        clip: rect(55px, 9999px, 42px, 0);
    }
    20% {
        clip: rect(125px, 9999px, 69px, 0);
    }
    25% {
        clip: rect(34px, 9999px, 13px, 0);
    }
    30% {
        clip: rect(56px, 9999px, 116px, 0);
    }
    35% {
        clip: rect(3px, 9999px, 56px, 0);
    }
    40% {
        clip: rect(124px, 9999px, 15px, 0);
    }
    45% {
        clip: rect(67px, 9999px, 126px, 0);
    }
    50% {
        clip: rect(46px, 9999px, 63px, 0);
    }
    55% {
        clip: rect(93px, 9999px, 46px, 0);
    }
    60% {
        clip: rect(70px, 9999px, 25px, 0);
    }
    65% {
        clip: rect(21px, 9999px, 45px, 0);
    }
    70% {
        clip: rect(65px, 9999px, 89px, 0);
    }
    75% {
        clip: rect(99px, 9999px, 66px, 0);
    }
    80% {
        clip: rect(108px, 9999px, 62px, 0);
    }
    85% {
        clip: rect(27px, 9999px, 52px, 0);
    }
    90% {
        clip: rect(39px, 9999px, 12px, 0);
    }
    95% {
        clip: rect(134px, 9999px, 85px, 0);
    }
    100% {
        clip: rect(36px, 9999px, 91px, 0);
    }
}

@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes moveChevron {
    0% {
        opacity: 0;
        transform: translateY(0) scale3d(0.5, 0.5, 0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(10px) scale3d(1, 1, 1);
    }
    100% {
        opacity: 0;
        transform: translateY(20px) scale3d(0.5, 0.5, 0.5);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .header-inner {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .header-social {
        margin-top: 5px;
    }
    
    .logo-menu-wrapper {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-wrapper {
        margin-right: 0;
    }
    
    .mobile-menu-toggle {
        margin-left: auto;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .glitch-text {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .subtext {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image {
        max-width: 250px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 20px 30px;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-newsletter h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .products-grid,
    .categories-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .view-all {
        margin-top: 20px;
    }
    
    .cta {
        padding: 60px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin: 15px 0 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 15px;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-newsletter h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    /* Fix video showcase section layout on mobile */
    .video-text h2 {
        font-size: 1.8rem;
    }
    
    .video-text p {
        font-size: 1rem;
    }
    
    /* Improve touch target sizes for mobile */
    .nav-menu ul li a,
    .footer-links ul li a {
        padding: 12px 0;
        display: block;
    }
    
    /* Make WhatsApp Chat button full width on mobile */
    .cta-content .btn {
        display: block;
        width: 100%;
    }
    
    /* Better spacing for container elements */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    /* Improve card styling on mobile */
    .product-card, 
    .category-card,
    .feature-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 15px;
    }
    
    .product-card:hover, 
    .category-card:hover,
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .product-info {
        padding: 20px 15px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .product-info p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Fix for very small screens */
@media (max-width: 400px) {
    .hero-content .container {
        padding: 0 15px;
    }
    
    .glitch-text {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .hero-image {
        max-width: 200px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Adjust padding for better content display */
    section {
        padding: 40px 0;
    }
    
    /* Fix mobile menu */
    .nav-menu.active {
        width: 100%;
        max-width: 100%;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 576px) {
    /* Adjust container padding for smaller screens */
    .container {
        padding: 0 15px;
    }
    
    /* Fix product card overflow issues */
    .product-card, 
    .category-card, 
    .feature-card {
        width: 100%;
    }
    
    /* Ensure all buttons are full width on mobile */
    .btn-neon, 
    .btn-outline, 
    .btn-secondary, 
    .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    /* Fix section spacing */
    section {
        padding: 50px 0;
    }
    
    /* Fix margins and paddings */
    .section-header {
        margin-bottom: 30px;
    }
    
    .view-all {
        margin-top: 20px;
    }
    
    /* Fix top-bar spacing on small screens */
    .top-bar {
        padding: 5px 0;
    }
    
    /* Fix header on mobile */
    .header-inner {
        padding: 10px 0;
    }
    
    /* Make WhatsApp button smaller on mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 22px;
        right: 20px;
        bottom: 20px;
    }
    
    /* Fix hero min-height for very small devices */
    .hero {
        min-height: 480px;
    }
}

/* Fixed Modal Content for Mobile */
@media (max-width: 576px) {
    .video-modal-content {
        max-width: 95%;
    }
    
    .close-modal {
        top: -35px;
        right: 0;
        font-size: 1.5rem;
    }
    
    .modal-content {
        max-width: 95%;
        padding: 15px;
    }
    
    /* Fix mobile menu scrolling */
    .nav-menu.active {
        overflow-y: auto;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    /* Improve mobile navigation */
    .nav-menu ul li a {
        padding: 12px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    /* Make sure header is visible on scroll */
    .header.scrolled {
        background-color: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
    }
    
    /* Ensure mobile menu close button is visible */
    .mobile-menu-toggle {
        z-index: 1002;
        background-color: var(--bg-darker);
        width: 40px;
        height: 40px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 0 auto;
    }
    .stat-item {
        width: 100%;
        margin-bottom: 10px;
    }
}

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

@media (max-width: 900px) {
    .top-bar, .contact-info {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
    .menu-wrapper {
        position: relative;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #18181c;
        z-index: 2000;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        transition: all 0.3s;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100vw;
        background: none;
        position: static;
        height: auto;
        padding: 0;
    }
    .nav-menu ul li {
        width: 100%;
        text-align: center;
        padding: 18px 0;
        border-bottom: 1px solid #23242a;
    }
    .nav-menu ul li:last-child {
        border-bottom: none;
    }
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 2100;
        background: none;
        border: none;
        width: 40px;
        height: 40px;
        margin-left: 16px;
        cursor: pointer;
    }
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 18px;
        right: 24px;
        font-size: 2.2rem;
        color: #b10705;
        cursor: pointer;
        z-index: 2101;
    }
    .header-contact,
    .header-social,
    .contact-details {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
    .header-inner {
        padding: 8px 0;
    }
    .logo-menu-wrapper {
        margin-top: 0;
    }
    .header {
        border-bottom: none !important;
    }
    .header, .dsn-header {
        border-bottom: none !important;
        box-shadow: none !important;
    }
}

@media (max-width: 900px) {
    .header-contact,
    .header-social,
    .contact-details,
    .header-contact * {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
}

@media (max-width: 700px) {
    .product-card {
        min-height: 180px;
        height: auto;
        padding: 8px 6px;
        margin-bottom: 10px;
    }
    .product-image {
        height: 110px;
    }
    .product-info {
        padding: 10px 8px;
    }
}

.product-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(10,10,10,0.95);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
}
.product-modal.active {
  display: flex;
}
.product-modal-content {
  background: #18181c !important;
  color: #fff !important;
  border-radius: 18px;
  padding: 20px 4px;
  max-width: 1000px;
  width: fit-content;
    height: fit-content;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.2rem;
  color: #b10705;
  cursor: pointer;
  z-index: 10;
  opacity: 1 !important;
}
.modal-product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0 0.5rem 0;
  background: #18181c !important;
  border-radius: 12px;
}
.modal-product-image img {
  max-width: 1200px;
  max-height: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  background: #23242a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.modal-product-info {
  width: 100%;
  text-align: left;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.product-modal-content {
  background: #18181c;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 0;
  max-width: 420px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #18181c;
  color: #fff;
  padding: 1rem 1.5rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.close-modal {
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin-left: 1rem;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #ff5252;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #18181c;
  padding: 1rem 1.5rem;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
}
.modal-mrp-label {
  color: #888;
  margin-right: 0.5rem;
}
.modal-mrp-value {
  color: #ffb600 !important;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.modal-product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0 0.5rem 0;
}

.modal-product-info {
  padding: 1rem 1.5rem 0.5rem 1.5rem;
}
