       :root {
            --primary-color: #CB3A71; /* Better logo match with 5.15:1 contrast */
            --primary-color-light: #CF4C7F; /* Original color for accents */
            --secondary-color: #222222;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #495057;
            --hero-gray: #6c757d;
            --text-color: #212529;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --border-radius: 8px;
        }

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

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            font-size: 16px;
        }

        /* Focus management - only show focus outline for keyboard navigation */
        .js-focus-visible *:focus:not(.focus-visible) {
            outline: none;
        }

        /* Default focus styles for when focus-visible isn't supported */
        *:focus {
            outline: 3px solid var(--primary-color);
            outline-offset: 2px;
        }

        /* Focus-visible styles for keyboard navigation only */
        *:focus-visible {
            outline: 3px solid var(--primary-color);
            outline-offset: 2px;
        }

        /* Skip to content link for accessibility */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 6px;
            background: var(--secondary-color);
            color: white;
            padding: 8px 12px;
            text-decoration: none;
            border-radius: 4px;
            z-index: 1000;
            font-weight: 600;
            border: 2px solid white;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 6px;
        }

        /* Container system matching Foundation breakpoints */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .container-fluid {
            width: 100%;
            padding: 0 1rem;
        }

        /* Grid system */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -0.5rem;
        }

        .col {
            padding: 0 0.5rem;
            flex: 1;
        }

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

        .text-right {
            text-align: right;
        }

        /* Responsive columns */
        @media (max-width: 639px) {
            .small-12 { flex: 0 0 100%; }
            .small-6 { flex: 0 0 50%; }
        }

        @media (min-width: 640px) and (max-width: 1023px) {
            .medium-12 { flex: 0 0 100%; }
            .medium-6 { flex: 0 0 50%; }
            .medium-8 { flex: 0 0 66.666%; }
            .medium-4 { flex: 0 0 33.333%; }
        }

        @media (min-width: 1024px) {
            .large-12 { flex: 0 0 100%; }
            .large-10 { flex: 0 0 83.333%; }
            .large-8 { flex: 0 0 66.666%; }
            .large-6 { flex: 0 0 50%; }
            .large-4 { flex: 0 0 33.333%; }
        }

        /* Header */
        .header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .top-bar {
            background: var(--secondary-color);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
        }

        .top-bar a:hover {
            color: #F2F2F2;
        }

        .main-header {
            padding: 1rem 0;
        }

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

        .logo img {
            max-width: 200px;
            height: auto;
        }

        /* Navigation */
        .nav {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav li {
            margin: 0 1rem;
        }

        .nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s ease;
        }

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

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

        .nav a:hover::after,
        .nav a:focus-visible::after {
            width: 100%;
        }

        /* Mobile menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
            cursor: pointer;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--white);
            z-index: 200;
            padding: 2rem;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--text-color);
            cursor: pointer;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
        }

        .mobile-nav li {
            margin-bottom: 1rem;
        }

        .mobile-nav a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            display: block;
            padding: 1rem 0;
            border-bottom: 1px solid var(--medium-gray);
        }

        .mobile-nav a:hover {
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            padding: 5rem 0;
            background: #EBEBEB;
            color: var(--text-color);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="noise" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="3" cy="5" r="0.6" fill="%23A8A8A8" opacity="1"/><circle cx="12" cy="2" r="0.4" fill="%23A3A3A3" opacity="1"/><circle cx="22" cy="8" r="0.5" fill="%23ADADAD" opacity="1"/><circle cx="7" cy="15" r="0.4" fill="%23A6A6A6" opacity="1"/><circle cx="18" cy="12" r="0.6" fill="%23AAAAAA" opacity="1"/><circle cx="25" cy="18" r="0.4" fill="%23A4A4A4" opacity="1"/><circle cx="1" cy="22" r="0.5" fill="%23A8A8A8" opacity="1"/><circle cx="14" cy="25" r="0.4" fill="%23ABABAB" opacity="1"/><circle cx="28" cy="28" r="0.5" fill="%23A5A5A5" opacity="1"/><circle cx="9" cy="28" r="0.4" fill="%23A7A7A7" opacity="1"/><circle cx="20" cy="22" r="0.5" fill="%23A2A2A2" opacity="1"/><circle cx="26" cy="3" r="0.4" fill="%23ACACAC" opacity="1"/><circle cx="5" cy="9" r="0.5" fill="%23A4A4A4" opacity="1"/><circle cx="16" cy="18" r="0.4" fill="%23A8A8A8" opacity="1"/><circle cx="11" cy="7" r="0.4" fill="%23A6A6A6" opacity="1"/><circle cx="24" cy="14" r="0.5" fill="%23A3A3A3" opacity="1"/><circle cx="2" cy="28" r="0.4" fill="%23AAAAAA" opacity="1"/><circle cx="29" cy="11" r="0.4" fill="%23A5A5A5" opacity="1"/><circle cx="15" cy="4" r="0.5" fill="%23A7A7A7" opacity="1"/><circle cx="8" cy="20" r="0.4" fill="%23ACACAC" opacity="1"/></pattern></defs><rect width="30" height="30" fill="url(%23noise)"/></svg>');
            pointer-events: none;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--secondary-color);
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        .hero-image {
            flex: 1;
            position: relative;
            /* Image ratio: 1:1 (square) */
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transform: rotate(-2deg);
            transition: transform 0.3s ease;
        }

        .hero-image:hover {
            transform: rotate(0deg) scale(1.02);
        }

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

        .btn-hero {
            background: var(--primary-color);
            color: var(--white);
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(203, 58, 113, 0.2);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
        }

        .btn-hero:hover {
            background: #B6346B;
            color: #F2F2F2;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(203, 58, 113, 0.3);
        }

        .btn-hero-outline {
            background: transparent;
            color: var(--text-color);
            border: 2px solid var(--text-color);
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
        }

        .btn-hero-outline:hover {
            background: var(--text-color);
            color: var(--white);
        }

        /* Store highlight section */
        .store-highlight {
            padding: 4rem 0;
            background: var(--white);
        }

        .store-highlight-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .store-text {
            flex: 1;
        }

        .store-text h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .store-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .product-feature {
            flex: 1;
            text-align: center;
            background: var(--light-gray);
            padding: 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 2px solid var(--medium-gray);
            overflow: hidden;
        }

        .product-content {
            padding: 2rem;
        }

        .product-image {
            width: 100%;
            margin: 0 0 0.5rem 0;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            /* Image ratio: 4:3 (landscape) */
            aspect-ratio: 4 / 3;
        }

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

        .product-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color-light);
            margin-bottom: 1rem;
        }

        .product-description {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        /* Model search section */
        .model-search {
            padding: 4rem 0;
            background: var(--light-gray);
        }

        .model-search-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .model-search-text {
            flex: 1;
        }

        .model-search-text h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .model-search-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .model-search-image {
            flex: 1;
            position: relative;
            width: 100%;
            /* Image ratio: 4:5 (portrait) */
            aspect-ratio: 4 / 5;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .model-search-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }

        .model-search-image img:hover {
            transform: scale(1.02);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
        }

        .btn:hover {
            background: #B6346B;
            color: #F2F2F2;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(203, 58, 113, 0.3);
        }

        .btn-secondary {
            background: var(--secondary-color);
        }

        .btn-secondary:hover {
            background: #444444;
        }

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

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

        .btn-footer-outline {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-footer-outline:hover {
            background: #ffffff;
            color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        /* High contrast focus for buttons - only visible for keyboard navigation */
        .btn:focus-visible,
        .btn-hero:focus-visible,
        .btn-hero-outline:focus-visible,
        .btn-footer-outline:focus-visible {
            outline: 3px solid #ffffff;
            outline-offset: 2px;
        }

        /* Content sections */
        .section {
            padding: 4rem 0;
        }

        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        /* Advertisement section */
        .ad-section {
            background: var(--secondary-color);
            padding: 2rem 0;
            text-align: center;
        }

        .ad-section p {
            color: white;
            margin-bottom: 1rem;
        }

        .ad-section img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
        }

        .ad-section a {
            color: white;
            text-decoration: underline;
        }

        .ad-section a:hover {
            color: #ffffff;
            opacity: 0.8;
        }

        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: white;
            padding: 3rem 0 1rem;
            text-align: center;
        }

        .footer-content {
            display: block;
            margin-bottom: 2rem;
        }

        .footer-info,
        .footer-newsletter,
        .footer-social {
            margin-bottom: 2rem;
            text-align: center;
        }

        .footer-info h3,
        .footer-newsletter h3 {
            color: white;
            margin-bottom: 1rem;
        }

        .footer-newsletter h3 {
            font-size: 1.2rem;
        }

        .footer-newsletter p {
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .footer-info a {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-info a:hover {
            color: #ffffff;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .social-links a {
            color: #ffffff;
            font-size: 2rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #ffffff;
            opacity: 0.8;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-bottom a:hover {
            color: #ffffff;
            opacity: 0.8;
        }

        /* Desktop footer layout */
        @media (min-width: 1024px) {
            .footer {
                text-align: left;
            }

            .footer-content {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                gap: 2rem;
            }

            .footer-info {
                flex: 2;
                text-align: left;
            }

            .footer-newsletter {
                flex: 2;
                text-align: left;
            }

            .footer-social {
                flex: 1;
                text-align: right;
            }

            .social-links {
                justify-content: flex-end;
            }

            .footer-bottom {
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: left;
            }
        }

        /* Responsive Design */
        @media (max-width: 1023px) {
            .nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-content,
            .model-search-content,
            .gallery-preview {
                flex-direction: column;
                text-align: center;
            }

            /* Store highlight gets special treatment for mobile layout */
            .store-highlight-content {
                flex-direction: column-reverse;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero {
                padding: 3rem 0;
            }

            .hero-image {
                transform: none;
                max-width: 300px;
                margin: 0 auto;
            }

            .store-highlight {
                padding: 3rem 0;
            }

            .model-search {
                padding: 3rem 0;
            }

            .model-search-text h2 {
                font-size: 1.8rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-info {
                text-align: center !important;
            }

            .footer-info h3 {
                text-align: center !important;
            }

            .footer-info p {
                text-align: center !important;
            }

            .footer-newsletter {
                margin-top: 2rem;
                text-align: center !important;
            }

            .footer-social {
                text-align: center !important;
                margin-top: 2rem;
            }

            .social-links {
                justify-content: center !important;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }

        @media (max-width: 639px) {
            .container {
                padding: 0 0.5rem;
            }

            .hero {
                padding: 2rem 0;
            }

            .section {
                padding: 2rem 0;
            }

            .store-highlight {
                padding: 2rem 0;
            }

            .store-text h2 {
                font-size: 1.8rem;
            }

            .model-search {
                padding: 2rem 0;
            }

            .model-search-text h2 {
                font-size: 1.6rem;
            }

            .hero-text h1 {
                font-size: 1.5rem;
            }

            .btn, .btn-hero, .btn-hero-outline {
                display: block;
                text-align: center;
                margin-bottom: 1rem;
                margin-right: 0;
            }

            /* Add spacing to footer bottom links on mobile */
            .footer-bottom > div:last-child {
                margin-top: 10px;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Improved link contrast */
        a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        a:hover {
            color: var(--secondary-color);
        }

        /* Screen reader only */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }