/* Modern Design System - Szymon RXE */
:root {
    --bg-color: #333333;
    --card-bg: rgba(26, 26, 26, 0.85);
    --header-bg: rgba(26, 26, 26, 0.95);
    --primary: #ffcc00;
    --primary-hover: #e6b800;
    --primary-gradient: linear-gradient(135deg, #ffcc00 0%, #e6b800 100%);
    --accent-gradient: linear-gradient(135deg, #E1E1E1 0%, #b3b3b3 100%);
    --text-primary: #E1E1E1;
    --text-secondary: #b3b3b3;
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-divider {
    text-align: center;
    margin: 4rem 0 3rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(to bottom, #E1E1E1 0%, #b3b3b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger delays for up to 15 items */
.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.15s; }
.product-item:nth-child(3) { animation-delay: 0.2s; }
.product-item:nth-child(4) { animation-delay: 0.25s; }
.product-item:nth-child(5) { animation-delay: 0.3s; }
.product-item:nth-child(6) { animation-delay: 0.35s; }
.product-item:nth-child(7) { animation-delay: 0.4s; }
.product-item:nth-child(8) { animation-delay: 0.45s; }
.product-item:nth-child(9) { animation-delay: 0.5s; }
.product-item:nth-child(10) { animation-delay: 0.55s; }

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 204, 0, 0.04) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 204, 0, 0.03) 0px, transparent 50%),
        radial-gradient(at 50% 50%, #262626 0px, transparent 80%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("../img/hexgrid.svg");
    background-size: 69.28px 120px;
    background-repeat: repeat;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0;
}

/* Header & Logo styling */
header {
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-logo {
    height: 5.5rem;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.5));
    transition: var(--transition);
}

.header-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

header h1 {
    font-size: 2.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation & Links */
.back-link {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary);
    transform: translateY(-50%) translateX(-5px);
}

/* Dynamic Aura */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.02) 0%, transparent 50%);
    animation: auraRotate 30s linear infinite;
    z-index: -1;
}

@keyframes auraRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Main Content */
main {
    flex: 1 0 auto;
    padding: 2rem 1rem;
}

/* Product Grid */
.product-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
    gap: 2.5rem 1.5rem;
    max-width: 1600px;
    margin: 2rem auto;
    padding: 0 2rem;
    align-items: stretch;
}

@media (max-width: 1400px) {
    .product-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .product-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
        row-gap: 3.5rem;
        column-gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-list {
        grid-template-columns: 1fr;
        row-gap: 4rem;
        padding: 0 1.5rem;
    }
}

/* Hero Section */
.hero-container {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
    margin-bottom: 5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
}

/* Intro Grid & Cards */
.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.glass-card {
    background: rgba(26, 26, 26, 0.4);
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(255, 204, 0, 0.3);
    transform: translateY(-5px);
}

.card-image-wrap {
    height: 500px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.glass-card:hover .card-image-wrap img {
    transform: scale(1.1);
}

.card-body {
    padding: 2.5rem;
}

.card-body h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.trust-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.premium-list {
    list-style: none;
    padding: 0;
}

.premium-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.list-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

/* CTA Section */
.contact-cta {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, rgba(230, 184, 0, 0.03) 100%);
    border-radius: 3rem;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.25rem 2.5rem;
    border-radius: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.primary-glow {
    background: var(--primary);
    color: #1a1a1a !important;
    font-weight: 800;
    box-shadow: 0 10px 25px -5px rgba(255, 204, 0, 0.3);
}

.primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(255, 204, 0, 0.5);
    background: var(--primary-hover);
}

.secondary-glass {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.secondary-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .hero-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-cta {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

.product-item {
    background: rgba(26, 26, 26, 0.4);
    border-radius: 1.5rem;
    padding: 1.25rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.8s ease backwards;
}

/* Shine effect on hover */
.product-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 20%,
            rgba(255, 255, 255, 0.1) 45%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 55%,
            transparent 80%);
    transform: rotate(-45deg);
    transition: all 0.8s ease;
    z-index: 5;
    pointer-events: none;
}

.product-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: rgba(26, 26, 26, 0.8);
}

