/* GlasKauf.at Premium Design System 2026 */

:root {
    /* Color Palette - Premium/Modern */
    --primary: #0f172a;
    /* Deep Navy / Slate - Main Brand */
    --primary-light: #1e293b;
    /* Lighter Slate */
    --accent: #38bdf8;
    /* Vivid Sky Blue - Action Color */
    --accent-glow: rgba(56, 189, 248, 0.4);

    --bg-body: #f8fafc;
    /* Very light grey/white background */
    --bg-card: #ffffff;

    --text-main: #0f172a;
    --text-dim: #64748b;
    --text-light: #94a3b8;

    --border: #e2e8f0;

    /* Spacing & Radius */
    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px var(--accent-glow);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
button,
select,
textarea {
    font-family: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
    font-size: 1.5rem;
}

/* Layout */
.container {
    width: 92%;
    max-width: var(--container);
    margin: 0 auto;
}

main {
    flex-grow: 1;
    padding-top: 80px;
    /* Offset for sticky header */
    padding-bottom: 60px;
}

@media (max-width: 900px) {
    main {
        padding-top: 70px;
        /* Offset for smaller mobile header */
    }
}

/* --- Components --- */

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.main-nav {
    display: flex;
    gap: 30px;
    display: none;
    /* Mobile first hidden, see media query */
}

.nav-item {
    font-weight: 500;
    color: var(--text-dim);
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: 0.2s;
}

.cart-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link {
    color: var(--text-dim);
    font-size: 1.2rem;
}

.icon-link:hover {
    color: var(--primary);
}

.search-bar {
    display: none;
    /* Hide on small */
    align-items: center;
    gap: 10px;
    background: var(--bg-body);
    border-radius: 50px;
    padding: 8px 15px;
    border: 1px solid var(--border);
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    width: 120px;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-body);
}

