:root {
    --primary-color: #06b6d4; /* Aqua */
    --secondary-color: #ec4899; /* Pink */
    --accent-color: #fce7f3; /* Light pink */
    --bg-dark: #ffffff; /* White */
    --bg-gradient: linear-gradient(135deg, #ffffff, #f0f9ff, #e0f2fe);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(6, 182, 212, 0.15);
    --text-light: #0f172a; /* Dark Navy for text */
    --text-dim: #475569; /* Slate for dim text */
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Snow Container */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1em;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--secondary-color);
}

.glow-text {
    background: linear-gradient(90deg, #00d2ff, #ec4899, #00d2ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.5), 0 0 25px rgba(236, 72, 153, 0.3);
    filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.3));
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff; /* White text on Aqua/Pink */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: #000;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(56, 189, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.phone-nav {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.phone-nav:hover {
    color: var(--secondary-color);
}

.phone-nav i {
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

.badge {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid var(--accent-color);
}

.hero-badge {
    background: #BE123C;
    color: white;
    border: none;
    font-size: 1.1rem;
    padding: 8px 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(190,18,60,0.4);
    border-radius: 30px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.stock-features {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: left;
    line-height: 1.3;
}

.sf-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.laser-preview {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(125, 211, 252, 0.2);
}

/* Features */
.features {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.checkout-title {
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(6, 182, 212, 0.05);
    border-color: rgba(6, 182, 212, 0.2);
}

.icon-box {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.icon-box i {
    background: linear-gradient(90deg, #00d2ff, #ec4899, #00d2ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4)) drop-shadow(0 0 20px rgba(236, 72, 153, 0.2));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 1.05rem;
}

.tech-specs-grid {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 0.95rem;
}

/* Showcase */
.showcase {
    padding: 50px 0;
    background: rgba(6, 182, 212, 0.03); /* Foarte pal Aqua */
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rounded-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.showcase-fade {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.showcase-fade img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: simpleCrossfade4 16s infinite ease-in-out;
}

.showcase-fade img:nth-child(1) {
    animation-delay: 0s;
}

.showcase-fade img:nth-child(2) {
    animation-delay: 4s;
}

.showcase-fade img:nth-child(3) {
    animation-delay: 8s;
}

.showcase-fade img:nth-child(4) {
    animation-delay: 12s;
}

@keyframes simpleCrossfade4 {
    0% { opacity: 0; }
    10% { opacity: 1; }
    25% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.benefits-list i {
    color: var(--secondary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.benefits-list strong {
    display: inline;
}

.benefits-list br {
    display: none;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.section-sub {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 50px;
    margin-top: -40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    /* Align center to make middle card pop if needed */
}

.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    background: rgba(56, 189, 248, 0.05);
    z-index: 10;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 10px 0;
}

.per-item {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dim);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--secondary-color);
}

/* Form Section */
.order-form-section {
    padding: 50px 0;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.full-width {
    width: 100%;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-phone {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-phone:hover {
    color: #fff;
}

.anpc-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
}

.anpc-logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.anpc-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.copyright {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
}

/* Checkout Section */
.checkout-section {
    padding: 50px 0;
    background: rgba(236, 72, 153, 0.03); /* Foarte pal Roz */
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-header h3 {
    font-size: 1.5rem;
}

/* Set Selection */
.set-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.set-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(6, 182, 212, 0.1);
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.set-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(6, 182, 212, 0.3);
}

.set-card.selected {
    border-color: var(--primary-color);
    background: rgba(56, 189, 248, 0.05);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.set-card input[type="radio"] {
    display: none;
}

.set-content {
    flex: 1;
}

.set-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.set-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.price-container-new {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.old-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label-small {
    font-size: 0.65rem;
    font-weight: 800;
    color: #F87171;
    letter-spacing: 0.5px;
    margin-bottom: -2px;
}

.old-price-v2 {
    text-decoration: line-through;
    color: #94A3B8;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.8;
}

.new-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(236, 72, 153, 0.1); /* Pink pal */
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.price-label-promo {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.set-price-v2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.unit-price-badge {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.unit-price-badge.best {
    background: #39ff14;
    color: #000;
    border: none;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    animation: simple-pulse 2s infinite;
}

@keyframes simple-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.set-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.set-price-subtitle {
    font-size: 0.55em;
    background: #38BDF8;
    color: #0F172A;
    padding: 3px 10px;
    border-radius: 12px;
    margin-top: 5px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.set-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.check-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.set-card.selected .check-icon {
    opacity: 1;
}

/* Shipping Form */
.glass-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-summary {
    background: rgba(6, 182, 212, 0.05);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-dim);
}

.summary-row span:last-child {
    font-weight: 700;
    color: var(--text-light);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(6, 182, 212, 0.1);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pulse-btn {
    font-size: 1.2rem;
    padding: 18px;
    margin-top: 10px;
}

/* Image Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.slider-btn:hover {
    background: rgba(56, 189, 248, 0.8);
    color: #fff;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 50px;
    min-height: 100vh;
}

.legal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dim);
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: var(--text-dim);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.last-updated {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
}

.back-home {
    text-align: center;
    margin: 30px 0;
}

.return-form-section {
    margin: 40px 0;
}

.return-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.return-form-section select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
}

.return-form-section select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.return-form-section textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    resize: vertical;
}

.return-form-section textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-info-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.contact-info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-box p {
    line-height: 1.8;
    color: var(--text-dim);
}

.contact-info-box a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

.captcha-group {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    padding: 15px;
}

.captcha-group label {
    font-size: 1rem;
}

.captcha-group #captcha-question {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 25px rgba(236, 72, 153, 0.3);
    z-index: 1000;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 320px;
    pointer-events: none;
}

.sales-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.sn-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.sn-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-light);
}

.sn-content small {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Unified Media Queries for Perfect Responsiveness */
@media (max-width: 1024px) {
    .container { padding: 0 15px; }
    .hero-text h1 { font-size: 2.8rem; }
    .checkout-grid { gap: 20px; }
}

@media (max-width: 768px) {
    .navbar { padding: 10px 0; }
    .logo { font-size: 1.2rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 20px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1.1rem; }
    .hero-stats, .stock-features { justify-content: center; flex-wrap: wrap; }
    .showcase-content, .checkout-grid { grid-template-columns: 1fr; gap: 30px; }
    .showcase-text { text-align: center; }
    .showcase-text h2 { margin-bottom: 20px; }
    .benefits-list { text-align: left; display: inline-block; }
    .section-title { font-size: 2rem; margin-bottom: 30px; }
    .set-card { padding: 15px; }
    .set-header h4 { font-size: 1rem; }
    .set-price-v2 { font-size: 1.5rem; }
    .tech-specs-grid { grid-template-columns: 1fr; gap: 10px; }
    .slider-wrapper { height: auto; aspect-ratio: 1 / 1; }
    .slide img { object-fit: contain; background: #f8fafc; }
    .hero { padding-top: 80px; padding-bottom: 30px; }
    .features, .showcase, .checkout-section { padding: 40px 0; }
    .feature-card { padding: 20px; }
    .sales-notification { 
        bottom: auto; top: 10px; left: 10px; right: 10px; 
        width: calc(100% - 20px); transform: translateY(-150%);
    }
    .sales-notification.show { transform: translateY(0); }
}

@media (max-width: 480px) {
    .set-card { flex-direction: column; align-items: flex-start; text-align: left; }
    .set-header { width: 100%; flex-direction: column; align-items: flex-start; gap: 10px; }
    .price-container-new {
        align-items: flex-start; width: 100%; margin-top: 10px;
        padding-top: 10px; border-top: 1px solid rgba(6, 182, 212, 0.1);
    }
    .old-price-box, .new-price-box { align-items: flex-start; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-sub { font-size: 1rem; }
    .btn-primary { width: 100%; text-align: center; padding: 15px; font-size: 1.1rem; }
    .section-title { font-size: 1.6rem; margin-bottom: 25px; }
    .slider-wrapper { height: auto; aspect-ratio: 1 / 1; }
    .features, .showcase, .checkout-section { padding: 30px 0; }
}