.product-item:hover::after {
    left: 150%;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.product-item:hover .product-image {
    transform: scale(1.05);
}

.featured-item {
    border-color: rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(255, 204, 0, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 1.2rem;
    right: -2.5rem;
    background: var(--primary-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.4rem 3.5rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}

.product-item:hover::before {
    opacity: 1;
}

.product-item h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.product-item .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.5rem 0;
}

.product-item .stock {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.description-preview {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.product-details {
    display: grid;
    grid-template-columns: 500px 1fr 1.2fr;
    gap: 3rem;
    max-width: 1600px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
}

.product-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-description-column {
    display: flex;
    flex-direction: column;
}

.product-price-column {
    display: flex;
    flex-direction: column;
}

.product-left .main-img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.product-left .main-img:hover {
    transform: scale(1.02);
    border-color: rgba(255, 204, 0, 0.4);
}

/* Price & Contact Column */
.price-stock-header {
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.shipping-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-value {
    color: var(--text-primary);
}

.stock {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.stock strong {
    color: var(--text-primary);
}

.product-contact-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--glass-border);
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-phone:hover {
    color: var(--primary);
}

.contact-email {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-email:hover {
    text-decoration: underline;
}

/* Gallery */
.gallery {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.75rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery img:hover {
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Technical Data Table */
.tech-data-table {
    width: 100%;
    margin-top: 2rem;
    border-collapse: separate;
    border-spacing: 0;
}

.tech-data-table tr td {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.tech-data-table tr:last-child td {
    border-bottom: none;
}

.tech-data-table td:first-child {
    font-weight: 600;
    color: var(--text-secondary);
    width: 40%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-full {
    width: 100%;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 204, 0, 0.5);
}

/* CMS Specific (if using main CSS) */
.cms-table {
    width: 100%;
    background: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    margin-top: 2rem;
}

/* Footer */
footer {
    margin-top: auto;
    background: var(--header-bg);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-links {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    color: var(--text-secondary);
}

.footer-links a,
.footer-links span:not(.divider) {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-links .divider {
    opacity: 0.3;
}

/* Trust Section */
.trust-section {
    margin: 4rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.trust-section h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.trust-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.trust-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.trust-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* CTA & Contact Card */
.cta-section {
    margin-top: 6rem;
    text-align: center;
    padding: 5rem 2rem;
    background: transparent;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.contact-card {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    background: rgba(26, 26, 26, 0.6);
    padding: 1.25rem 2.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 204, 0, 0.08);
    border-color: rgba(255, 204, 0, 0.3);
}

.contact-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.contact-item .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    padding: 2rem;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    border-radius: 1rem;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Style dla strzałek w modalu */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    z-index: 1001;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.arrow:hover {
    background: var(--primary);
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
}

.arrow-left {
    left: 2rem;
}

.arrow-right {
    right: 2rem;
}

@media (max-width: 768px) {
    .arrow {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 2rem;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .arrow-left { left: 1rem; }
    .arrow-right { right: 1rem; }
    
    .modal {
        padding: 1rem;
    }
}

/* Text Content Sections */
.page-desc {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
}

.main-intro-title {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
}

.float-image {
    max-width: 250px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    margin: 1.5rem;
}

@media (max-width: 600px) {
    .float-image {
        float: none !important;
        max-width: 100%;
        margin: 1rem 0;
        display: block;
    }
}

/* Responsiveness */
@media (max-width: 1300px) {
    .product-details {
        grid-template-columns: 400px 1fr;
        padding: 2rem;
    }

    .product-price-column {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--glass-border);
    }
    
    .price-stock-header {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 900px) {
    .product-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .product-left {
        max-width: 100%;
    }

    .product-price-column {
        grid-template-columns: 1fr;
        grid-column: span 1;
        gap: 1.5rem;
    }
    
    .price-large {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }

    .header-logo-container {
        gap: 0.75rem;
    }

    .header-logo {
        height: 3.8rem;
    }

    header h1 {
        font-size: 1.6rem;
    }
    
    .back-link {
        left: 0.75rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }
    
    .page-desc {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .main-intro-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 3rem;
    }

    header h1 {
        font-size: 1.2rem;
    }
    
    .back-link span {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-tag {
        width: 100%;
        justify-content: center;
    }
    
    .cta-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .featured-badge {
        font-size: 0.6rem;
        padding: 0.3rem 2.5rem;
        top: 0.8rem;
        right: -2rem;
    }
}

/* Interactive Business Card Container */
.business-card-section {
    margin: 1rem auto 3rem;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}

.business-card-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
}

.business-card-wrap {
    width: fit-content;
    max-width: 100%;
    height: auto;
    padding: 80px;
    perspective: 1500px;
    cursor: pointer;
    margin: -80px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-card {
    width: 550px;
    height: 310px;
    background: #333333;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 
        0 15px 35px -5px rgba(0, 0, 0, 0.6),
        0 0 15px 0 rgba(255, 204, 0, 0.05);
    padding: 2.25rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1rem 1.5rem;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 204, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.business-card:hover {
    border-color: rgba(255, 204, 0, 0.45);
    box-shadow: 
        0 25px 50px -10px rgba(0, 0, 0, 0.8),
        0 0 25px 0 rgba(255, 204, 0, 0.15);
}

.card-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 2;
}

.card-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
    height: 100%;
    z-index: 2;
}

.card-logo-area {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-logo-img {
    height: 4.5rem;
    width: auto;
    align-self: flex-start;
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.3));
}

.card-company-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem 0 0.25rem;
}

.card-company-details {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: left;
}

.card-owner-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.card-owner-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #E1E1E1;
    letter-spacing: 0.5px;
}

.card-owner-phone {
    font-size: 0.95rem;
    color: #E1E1E1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: flex-end;
    text-decoration: none;
    transition: var(--transition);
}

.card-owner-phone:hover {
    color: var(--primary);
}

.card-owner-phone svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.card-qr-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.card-qr-container {
    width: 90px;
    height: 90px;
    background: transparent;
    padding: 2px;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.card-qr-container:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.card-qr-container svg {
    width: 100%;
    height: 100%;
}

.card-contact-details {
    font-size: 0.8rem;
    color: #E1E1E1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
}

.card-contact-details a {
    color: #E1E1E1;
    text-decoration: none;
    transition: var(--transition);
}

.card-contact-details a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.card-download-btn {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    background: rgba(255, 204, 0, 0.05);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.card-download-btn:hover {
    background: var(--primary);
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 580px) {
    .business-card-wrap {
        padding: 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .business-card {
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        height: auto;
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }
    
    .card-right {
        align-items: center;
        text-align: center;
    }
    
    .card-owner-phone {
        justify-content: center;
    }
    
    .card-qr-area {
        align-items: center;
    }
    
    .card-logo-img {
        align-self: center;
    }
    
    .card-contact-details {
        align-items: center;
    }
}
