 :root {
     --primary-color: #00bfff;
     /* Neon Blue */
     --background-dark: #1a1a1a;
     --text-light: #ffffff;
     --text-dark: #333333;
     --card-background: #2a2a2a;
     --button-hover: #00a0e0;
 }

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

 body {
     font-family: 'Roboto', sans-serif;
     line-height: 1.6;
     background-color: var(--background-dark);
     color: var(--text-light);
     overflow-x: hidden;
 }

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

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

 .section-heading {
     font-family: 'Orbitron', sans-serif;
     font-size: 3em;
     margin-bottom: 40px;
     color: var(--primary-color);
     text-shadow: 0 0 10px rgba(0, 191, 255, 0.7);
 }

 .btn {
     display: inline-block;
     background-color: var(--primary-color);
     color: var(--background-dark);
     padding: 12px 25px;
     text-decoration: none;
     border-radius: 5px;
     font-weight: bold;
     transition: background-color 0.3s ease, transform 0.2s ease;
     border: none;
     cursor: pointer;
     font-size: 1.1em;
 }

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

 /* Animations */
 .fade-in {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 1s ease-out, transform 1s ease-out;
 }

 .fade-in.appear {
     opacity: 1;
     transform: translateY(0);
 }

 /* Header */
 header {
     background-color: rgba(0, 0, 0, 0.8);
     color: var(--text-light);
     padding: 20px 0;
     position: fixed;
     width: 100%;
     z-index: 1000;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
 }

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

 .logo {
     font-family: 'Orbitron', sans-serif;
     font-size: 2.2em;
     color: var(--primary-color);
     text-decoration: none;
     text-shadow: 0 0 8px rgba(0, 191, 255, 0.7);
     transition: transform 0.3s ease;
 }

 .logo:hover {
     transform: scale(1.05);
 }

 nav ul {
     list-style: none;
 }

 nav ul li {
     display: inline;
     margin-left: 30px;
 }

 nav ul li a {
     color: var(--text-light);
     text-decoration: none;
     font-weight: bold;
     font-size: 1.1em;
     position: relative;
     transition: color 0.3s ease;
 }

 nav ul li a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     display: block;
     margin-top: 5px;
     right: 0;
     background: var(--primary-color);
     transition: width 0.3s ease;
 }

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

 nav ul li a:hover::after {
     width: 100%;
     left: 0;
     background: var(--primary-color);
 }

 /* Hero Section */
 #hero {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero.png') no-repeat center center/cover;
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--text-light);
     position: relative;
 }

 #hero h1 {
     font-family: 'Orbitron', sans-serif;
     font-size: 4.5em;
     margin-bottom: 20px;
     text-shadow: 0 0 15px rgba(0, 191, 255, 0.9);
     animation: glitchEffect 1.5s infinite alternate;
 }

 @keyframes glitchEffect {
     0% {
         text-shadow: 0 0 15px rgba(0, 191, 255, 0.9);
         transform: translateX(0);
     }

     20% {
         text-shadow: 0 0 10px rgba(0, 191, 255, 0.7);
         transform: translateX(2px);
     }

     40% {
         text-shadow: 0 0 18px rgba(0, 191, 255, 1);
         transform: translateX(-2px);
     }

     60% {
         text-shadow: 0 0 12px rgba(0, 191, 255, 0.8);
         transform: translateX(1px);
     }

     80% {
         text-shadow: 0 0 16px rgba(0, 191, 255, 0.95);
         transform: translateX(-1px);
     }

     100% {
         text-shadow: 0 0 15px rgba(0, 191, 255, 0.9);
         transform: translateX(0);
     }
 }

 #hero p {
     font-size: 1.8em;
     margin-bottom: 40px;
     color: #ccc;
 }

 /* About Us Section */
 #about-us {
     padding: 80px 0;
     background-color: var(--background-dark);
 }

 #about-us .content {
     display: flex;
     align-items: center;
     gap: 50px;
     flex-wrap: wrap;
     justify-content: center;
 }

 #about-us .text-content {
     flex: 1;
     min-width: 300px;
     color: var(--text-light);
 }

 #about-us .text-content h2 {
     font-family: 'Orbitron', sans-serif;
     font-size: 2.5em;
     margin-bottom: 20px;
     color: var(--primary-color);
 }

 #about-us .text-content p {
     font-size: 1.1em;
     line-height: 1.8;
     margin-bottom: 15px;
 }

 #about-us .image-content {
     flex: 1;
     min-width: 300px;
     text-align: center;
 }

 #about-us .image-content img {
     max-width: 100%;
     border-radius: 10px;
     box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
     transition: transform 0.3s ease;
 }

 #about-us .image-content img:hover {
     transform: scale(1.02);
 }

 /* Featured Sweatshirts Section */
 #featured-sweatshirts {
     padding: 80px 0;
     background-color: #0d0d0d;
 }

 #featured-sweatshirts .gallery {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     justify-content: center;
 }

 .sweatshirt-card {
     background-color: var(--card-background);
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     text-align: center;
     padding-bottom: 20px;
     border: 1px solid rgba(0, 191, 255, 0.2);
 }

 .sweatshirt-card:hover {
     transform: translateY(-5px) scale(1.02);
     box-shadow: 0 0 25px rgba(0, 191, 255, 0.8);
 }

 .sweatshirt-card img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     display: block;
     border-bottom: 1px solid rgba(0, 191, 255, 0.2);
 }

 .sweatshirt-card h3 {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.6em;
     margin: 15px 0 10px;
     color: var(--primary-color);
 }

 .sweatshirt-card .price {
     font-size: 1.4em;
     font-weight: bold;
     color: #f0f0f0;
     margin-bottom: 15px;
 }

 .sweatshirt-card .btn {
     padding: 10px 20px;
 }

 /* Why Shop With Us Section */
 #why-shop-with-us {
     padding: 80px 0;
     background-color: var(--background-dark);
 }

 #why-shop-with-us .benefits-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     text-align: center;
 }

 .benefit-item {
     background-color: var(--card-background);
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid rgba(0, 191, 255, 0.2);
 }

 .benefit-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 0 25px rgba(0, 191, 255, 0.8);
 }

 .benefit-item i {
     font-size: 3em;
     color: var(--primary-color);
     margin-bottom: 20px;
     text-shadow: 0 0 8px rgba(0, 191, 255, 0.7);
 }

 .benefit-item h3 {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.5em;
     color: var(--text-light);
     margin-bottom: 10px;
 }

 .benefit-item p {
     color: #ccc;
     font-size: 1em;
 }

 /* Customer Reviews Section */
 #customer-reviews {
     padding: 80px 0;
     background-color: #0d0d0d;
 }

 #customer-reviews .reviews-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
     gap: 30px;
     justify-content: center;
 }

 .review-card {
     background-color: var(--card-background);
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid rgba(0, 191, 255, 0.2);
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .review-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 0 25px rgba(0, 191, 255, 0.8);
 }

 .review-card p {
     font-style: italic;
     margin-bottom: 20px;
     color: #e0e0e0;
     flex-grow: 1;
 }

 .reviewer-info {
     display: flex;
     align-items: center;
     margin-top: auto;
     /* Pushes content to the bottom */
 }

 .reviewer-info img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     margin-right: 15px;
     border: 2px solid var(--primary-color);
 }

 .reviewer-info span {
     font-weight: bold;
     color: var(--primary-color);
     font-size: 1.1em;
 }

 /* Contact Us Section */
 #contact-us {
     padding: 80px 0;
     background-color: var(--background-dark);
 }

 #contact-us .contact-content {
     display: flex;
     flex-wrap: wrap;
     gap: 50px;
     justify-content: center;
 }

 #contact-us .contact-form-container,
 #contact-us .contact-info-container {
     flex: 1;
     min-width: 300px;
     background-color: var(--card-background);
     padding: 40px;
     border-radius: 10px;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
     border: 1px solid rgba(0, 191, 255, 0.2);
 }

 #contact-us form {
     display: flex;
     flex-direction: column;
 }

 #contact-us form label {
     margin-bottom: 8px;
     font-weight: bold;
     color: var(--text-light);
 }

 #contact-us form input[type="text"],
 #contact-us form input[type="email"],
 #contact-us form textarea {
     padding: 12px;
     margin-bottom: 20px;
     border: 1px solid var(--primary-color);
     border-radius: 5px;
     background-color: #333;
     color: var(--text-light);
     font-size: 1em;
     transition: border-color 0.3s ease, box-shadow 0.3s ease;
 }

 #contact-us form input[type="text"]:focus,
 #contact-us form input[type="email"]:focus,
 #contact-us form textarea:focus {
     outline: none;
     border-color: var(--button-hover);
     box-shadow: 0 0 8px var(--button-hover);
 }

 #contact-us form textarea {
     resize: vertical;
     min-height: 120px;
 }

 #contact-us .contact-info-container p {
     margin-bottom: 15px;
     color: var(--text-light);
     font-size: 1.1em;
 }

 #contact-us .contact-info-container p i {
     color: var(--primary-color);
     margin-right: 10px;
     width: 20px;
     /* Align icons */
     text-align: center;
 }

 .error-message {
     color: #ff4d4d;
     font-size: 0.9em;
     margin-top: -15px;
     margin-bottom: 15px;
     display: block;
 }

 /* Footer */
 footer {
     background-color: rgba(0, 0, 0, 0.8);
     color: #bbb;
     padding: 40px 0;
     text-align: center;
     border-top: 1px solid rgba(0, 191, 255, 0.2);
 }

 footer .footer-nav ul {
     list-style: none;
     padding: 0;
     margin-bottom: 20px;
 }

 footer .footer-nav ul li {
     display: inline;
     margin: 0 15px;
 }

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

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

 .social-icons {
     margin-bottom: 20px;
 }

 .social-icons a {
     color: #bbb;
     font-size: 1.8em;
     margin: 0 10px;
     transition: color 0.3s ease, transform 0.3s ease;
 }

 .social-icons a:hover {
     color: var(--primary-color);
     transform: translateY(-3px);
 }

 .cookie-message {
     font-size: 0.9em;
     color: #999;
     margin-top: 20px;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     header .container {
         flex-direction: column;
         gap: 15px;
     }

     nav ul li {
         margin: 0 10px;
     }

     #hero h1 {
         font-size: 3em;
     }

     #hero p {
         font-size: 1.4em;
     }

     .section-heading {
         font-size: 2.5em;
     }

     #about-us .content,
     #contact-us .contact-content {
         flex-direction: column;
     }

     #about-us .image-content {
         order: -1;
         /* Image appears before text on smaller screens */
     }
 }

 @media (max-width: 480px) {
     nav ul li {
         margin: 0 5px;
     }

     #hero h1 {
         font-size: 2.5em;
     }

     #hero p {
         font-size: 1.2em;
     }

     .section-heading {
         font-size: 2em;
     }

     .sweatshirt-card,
     .benefit-item,
     .review-card {
         margin: 0 auto;
         max-width: 350px;
     }
 }