/* Hero Section */
.hero {
    background: rgba(15, 23, 42, 0.7);
    background-image: url('https://images.unsplash.com/photo-1558611848-73f7eb4001a1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card-img {
    height: 240px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.card-price {
    margin-top: auto;
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 500;
    margin-bottom: 20px;
}

.card-price strong {
    color: var(--primary);
    font-size: 1.4rem;
}

/* Status Badges */
.badge-fixed {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.badge-m2 {
    background: #e0f2fe;
    color: #0284c7;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 30px;
    margin-top: auto;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col a {
    display: block;
    color: #94a3b8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: white;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* Media Queries */
@media (min-width: 768px) {

    .main-nav,
    .search-bar {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .mobile-nav-overlay {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        border-radius: 0;
        padding: 60px 0;
    }

    .mobile-toggle {
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--primary);
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: white;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: 0.3s;
    }

    .nav-open .mobile-nav-overlay {
        transform: translateY(0);
    }

    .nav-open {
        overflow: hidden;
    }
}

/* ============================================
   MODERN HEADER STYLES
   ============================================ */

.site-header-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-inner-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s;
}

.logo-modern:hover {
    transform: scale(1.02);
}

.logo-icon-modern {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
    transition: all 0.3s ease;
}

.logo-modern:hover .logo-icon-modern {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.logo-text-modern {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-modern .logo-main {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo-text-modern .logo-domain {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: -2px;
}

.main-nav-modern {
    display: none;
    gap: 8px;
    align-items: center;
}

.nav-item-modern {
    position: relative;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dim);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.nav-item-modern span {
    position: relative;
    z-index: 1;
}

.nav-item-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-body);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-item-modern:hover::before,
.nav-item-modern.active::before {
    opacity: 1;
}

.nav-item-modern:hover,
.nav-item-modern.active {
    color: var(--primary);
}

.header-actions-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-btn-modern {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: white;
    transition: all 0.2s ease;
    text-decoration: none;
}

.cart-btn-modern:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.cart-badge-modern {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(56, 189, 248, 0.4);
}

.icon-link-modern {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    background: white;
    transition: all 0.2s ease;
    text-decoration: none;
}

.icon-link-modern:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.mobile-toggle-modern {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle-modern span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-open .mobile-toggle-modern span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-open .mobile-toggle-modern span:nth-child(2) {
    opacity: 0;
}

.nav-open .mobile-toggle-modern span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav-overlay-modern {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 20px 20px;
}

.nav-open .mobile-nav-overlay-modern {
    transform: translateY(0);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.mobile-nav-link {
    padding: 18px 24px;
    background: var(--bg-body);
    border-radius: 16px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.mobile-nav-link:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 24px;
}

.mobile-cart-count {
    margin-left: auto;
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .main-nav-modern {
        display: flex;
    }

    .mobile-toggle-modern,
    .mobile-nav-overlay-modern {
        display: none;
    }
}

/* ============================================
   ULTRA MODERN FOOTER STYLES
   ============================================ */

.site-footer-ultra-modern {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: white;
    padding: 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.site-footer-ultra-modern .container {
    position: relative;
    z-index: 1;
    padding: 80px 0 0;
    /* Removed horizontal padding from container to allow grid to manage width */
}

/* Top Section */
.footer-top-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.footer-brand-ultra {
    max-width: 100%;
}

.footer-logo-ultra {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.logo-icon-ultra {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.3);
    transition: all 0.3s ease;
}

.footer-logo-ultra:hover .logo-icon-ultra {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 12px 32px rgba(56, 189, 248, 0.4);
}

.footer-logo-text-ultra {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main-ultra {
    font-weight: 900;
    font-size: 2rem;
    color: white;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-domain-ultra {
    font-weight: 500;
    font-size: 1rem;
    color: var(--accent);
    margin-top: -2px;
}

.footer-tagline-ultra {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
}

.footer-social-ultra {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link-ultra {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link-ultra i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link-ultra:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.3);
}

.social-link-ultra:hover::before {
    opacity: 1;
}

.social-link-ultra:hover i {
    color: white;
    transform: scale(1.1);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
}

.footer-title-ultra {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    color: var(--accent);
    font-size: 1rem;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 4px;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.newsletter-input-wrapper i:first-child {
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.95rem;
    padding: 12px 0;
    outline: none;
}

.newsletter-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4);
}

/* Main Content Grid */
.footer-content-ultra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col-ultra {
    display: flex;
    flex-direction: column;
}

.footer-links-ultra {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-ultra li {
    position: relative;
}

.footer-links-ultra a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
}

.footer-links-ultra a span {
    position: relative;
}

.footer-links-ultra a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s ease;
}

.footer-links-ultra a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-links-ultra a:hover::before {
    opacity: 1;
    left: -8px;
}

.footer-contact-ultra {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-ultra li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-ultra li:hover .contact-icon-wrapper {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.contact-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-info a,
.contact-info span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Bottom Bar */
.footer-bottom-ultra {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 80px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.footer-bottom-ultra .container {
    padding: 0 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-made-ultra {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-made-ultra i {
    color: #ef4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer-ultra-modern .container {
        padding: 60px 16px 0;
    }

    .footer-top-section {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-content-ultra {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-social-ultra {
        justify-content: flex-start;
    }

    .footer-bottom-ultra .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .logo-main-ultra {
        font-size: 1.6rem;
    }

    .footer-newsletter {
        padding: 24px;
    }
}

/* Accessory Card Styles */
.accessory-card .card-price .price-label {
    display: none;
}

.btn-add-cart {
    background: var(--accent) !important;
    color: white !important;
}

.btn-add-cart:hover {
    background: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

/* ============================================
   LANDING PAGE STYLES (HOME)
   ============================================ */
/* Hero Section */
.landing-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%),
        url('assets/products/dg7-600x600.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -80px;
    /* Counteract main padding if needed */
    padding-top: 80px;
}

.landing-hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.landing-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.landing-hero h1 span {
    background: linear-gradient(120deg, var(--accent) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-landing-primary {
    background: var(--accent);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
    border: 2px solid var(--accent);
}

.btn-landing-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-5px);
}

.btn-landing-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-landing-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-5px);
}

/* Features Strip */
.features-strip {
    background: white;
    padding: 60px 0;
    transform: translateY(-30px);
    border-radius: 20px;
    /* Only top radius effectively via overlay or margin */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* Category Showcase */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.category-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 100px;
}

.cat-showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.cat-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cat-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.cat-showcase-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cat-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.cat-showcase-item:hover .cat-showcase-link {
    opacity: 1;
    transform: translateY(0);
}

.cat-showcase-item:hover .cat-showcase-title {
    transform: translateY(-5px);
}

/* Why Us Section / Info */
.info-section {
    background: #f8fafc;
    padding: 100px 0;
    margin-top: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.info-content p {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.info-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary);
}

.info-list-item i {
    color: #10b981;
    /* Success Green */
    font-size: 1.2rem;
}

.info-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.info-stats-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: bounce 3s infinite ease-in-out;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 600;
}

@media(max-width: 900px) {
    .features-strip {
        padding: 40px 0;
        transform: translateY(0);
        margin-top: -40px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-stats-card {
        left: 20px;
        bottom: 20px;
    }
}


/* ============================================
   MODERN PRODUCT CARDS (SHARED)
   ============================================ */
.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.product-card-modern {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .card-overlay {
    opacity: 1;
}

.btn-overlay {
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.product-card-modern:hover .btn-overlay {
    transform: translateY(0);
}

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

.card-category {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--primary);
}

.card-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-dim);
}

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