* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f4f4f4;
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  color: white;
  padding: 15px 40px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.logo span {
  color: red;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a.active,
nav ul li a:hover {
  color: red;
}

.hero {
  height: 90vh;
  background: yellow url('https://images.unsplash.com/photo-1589187155474-f34b1f3eef04?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: red;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: red;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
.hero {
  height: 90vh;
  background: url('background.jpg') no-repeat center center/contain;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}
.shop-section {
  padding: 40px;
  background: white;
  text-align: center;
}

.shop-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: black;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.card h3 {
  margin: 15px 0 10px;
}

.card .price {
  font-size: 18px;
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

.card .btn {
  background: black;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.card:hover {
  transform: scale(1.05);
}
.image-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.image-gallery img {
  height: 120px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
}
.product {
  background: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.product h2 {
  color: #111;
  margin-top: 10px;
}
.price {
  color: green;
  font-weight: bold;
  font-size: 1.1rem;
}
.desc {
  color: #444;
  font-size: 0.9rem;
}
select {
  padding: 6px 12px;
  margin-top: 10px;
  border-radius: 6px;
}
.buy-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #FF3131;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}
.buy-btn:hover {
  background-color: #c40000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #111;
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 24px;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f44336;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 1;
}

.hero-content h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: #f44336;
  color: white;
  padding: 12px 25px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e53935;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  background: #1c1c1c;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.feature-box {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  margin: 10px;
  background: #222;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.feature-box h3 {
  color: #f44336;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #000;
  color: #aaa;
  text-align: center;
  padding: 25px 10px;
  font-size: 14px;
  line-height: 1.6;
}

footer a {
  color: #f44336;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.product-card h3 {
  font-size: 1.5em;
  font-weight: bold;
  color: #111;
}
/* style.css */

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 10px 20px;
}

.navbar .logo h1 {
  margin: 0;
  font-size: 24px;
}

.navbar .logo h1 span:first-child {
  color: white;
}

.navbar .logo h1 span:last-child {
  color: red;
}

.navbar .nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.shop {
  padding: 20px;
}

.shop-heading {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #222;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card h3 {
  margin-top: 0;
  font-size: 20px;
  color: #111;
}

.image-slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin: 10px 0;
}

.image-slider img {
  height: 200px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.image-slider img:hover {
  transform: scale(1.05);
}

.price {
  font-size: 1.2em;
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  margin-right: 10px;
}

.discount {
  color: green;
  font-weight: bold;
}

.rating {
  color: orange;
  font-size: 14px;
}

.size-dropdown {
  margin: 10px 0;
  padding: 5px;
  font-size: 1em;
}

.description {
  margin: 10px 0;
  color: #444;
}

.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}

.color-red { background-color: red; }
.color-black { background-color: black; }
.color-white { background-color: white; border: 1px solid #000; }
.color-blue { background-color: blue; }

.btn-group {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background: #333;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 10px 20px;
}

.logo h1 {
  margin: 0;
  font-size: 1.8em;
}

.white-text {
  color: white;
}

.red-text {
  color: red;
}

.nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a.active {
  border-bottom: 2px solid red;
}

.shop {
  padding: 30px;
}

.shop-heading {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 30px;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card h3 {
  margin: 5px 0;
}

.image-slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin: 10px 0;
}

.image-slider img {
  height: 200px;
  border-radius: 8px;
  cursor: pointer;
}

.colors {
  margin: 10px 0;
}

.color-option {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
}

.price {
  font-size: 1.2em;
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  margin-right: 10px;
}

.discount {
  color: green;
  font-weight: bold;
}

.rating {
  color: orange;
}

.size-dropdown {
  margin: 10px 0;
  padding: 5px;
  font-size: 1em;
}

.description {
  margin: 10px 0;
  color: #444;
}

.btn-group {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background: #333;
}

.lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
.main-shoe-img img {
  width: 100%;
  max-height: 300px;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 10px;
}
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 10px 20px;
}

.navbar .logo h1 {
  margin: 0;
  font-size: 1.8em;
  font-weight: bold;
}

.navbar .logo h1 span:first-child {
  color: white;
}

.navbar .logo h1 span:last-child {
  color: red;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.shop {
  padding: 20px;
}

.shop-heading {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #222;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card h3 {
  margin-top: 0;
  color: #333;
}

.brand-name {
  font-weight: bold;
  margin-bottom: 10px;
  color: #777;
}

.image-slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin: 10px 0;
}

.image-slider img {
  height: 200px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.image-slider img:hover {
  transform: scale(1.05);
}

.price {
  font-size: 1.2em;
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  margin-right: 10px;
}

.discount {
  color: green;
  font-weight: bold;
}

.rating {
  color: orange;
}

.size-dropdown {
  margin: 10px 0;
  padding: 5px;
  font-size: 1em;
}

.description {
  margin: 10px 0;
  color: #444;
}

.btn-group {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #333;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
}

.lightbox img {
  max-height: 80%;
  max-width: 90%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.contact-page {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #000000, #434343);
  color: white;
  padding: 20px;
}

.logo {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
}

.contact-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-form, .contact-details {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 15px;
  width: 350px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: red;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}

.contact-details p, .contact-details a {
  color: #ccc;
  margin: 10px 0;
  line-height: 1.6;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 15px 30px;
}

.navbar .logo {
  font-size: 28px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  transition: 0.3s ease;
}

.nav-links a:hover, .nav-links .active {
  color: red;
}

.map-container {
  margin: 30px auto 0;
  width: 90%;
}
.about-section {
  padding: 40px 60px;
  background: #f9f9f9;
  color: #222;
}

.about-section h2 {
  text-align: center;
  color: #e60023;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.brand-story, .owners {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.brand-story h3, .owners h3, .timeline h3 {
  color: #333;
  margin-bottom: 15px;
}

.timeline {
  margin-top: 40px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.timeline ul {
  list-style: none;
  padding-left: 0;
}

.timeline ul li {
  padding: 10px 0;
  border-left: 3px solid red;
  padding-left: 15px;
  margin-left: 10px;
  position: relative;
}
.about-section {
  background: url('images/about-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 60px 30px;
  position: relative;
}

.about-section .overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 15px;
}

.about-section h2 {
  text-align: center;
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.brand-story, .owners {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  color: #f1f1f1;
}

.brand-story ul {
  padding-left: 20px;
}

.timeline {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.timeline ul {
  list-style: none;
  padding-left: 0;
}

.timeline ul li {
  padding: 10px 0;
  border-left: 4px solid red;
  padding-left: 15px;
  margin-left: 10px;
  position: relative;
}
.brands-section {
  background: url('images/brands-bg.jpg') no-repeat center center/cover;
  padding: 60px 30px;
  color: #fff;
  position: relative;
}

.brands-section .overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 15px;
}

.brands-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
  color: #fff;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.brand-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s;
}

.brand-card:hover {
  transform: scale(1.05);
}

.brand-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.brand-card h3 {
  font-size: 22px;
  color: #ff5555;
  margin-bottom: 10px;
}
body.customer-page {
  background-image: url('customer-bg.jpg'); /* Replace with your own background image */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

.customer-form-section {
  max-width: 600px;
  margin: 80px auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.customer-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.customer-form input,
.customer-form textarea,
.customer-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 10px;
  border: none;
}

.customer-form button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
}

.customer-form button:hover {
  background-color: darkred;
}
body.customer-page {
  background-image: url('images/bg-customer.jpg'); /* Set your actual image path */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

/* Same Logo Styling as Home Page */
.logo {
  font-size: 2.5em;
  text-align: center;
  padding-top: 20px;
}

.nike {
  color: white;
  font-weight: bold;
}

.verse {
  color: red;
  font-weight: bold;
}

/* Same Navbar Styling */
.navbar {
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 10px 0;
}

.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar ul li {
  display: inline-block;
  margin: 0 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.navbar ul li a:hover {
  color: red;
}

/* Customer Form Section */
.customer-form-section {
  max-width: 600px;
  margin: 80px auto;
  background: rgba(0, 0, 0, 0.75);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.customer-form-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2em;
}

.customer-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.customer-form input,
.customer-form textarea,
.customer-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 10px;
  border: none;
}

.customer-form button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  font-size: 1em;
}

.customer-form button:hover {
  background-color: darkred;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.85);
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f8f8f8;
  color: #333;
}

header {
  background-color: #000;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span:first-child {
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.logo span:last-child {
  color: red;
  font-size: 28px;
  font-weight: bold;
}

nav a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: red;
}

.container {
  padding: 30px;
}

.brand-title {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000;
  font-weight: bold;
}

.product {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 15px;
}

.slider img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
}

.product-description {
  margin: 10px 0;
  font-size: 15px;
  color: #555;
}

.size-select {
  margin-bottom: 10px;
}

.size-select select {
  padding: 6px;
  font-size: 14px;
}

.price {
  font-size: 16px;
  color: #111;
  font-weight: bold;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.buttons button {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  background-color: black;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.buttons button:hover {
  background-color: red;
}

.icons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  font-size: 18px;
  color: #666;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
}

header {
  background-color: black;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 32px;
  color: white;
}

header h1 span {
  color: red;
}

nav {
  background: #222;
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  color: red;
}

.container {
  padding: 30px;
}

.brand-title {
  font-size: 26px;
  margin-bottom: 10px;
  color: #111;
}

.product {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  margin-bottom: 40px;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px 0;
}

.slider img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.2s;
}

.slider img:hover {
  transform: scale(1.05);
}

.description {
  margin: 10px 0;
}

.size-select {
  margin: 10px 0;
}

.price-tag {
  font-size: 18px;
  margin: 10px 0;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.discount {
  color: green;
  font-weight: bold;
}

.btn-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.btn-group button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.buy-btn {
  background-color: red;
  color: white;
}

.cart-btn {
  background-color: green;
  color: white;
}

.like-share {
  display: flex;
  gap: 15px;
  font-size: 18px;
  margin: 10px 0;
  color: #555;
}

.like-share i:hover {
  color: red;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
}

header {
  background-color: black;
  padding: 20px;
  text-align: center;
}

nav {
  background: #222;
  display: flex;
  justify-content: flex-end;
  padding: 12px 30px;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: red;
}

.container {
  padding: 30px;
}

.brand-title {
  font-size: 26px;
  margin-bottom: 10px;
  color: #111;
}

.product {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  margin-bottom: 40px;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
}

.slider img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.2s;
}

.slider img:hover {
  transform: scale(1.05);
}

.description {
  margin: 10px 0;
}

.size-select {
  margin: 10px 0;
}

.price-tag {
  font-size: 18px;
  margin: 10px 0;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.discount {
  color: green;
  font-weight: bold;
}

.btn-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.btn-group button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.buy-btn {
  background-color: red;
  color: white;
}

.cart-btn {
  background-color: green;
  color: white;
}

.like-share {
  display: flex;
  gap: 15px;
  font-size: 18px;
  margin: 10px 0;
  color: #555;
}

.like-share i:hover {
  color: red;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
}

header {
  background-color: black;
  padding: 20px;
  text-align: center;
}

nav {
  background: #222;
  display: flex;
  justify-content: flex-end;
  padding: 12px 30px;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: red;
}

.container {
  padding: 30px;
}

.brand-title {
  font-size: 26px;
  margin-bottom: 10px;
  color: #111;
}

.product {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  margin-bottom: 40px;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
}

.slider img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.2s;
}

.slider img:hover {
  transform: scale(1.05);
}

.description {
  margin: 10px 0;
}

.size-select {
  margin: 10px 0;
}

.price-tag {
  font-size: 18px;
  margin: 10px 0;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.discount {
  color: green;
  font-weight: bold;
}

.btn-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.btn-group button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.buy-btn {
  background-color: red;
  color: white;
}

.cart-btn {
  background-color: green;
  color: white;
}

.like-share {
  display: flex;
  gap: 15px;
  font-size: 18px;
  margin: 10px 0;
  color: #555;
}

.like-share i:hover {
  color: red;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
}

header {
  background-color: black;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 32px;
  color: white;
  font-weight: bold;
}

.logo span {
  color: red;
  font-size: 24px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: red;
}

.container {
  padding: 40px 20px;
}

.brand-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #111;
  font-weight: bold;
}

.product {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  margin-bottom: 40px;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.slider img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.slider img:hover {
  transform: scale(1.05);
}

.description {
  margin-top: 15px;
  font-size: 15px;
}

.size-select {
  margin-top: 10px;
}

.price-tag {
  font-size: 18px;
  margin: 10px 0;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.discount {
  color: green;
  font-weight: bold;
}

.btn-group {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.btn-group button {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

.buy-btn {
  background-color: red;
  color: white;
}

.cart-btn {
  background-color: green;
  color: white;
}

.like-share {
  display: flex;
  gap: 15px;
  font-size: 20px;
  color: #555;
}

.like-share i:hover {
  color: red;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
/* NikeVerse Shop Page CSS */

{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }


body { background: #f4f4f4; color: #333; }

header { background-color: black; padding: 20px; display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 32px; color: white; font-weight: bold; }

.logo span { color: red; font-size: 24px; }

nav { display: flex; gap: 20px; }

nav a { color: white; text-decoration: none; font-weight: bold; }

nav a:hover { color: red; }

.container { padding: 30px; }

.brand-title { font-size: 26px; margin-bottom: 10px; color: #111; }

.product { background: white; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.2); padding: 20px; margin-bottom: 40px; }

.slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; padding-bottom: 10px; }

.slider img { width: 150px; height: 150px; object-fit: cover; border-radius: 10px; cursor: pointer; scroll-snap-align: start; transition: transform 0.3s ease; }

.slider img:hover { transform: scale(1.1); }

.description { margin: 10px 0; font-size: 14px; color: #555; }

.size-select { margin: 10px 0; }

.price-tag { font-size: 18px; margin: 10px 0; }

.original-price { text-decoration: line-through; color: #888; margin-right: 10px; }

.discount { color: green; font-weight: bold; }

.rating { color: gold; margin: 10px 0; }

.btn-group { display: flex; gap: 10px; margin: 15px 0; }

.btn-group button { padding: 10px 15px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; font-size: 14px; }

.buy-btn { background-color: red; color: white; }

.cart-btn { background-color: green; color: white; }

.like-share { display: flex; gap: 15px; font-size: 18px; margin: 10px 0; color: #555; }

.like-share i:hover { color: red; cursor: pointer; }

footer { background: #111; color: white; text-align: center; padding: 20px; margin-top: 50px; }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #000;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 30px;
  border-bottom: 2px solid red;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: white;
}

.logo span {
  color: red;
  font-size: 20px;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: red;
}

.container {
  padding: 40px 30px;
}

.brand-title {
  font-size: 28px;
  margin: 20px 0;
  color: red;
}

.product {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 50px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.slider img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slider img:hover {
  transform: scale(1.05);
}

.description {
  margin: 10px 0;
  color: #ccc;
}

.size-select select {
  padding: 6px 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
}

.price-tag {
  margin: 10px 0;
  font-size: 18px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.discount {
  color: green;
  font-weight: bold;
}

.btn-group {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.btn-group button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.buy-btn {
  background-color: red;
  color: white;
}

.cart-btn {
  background-color: green;
  color: white;
}

.buy-btn:hover, .cart-btn:hover {
  transform: scale(1.05);
}

.like-share {
  margin-top: 10px;
  display: flex;
  gap: 20px;
  font-size: 18px;
  color: #888;
}

.like-share i:hover {
  color: red;
  cursor: pointer;
}

.rating {
  color: gold;
  margin: 5px 0;
}

footer {
  background-color: #111;
  padding: 20px;
  text-align: center;
  color: #aaa;
  margin-top: 50px;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #222;
  padding: 30px;
  color: white;
  z-index: 9999;
  border-radius: 10px;
  box-shadow: 0 0 20px red;
}

.popup h3 {
  margin-bottom: 15px;
  color: red;
}

.popup input, .popup button {
  display: block;
  margin: 10px 0;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  border: none;
}

.popup button {
  background: red;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #000;
  color: white;
}

header {
  background-color: black;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 32px;
  font-weight: bold;
}

.logo span {
  color: red;
  font-size: 24px;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: red;
}

.container {
  padding: 40px 30px;
}

.brand-title {
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0;
  color: red;
}

.product {
  background-color: #111;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.slider img {
  width: 180px;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slider img:hover {
  transform: scale(1.05);
}

.description {
  margin: 10px 0;
  font-size: 16px;
}

.size-select select {
  padding: 6px 12px;
  margin-top: 10px;
  border-radius: 5px;
}

.price-tag {
  margin: 10px 0;
  font-size: 18px;
}

.original-price {
  text-decoration: line-through;
  color: grey;
  margin-right: 10px;
}

.discount {
  color: limegreen;
}

.rating {
  margin-top: 5px;
  color: gold;
}

.like-share {
  margin: 10px 0;
  display: flex;
  gap: 15px;
  font-size: 20px;
}

.like-share i:hover {
  color: red;
  cursor: pointer;
}

.btn-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-group button {
  flex: 1;
  padding: 12px 18px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-group button:hover {
  transform: scale(1.05);
}

.cart-btn {
  background: green;
  color: white;
}

.buy-btn {
  background: red;
  color: white;
}

footer {
  margin-top: 60px;
  padding: 30px;
  background-color: #111;
  text-align: center;
  color: white;
}

.popup, .payment-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #222;
  color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
  max-width: 90%;
  width: 350px;
}

.popup.active, .payment-form.active {
  transform: translate(-50%, -50%) scale(1);
}

.popup h3, .payment-form h3 {
  margin-bottom: 20px;
}

.popup button, .payment-form button {
  margin-top: 20px;
  background: red;
  border: none;
  padding: 10px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}
/* style.css */

body { background-color: #000; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #fff; margin: 0; padding: 0; }

header { display: flex; align-items: center; justify-content: space-between; padding: 20px; background-color: #111; }

.logo { font-size: 32px; font-weight: bold; color: white; }

.logo span { color: red; font-size: 24px; }

nav ul { list-style: none; display: flex; gap: 20px; margin: 0; }

nav ul li a { color: white; text-decoration: none; font-size: 16px; transition: color 0.3s; }

nav ul li a:hover { color: red; }

.shop-container { padding: 30px; }

.brand-title { font-size: 24px; margin: 30px 0 10px; color: #fff; }

.product-card { background: #1a1a1a; border-radius: 12px; padding: 15px; margin-bottom: 40px; box-shadow: 0 0 15px rgba(255, 0, 0, 0.3); transition: transform 0.3s; }

.product-card:hover { transform: scale(1.02); }

.slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; }

.slider img { max-height: 200px; border-radius: 10px; scroll-snap-align: start; cursor: zoom-in; transition: transform 0.3s ease; }

.description { font-size: 14px; margin: 10px 0; color: #ccc; }

.select-size { margin: 10px 0; padding: 5px; background: #111; color: #fff; border: 1px solid #444; }

.buttons { display: flex; gap: 10px; margin-top: 10px; }

button.buy-now, button.add-cart { flex: 1; padding: 10px; font-size: 14px; border: none; border-radius: 5px; cursor: pointer; transition: transform 0.2s ease; }

button.buy-now { background-color: red; color: white; }

button.add-cart { background-color: white; color: black; }

button.buy-now:hover, button.add-cart:hover { transform: scale(1.05); }

.like-share { margin-top: 10px; }

.like-share button { background: none; color: white; border: none; margin-right: 10px; cursor: pointer; }

.ratings { margin: 10px 0; color: gold; font-size: 16px; }

.video-container { margin: 30px 0; text-align: center; }

video { width: 100%; max-width: 800px; border-radius: 12px; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }

/* Popup Styles */ .popup { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #222; padding: 30px; border-radius: 10px; box-shadow: 0 0 20px rgba(255, 0, 0, 0.5); z-index: 1000; }

.popup.active { display: block; }

.popup h3 { color: white; margin-bottom: 20px; }

.popup button { padding: 8px 20px; border: none; background: red; color: white; border-radius: 5px; cursor: pointer; }
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 10px 30px;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: white;
}

.logo span {
  color: red;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
}

.navbar a:hover {
  color: red;
}

.brand-name {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin: 30px 0 10px 30px;
  border-left: 5px solid red;
  padding-left: 15px;
}

.video-ad {
  width: 100%;
  margin: 20px 0;
  border: 2px solid red;
}

.product-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 20px;
}

.slider-container img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.slider-container img:hover {
  transform: scale(1.1);
}

.description {
  text-align: center;
  margin: 10px;
  color: #ddd;
}

.size-selector {
  text-align: center;
  margin: 10px;
}

.size-selector select {
  padding: 5px 15px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
}

.pricing {
  text-align: center;
  margin: 10px;
}

.original-price {
  text-decoration: line-through;
  color: gray;
  margin-right: 10px;
}

.discount {
  color: lime;
  font-weight: bold;
}

.final-price {
  color: orange;
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-top: 5px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

button {
  padding: 10px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.05);
}

.buy-btn {
  background-color: red;
  color: white;
}

.cart-btn {
  background-color: white;
  color: black;
}

.rating {
  text-align: center;
  margin: 10px;
  font-size: 18px;
  color: gold;
}

.like-share {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.like-share i {
  font-size: 20px;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
}

.like-share i:hover {
  color: red;
}
.brand-name {
  font-size: 24px;
  color: #ff4c4c; /* bright red for visibility */
  text-align: center;
  margin-bottom: 15px;
}
.brand-name {
  font-size: 24px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(255, 0, 0, 0.6);
  text-align: center;
  margin-bottom: 15px;
}
.video-ad {
  margin: 20px 0;
  text-align: center;
}

.video-heading {
  color: red;
  margin-bottom: 10px;
}

.nike-video {
  border: none;
  outline: none;
  box-shadow: none;
  max-width: 100%;
  border-radius: 10px;
}
.contact-page {
  background-image: url('images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: white;
}

.contact-section {
  background-color: rgba(0, 0, 0, 0.7); /* semi-transparent layer for readability */
  padding: 40px;
  border-radius: 12px;
  margin: 40px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 8px;
}

.contact-form button {
  background-color: red;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: white;
  color: black;
}

.contact-details h3 {
  margin-top: 20px;
  color: #ff5555;
}

.contact-details a {
  color: #00ffff;
  text-decoration: none;
}
.feedback-form {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  background: #111;
  color: #fff;
  border-radius: 10px;
}

.feedback-form h2 {
  text-align: center;
  color: red;
}

.feedback-form form {
  display: flex;
  flex-direction: column;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 5px;
  border: none;
}

.feedback-form button {
  background: red;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.feedback-list {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  background-color: #111;
  color: #fff;
  border-radius: 10px;
}

.feedback-list h2 {
  text-align: center;
  color: red;
  margin-bottom: 1rem;
}

.feedback-box {
  background-color: #222;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid red;
  border-radius: 6px;
}
body {
  color: #ggg; /* invalid hex */
  font-size: 16px
}
.like-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.like-btn i {
  font-size: 24px;
}

.like-btn .liked {
  color: red;
}
.liked {
    color: red;
}
.liked i {
    color: red;
}
.liked i {
    color: red;
}
.liked i {
    color: red;
}
.liked i {
    color: red;
}
.share-wrapper {
  position: relative;
  display: inline-block;
}

.share-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 20px;
}

.share-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 5px 0;
  z-index: 100;
  min-width: 120px;
}

.share-option {
  display: block;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
}

.share-option:hover {
  background-color: #333;
}
.nav-links a:hover {
  color: red;
  transition: color 0.3s ease;
}
