        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Barlow", "Helvetica Neue", Helvetica, Arial, "Segoe UI", "Roboto", sans-serif;
            line-height: 1.6;
            color: #333;
            background: white;
        }
				
				a {
					text-decoration: none;
				}

        /* Main container with max-width constraint */
        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
        }

        /* Navbar Styles */
        .navbar {
            background: url('/img/nav_bg.png') center/cover;
            padding: 1rem 1.7rem;
            position: relative;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 75px;
            width: 100%;
        }

        .logo {
            width: 115px;
            height: 60px;
            background: url('/img/budamilllogo.png') center/contain no-repeat;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            padding: 0.5rem 1rem;
            text-decoration: none;
            color: #6d6868;
            font-size: .8rem;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .social-icons {
            display: flex;
            gap: .5rem;
        }

        .social-icons a {
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 50%;
        }

        .social-icons img {
            width: 24px;
            height: 24px;
            display: block;
        }

        .social-icons a:hover {
            background: rgba(255,255,255,0.1);
            transform: scale(1.1);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Map Section */
        .map-section {
            width: 100%;
            padding: 0 0 2rem 0;
            background-color: #cf5c33;
        }

        .map-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
						padding-bottom:3rem;
        }

        .map-image {
            width: 100%;
            height: auto;
            display: block;
						padding-top:3rem;
        }

        #directory {
            margin: 0 auto;
            text-align: left;
            color: #fff;
            padding: 1rem 3rem;
            width: 100%;
        }

        #directory td {
            padding: .1rem 1rem;
            font-size:.8rem;
            cursor: pointer;
        }

        #directory td:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        table {
            width: 100%;
            table-layout: fixed;
            border-spacing: .1rem;
        }

        th, td {
            width: auto;
        }

        .shop_hd {
            position: relative;
            top: 2rem;
            float:right;
            font-size: 3.5rem;
            color: #fff;
            z-index: 10;
            pointer-events: none;
        }
				
        .restaurant_hd {
            float: right;
						position:relative;
						bottom: 1rem;
            font-size: 3.5rem;
            color: #fff;
            z-index: 10;
            pointer-events: none;
        }

        /* Store hotspots on map - base styles */
        .store-hotspot,
        .store-hotspot1_6,
        .store-hotspot2,
        .store-hotspot3,
        .store-hotspot4,
        .store-hotspot5,
        .store-hotspot7_8_9_11_12,
        .store-hotspot10 {
            position: absolute;
            background: transparent;
            cursor: pointer;
            z-index: 10;
        }

        /* Individual hotspot colors - only when highlighted class is added */
        .store-hotspot1_6.highlighted {
            background: rgba(56, 106, 125);  /* #386a7d */
            transform: scale(1.1);
        }

        .store-hotspot2.highlighted {
            background: rgba(246, 181, 95);  /* #f6b55f */
            transform: scale(1.1);
        }

        .store-hotspot3.highlighted {
            background: rgba(106, 108, 105);  /* #6a6c69 */
            transform: scale(1.1);
        }

        .store-hotspot4.highlighted {
            background: rgba(207, 100, 51);  /* #cf6433 */
            transform: scale(1.1);
        }

        .store-hotspot5.highlighted {
            background: rgba(188, 91, 46);  /* #bc5b2e */
            transform: scale(1.1);
        }

        .store-hotspot7_8_9_11_12.highlighted {
            background: rgba(172, 219, 222);  /* #acdbde */
            transform: scale(1.1);
        }

        .store-hotspot10.highlighted {
            background: rgba(186, 186, 187);  /* #bababb */
            transform: scale(1.1);
        }

        /* Store number labels */
        .store-number {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            display: none; /* Hidden by default */
        }

        /* Show store numbers only when highlighted */
        .store-hotspot1_6.highlighted .store-number,
        .store-hotspot2.highlighted .store-number,
        .store-hotspot3.highlighted .store-number,
        .store-hotspot4.highlighted .store-number,
        .store-hotspot5.highlighted .store-number,
        .store-hotspot7_8_9_11_12.highlighted .store-number,
        .store-hotspot10.highlighted .store-number {
            display: block;
            color: white;
            font-weight: bold;
        }

        /* Store Grid Section */
        .stores-grid-section {
            padding: 0 1.5rem;
            background: #fff;
						clear:both;
        }

        .stores-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .store-card {
            background: white;
            cursor: pointer;
            text-align: center;
            height: 230px;
        }

        .store-name {
            font-size: 1.1rem;
            font-weight: 500;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            text-transform: uppercase;
            flex-direction: row;
            height: 100%;
						padding-bottom:.5rem;
        }

        /* Mobile menu styles */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: transparent;
            z-index: 999;
            padding: 1rem 0;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
						background:#c3c3c3;
        }

        .mobile-menu li:last-child {
            border-bottom: none;
        }

        .mobile-menu a {
            display: block;
            padding: .2rem 2rem;
            text-decoration: none;
            color: #000;
            font-weight: 500;
            font-size: .8rem;
            transition: background 0.3s ease;
        }

        .mobile-menu a:hover {
            background: transparent;
            color: #f52e04;
        }

        /* Store card images */
        .stores-grid [data-store="1"] {
            background: url('/img/dos_olivos_market.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="2"] {
            background: url('/img/ellipsis_boutique.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="3"] {
            background: url('/img/hays_county_outfitters.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="4"] {
            background: url('/img/macoco.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="5"] {
            background: url('/img/the_mercantile_at_mill_and_grain.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="6"] {
            background: url('/img/mud_bugs_restaurant.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="7"] {
            background: url('/img/nates_coffee_and_cocktails.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="8"] {
            background: url('/img/roxies.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="9"] {
            background: url('/img/saint_montogrens_florist.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="10"] {
            background: url('/img/salon_one12.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="11"] {
            background: url('/img/water2wine.jpg') center center;
            background-size: 100% 100%;
        }
        .stores-grid [data-store="12"] {
            background: url('/img/willow_gardens_yoga.jpg') center center;
            background-size: 100% 100%;
        }




				#address-block {
						position:relative;
						float:right;
						bottom:20rem;
						right:3rem;
						color:white;
						font-size:1.1rem;
						line-height: 2.6rem;
				}
				
				#footer_insta {
					position:relative;
					right:3.2rem;
					top:3.6rem;
				}
				
				#footer_fbook {
					position: relative;
					right:6.2rem;
					top:6.2rem;
					
				}

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-links {
                gap: 1.5rem;
            }
            
            .nav-links a {
                font-size: 0.7rem;
                padding: 0.4rem 0.8rem;
            }
        }

        @media (max-width: 900px) {
					  footer {
							max-width:900px;
						}
            .navbar {
                padding: 1rem;
                position: relative;
                display: flex;
                align-items: center;
            }

            .hamburger {
                display: flex;
                position: absolute;
                left: 1rem;
                top: 50%;
                transform: translateY(-50%);
            }

            .logo {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                width: 60px;
                height: 45px;
            }

            .social-icons {
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
            }

            .nav-links {
                display: none;
            }

            .stores-grid {
                grid-template-columns: repeat(2, 1fr);
            }
						.store-number {
								font-size: .8rem;
						}
						.store-card {
							height: 330px;
						}
            .store-name {
							font-size:1.4rem;
						}
            .shop_hd {
                font-size: 2.8rem;
            }
            .restaurant_hd {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 600px) {
            .logo {
                width: 50px;
                height: 38px;
            }

            .social-icons img {
                width: 20px;
                height: 20px;
            }

            .stores-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .map-section,
            .stores-grid-section {
                padding: 1rem 2%;
            }
						.store-number {
								font-size: .6rem;
						}
						.store-card {
							height: 450px;
						}
            .store-name {
							font-size:1.8rem;
						}
            .shop_hd {
                font-size: 2.2rem;
            }
            .restaurant_hd {
                font-size: 1.7rem;
            }
        }