        :root {
            --starbucks-green: #00704A;
            --starbucks-dark-green: #1e3932;
            --starbucks-light-green: #d4e9e2;
            --starbucks-cream: #f7f7f7;
            --text-dark: #333;
            --text-medium: #555;
            --text-light: #777;
        }

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

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-medium);
            background-color: #fff;
            scroll-behavior: smooth;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Raleway', sans-serif;
            color: var(--starbucks-dark-green);
            margin-bottom: 0.5em;
        }

        h1 {
            font-size: 3.5em;
            font-weight: 900;
            line-height: 1.1;
            color: #fff;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
        }

        h2 {
            font-size: 2.8em;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1em;
        }

        h3 {
            font-size: 2em;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: var(--starbucks-green);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--starbucks-dark-green);
        }

        p {
            margin-bottom: 1em;
        }

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

        .btn {
            display: inline-block;
            background-color: var(--starbucks-green);
            color: #fff;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
            white-space: nowrap;
            /* Prevent button text from wrapping */
        }

        .btn:hover {
            background-color: var(--starbucks-dark-green);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--starbucks-green);
            color: var(--starbucks-green);
            padding: 10px 23px;
            /* Adjust padding for border */
        }

        .btn-outline:hover {
            background-color: var(--starbucks-light-green);
            color: var(--starbucks-dark-green);
            border-color: var(--starbucks-dark-green);
        }

        /* Navbar Specific Styles */
        .navbar {
            background-color: #fff;
            /* White background */
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            /* Ensure it stays on top */
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            /* Slightly wider container for navbar */
            padding: 0 20px;
        }

        .logo img {
            height: 45px;
            /* Adjust as needed */
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
            /* Space between links */
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            color: var(--text-dark);
            /* Dark text for links */
            font-weight: 600;
            font-size: 1.05em;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 3px;
            background-color: var(--starbucks-green);
            transition: width 0.3s ease-out;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .nav-links li a:hover {
            color: var(--starbucks-green);
        }


        .nav-utility {
            display: flex;
            align-items: center;
            gap: 20px;
            /* Space between utility items */
        }

        .find-store-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1em;
            transition: color 0.3s ease;
        }

        .find-store-link:hover {
            color: var(--starbucks-green);
        }

        .find-store-link .store-icon {
            height: 24px;
            /* Icon size */
            width: 24px;
            filter: invert(15%) sepia(8%) saturate(1917%) hue-rotate(107deg) brightness(97%) contrast(85%);
            /* Makes the SVG dark grey initially */
            transition: filter 0.3s ease;
        }

        .find-store-link:hover .store-icon {
            filter: invert(34%) sepia(76%) saturate(3022%) hue-rotate(130deg) brightness(94%) contrast(101%);
            /* Makes the SVG starbucks green on hover */
        }


        /* Specific Button Styles for Navbar */
        .btn-signin {
            background-color: transparent;
            border: 1px solid var(--text-dark);
            /* Dark border */
            color: var(--text-dark);
            padding: 8px 15px;
            border-radius: 50px;
            /* Pill shape */
            font-size: 0.9em;
            font-weight: bold;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        .btn-signin:hover {
            background-color: rgba(0, 0, 0, 0.05);
            /* Light hover effect */
            color: var(--text-dark);
            border-color: var(--text-dark);
        }

        .btn-join {
            background-color: var(--text-dark);
            /* Dark background */
            color: #fff;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9em;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .btn-join:hover {
            background-color: var(--starbucks-dark-green);
            /* Slightly lighter on hover */
        }

        /* Hamburger Menu (Mobile) */
        .hamburger {
            display: none;
            /* Hidden by default on desktop */
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            cursor: pointer;
            z-index: 1001;
            /* Above mobile menu */
        }

        .hamburger .bar {
            width: 100%;
            height: 3px;
            background-color: var(--text-dark);
            border-radius: 5px;
            transition: all 0.3s ease-in-out;
        }

        /* Hamburger animation */
        .hamburger.is-active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.is-active .bar:nth-child(1) {
            transform: translateY(11px) rotate(45deg);
        }

        .hamburger.is-active .bar:nth-child(3) {
            transform: translateY(-11px) rotate(-45deg);
        }

        /* Mobile Nav Menu */
        .mobile-nav-menu {
            display: none;
            /* Hidden by default */
            position: absolute;
            top: 75px;
            /* Adjust based on navbar height */
            left: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
            padding: 20px 0;
            overflow-y: auto;
            max-height: calc(100vh - 75px);
            /* Max height for mobile menu */
            transform: translateX(-100%);
            /* Start off-screen */
            transition: transform 0.4s ease-out;
            z-index: 999;
        }

        .mobile-nav-menu.is-active {
            display: block;
            /* Show when active */
            transform: translateX(0);
            /* Slide into view */
        }

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

        .mobile-nav-menu ul li {
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-menu ul li:last-child {
            border-bottom: none;
        }

        .mobile-nav-menu ul li a {
            display: block;
            padding: 15px 0;
            color: var(--text-dark);
            font-size: 1.2em;
            font-weight: 600;
            transition: background-color 0.2s ease;
        }

        .mobile-nav-menu ul li a:hover {
            background-color: var(--starbucks-cream);
        }

        .mobile-nav-menu .find-store-link-mobile {
            color: var(--starbucks-green);
            /* Green for mobile find store */
        }

        .mobile-nav-menu .find-store-link-mobile .store-icon {
            filter: invert(34%) sepia(76%) saturate(3022%) hue-rotate(130deg) brightness(94%) contrast(101%);
            /* Green icon */
        }


        .mobile-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding: 20px;
            margin-top: 15px;
            border-top: 1px solid #eee;
        }

        .btn-signin-mobile,
        .btn-join-mobile {
            display: block;
            /* Make them stack */
            text-align: center;
            width: 100%;
            padding: 12px 20px;
            font-size: 1em;
        }

        .btn-signin-mobile {
            border-color: var(--starbucks-dark-green);
            color: var(--starbucks-dark-green);
        }

        .btn-signin-mobile:hover {
            background-color: var(--starbucks-light-green);
        }

        .btn-join-mobile {
            background-color: var(--starbucks-green);
        }

        .btn-join-mobile:hover {
            background-color: var(--starbucks-dark-green);
        }


        /* Optional: Body no-scroll when mobile menu is active */
        body.no-scroll {
            overflow: hidden;
        }

        /* Header / Hero Section */
        .hero {
            position: relative;
            height: 80vh;
            /* Full viewport height */
            background-image: url('./images/137-98091.png');
            /* Replace with actual image */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            flex-direction: column;
            padding: 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            /* Dark overlay */
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero-content h1 {
            margin-bottom: 15px;
        }

        .hero-content p {
            font-size: 1.5em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Section Intro */
        .section-intro {
            background-color: var(--starbucks-cream);
            padding: 60px 20px;
            text-align: center;
        }

        .section-intro p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1em;
            line-height: 1.8;
        }

        /* Featured Products */
        .featured-products {
            padding: 60px 20px;
            background-color: #fff;
        }

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

        .product-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .product-card img {
            width: 100%;
            max-width: 250px;
            height: auto;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .product-card h3 {
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .product-card p {
            font-size: 1em;
            color: var(--text-dark);
            line-height: 1.5;
            flex-grow: 1;
            /* Allows paragraph to take available space */
            margin-bottom: 20px;
        }

        /* Merchandise */
        .merchandise {
            background-color: var(--starbucks-light-green);
            padding: 60px 20px;
            text-align: center;
        }

        .merchandise p {
            max-width: 900px;
            margin: 0 auto 30px;
            font-size: 1.1em;
            line-height: 1.8;
        }

        .merchandise-gallery {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .merchandise-gallery img {
            width: 100%;
            max-width: 250px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        /* Rewards Section */
        .rewards {
            padding: 60px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .rewards-image,
        .rewards-content {
            flex: 1 1 45%;
            /* Allows content to take up about half width */
            min-width: 300px;
        }

        .rewards-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .rewards-content h2 {
            text-align: left;
            margin-bottom: 20px;
        }

        .rewards-content p {
            font-size: 1.1em;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .rewards-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Third Place Section */
        .third-place {
            background-color: var(--starbucks-cream);
            padding: 60px 20px;
            text-align: center;
        }

        .third-place p {
            max-width: 900px;
            margin: 0 auto 30px;
            font-size: 1.1em;
            line-height: 1.8;
        }

        .third-place img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }

        /* Find Store Section */
        .find-store {
            background-color: var(--starbucks-dark-green);
            color: #fff;
            padding: 50px 20px;
            text-align: center;
        }

        .find-store h2 {
            color: #fff;
            margin-bottom: 25px;
        }

        .find-store p {
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .find-store .btn {
            background-color: var(--starbucks-green);
            padding: 18px 40px;
            font-size: 1.2em;
            border: 2px solid var(--starbucks-green);
        }

        .find-store .btn:hover {
            background-color: #005a38;
            /* Slightly darker green */
            border-color: #005a38;
        }


        /* Footer */
        footer {
            background-color: #333;
            color: #bbb;
            padding: 40px 20px;
            font-size: 0.9em;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        footer h4 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.1em;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 8px;
        }

        footer ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer ul li a:hover {
            color: #fff;
        }

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

        .social-icons img {
            width: 24px;
            height: 24px;
            filter: invert(70%);
            /* Makes icons lighter for visibility */
            transition: filter 0.3s ease;
        }

        .social-icons img:hover {
            filter: invert(100%);
            /* Makes icons white on hover */
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
        }

        .footer-bottom p {
            color: #aaa;
            margin-bottom: 5px;
        }

        .footer-bottom p:last-child {
            font-size: 0.8em;
            margin-top: 10px;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {

            .nav-links,
            .nav-utility {
                display: none;
                /* Hide desktop nav items */
            }

            .hamburger {
                display: flex;
                /* Show hamburger */
            }

            h1 {
                font-size: 3em;
            }

            h2 {
                font-size: 2.2em;
            }

            h3 {
                font-size: 1.6em;
            }

            .hero {
                height: 70vh;
            }

            .rewards-image,
            .rewards-content {
                flex: 1 1 100%;
                /* Stack on smaller screens */
            }

            .rewards-content h2 {
                text-align: center;
            }

            .rewards-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5em;
            }

            h2 {
                font-size: 2em;
            }

            h3 {
                font-size: 1.4em;
            }

            .hero {
                height: 60vh;
            }

            .hero-content p {
                font-size: 1.2em;
            }

            .product-grid {
                grid-template-columns: 1fr;
                /* Single column on small screens */
            }

            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                text-align: center;
            }

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

        @media (max-width: 480px) {
            h1 {
                font-size: 2em;
            }

            h2 {
                font-size: 1.8em;
            }

            .hero {
                height: 50vh;
            }

            .hero-content p {
                font-size: 1em;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9em;
            }

            .find-store .btn {
                padding: 15px 30px;
                font-size: 1em;
            }
        }