/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Background */
body {
  font-family: 'Arial', sans-serif;
  background: #f5f5f5;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 50px;
}

.navbar .logo {
  font-size: 30px;
  color: #fff;
}

.navbar .logo span {
  color: gold;
}

.navbar nav {
  display: flex;
}

.navbar nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.navbar nav a.active {
  color: gold;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
}

.carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.carousel-item {
  margin: 0 15px;
  transform: perspective(500px) rotateY(0deg);
  transition: transform 0.5s ease;
}

.carousel-item img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.carousel-item:hover img {
  transform: scale(1.1);
}

/* Hover Effect */
.carousel-item:hover {
  transform: perspective(500px) rotateY(10deg);
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Mobile Responsiveness - Smaller Devices */
@media (max-width: 768px) {
  /* Navigation Bar */
  .navbar {
    flex-direction: column;
    padding: 15px;
  }

  .navbar nav {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .navbar nav a {
    margin: 10px 0;
    font-size: 18px;
  }

  /* Hero Section */
  .hero {
    height: auto;
    padding: 40px 10px;
  }

  .carousel {
    flex-direction: column;
    align-items: center;
  }

  .carousel-item {
    margin-bottom: 20px;
  }

  .carousel-item img {
    max-width: 100%;
  }

  /* Footer */
  footer {
    padding: 10px;
    font-size: 14px;
  }
}

/* Mobile Responsiveness - Very Small Devices */
@media (max-width: 480px) {
  .navbar .logo {
    font-size: 24px;
  }

  .navbar nav a {
    font-size: 16px;
    margin: 8px 0;
  }

  .carousel-item img {
    max-width: 100%;
    height: auto;
  }

  footer {
    font-size: 12px;
    padding: 8px;
  }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f5f5f5;
  }
  
  /* Navigation Bar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 20px 50px;
  }
  
  .navbar .logo {
    font-size: 30px;
    color: #fff;
  }
  
  .navbar .logo span {
    color: gold;
  }
  
  .navbar nav {
    display: flex;
  }
  
  .navbar nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .navbar nav a.active {
    color: gold;
  }
  
  /* Shop Hero Section */
  .shop-hero {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .shop-hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .shop-hero p {
    font-size: 18px;
  }
  
  /* Product Gallery */
  .product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 10%;
  }
  
  .product {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .product h3 {
    font-size: 20px;
    margin: 20px 0;
    text-align: center;
  }
  
  .product p {
    font-size: 18px;
    color: #777;
    text-align: center;
  }
  
  .product button {
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .product button:hover {
    background-color: gold;
  }
  
  .product:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
  }
/* Blog Page */
.blog-hero {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .blog-hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .blog-hero p {
    font-size: 18px;
  }
  
  .blog-posts {
    padding: 50px 10%;
  }
  
  .post {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  .post h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .post .post-date {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
  }
  
  .post .excerpt {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .read-more {
    font-size: 18px;
    color: gold;
    text-decoration: none;
    font-weight: bold;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
/* Product Detail Page */
.product-detail {
    display: flex;
    padding: 50px;
    justify-content: space-between;
  }
  
  .product-images {
    flex: 1;
    margin-right: 30px;
  }
  
  .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .thumbnail-images {
    display: flex;
    margin-top: 20px;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .thumbnail:hover {
    transform: scale(1.1);
  }
  
  .product-info {
    flex: 1;
  }
  
  .product-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .product-info .price {
    font-size: 28px;
    color: gold;
    margin-bottom: 20px;
  }
  
  .product-info .description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .product-info .buy-now {
    width: 200px;
    padding: 15px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .product-info .buy-now:hover {
    background-color: gold;
  }
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f5f5f5;
  }
  
  /* Navigation Bar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 20px 50px;
  }
  
  .navbar .logo {
    font-size: 30px;
    color: #fff;
  }
  
  .navbar .logo span {
    color: gold;
  }
  
  .navbar nav {
    display: flex;
  }
  
  .navbar nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .navbar nav a.active {
    color: gold;
  }
  
  /* Shop Hero Section */
  .shop-hero {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .shop-hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .shop-hero p {
    font-size: 18px;
  }
  
  /* Product Gallery */
  .product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 10%;
  }
  
  .product {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .product h3 {
    font-size: 20px;
    margin: 20px 0;
    text-align: center;
  }
  
  .product p {
    font-size: 18px;
    color: #777;
    text-align: center;
  }
  
  .product button {
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .product button:hover {
    background-color: gold;
  }
  
  .product:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
  }
/* Blog Page */
.blog-hero {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .blog-hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .blog-hero p {
    font-size: 18px;
  }
  
  .blog-posts {
    padding: 50px 10%;
  }
  
  .post {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  .post h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .post .post-date {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
  }
  
  .post .excerpt {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .read-more {
    font-size: 18px;
    color: gold;
    text-decoration: none;
    font-weight: bold;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
          

  /* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
  }
  
  header {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
  }
  
  .navbar .logo {
    font-size: 2rem;
    font-weight: bold;
  }
  
  .navbar nav a {
    text-decoration: none;
    color: #fff;
    margin: 0 1rem;
    font-size: 1rem;
  }
  
  .navbar nav a:hover {
    color: #FFD700;
  }
  
  .navbar nav a.active {
    color: #FFD700;
  }
  
  /* Hero Section */
  .shop-hero {
    text-align: center;
    background: linear-gradient(to right, #333, #777);
    padding: 4rem 2rem;
    color: #fff;
  }
  
  .shop-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .shop-hero p {
    font-size: 1.2rem;
  }
  
  /* Product Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
  }
  
  .product-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .product-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
  }
  
  .product-item img:hover {
    transform: scale(1.05);
  }
  
  .product-item h3 {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
  
  .product-item .price {
    font-size: 1.2rem;
    color: #FFD700;
    margin: 0.5rem 0;
  }
  
  .view-details {
    text-decoration: none;
    color: #000;
    background-color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: inline-block;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .view-details:hover {
    background-color: #f1c40f;
  }
  
  /* Product Detail Page */
  .product-detail {
    display: flex;
    justify-content: space-between;
    padding: 4rem 2rem;
  }
  
  .product-images {
    flex: 1;
    margin-right: 2rem;
  }
  
  .product-images .main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .thumbnail-images {
    display: flex;
    margin-top: 1rem;
  }
  
  .thumbnail-images img {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
  }
  
  .thumbnail-images img:hover {
    transform: scale(1.1);
  }
  
  .product-info {
    flex: 1;
  }
  
  .product-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .product-info .price {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
  }
  
  .product-info .description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .buy-now {
    background-color: #FFD700;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .buy-now:hover {
    background-color: #f1c40f;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .product-grid {
      grid-template-columns: 1fr;
    }
  
    .product-detail {
      flex-direction: column;
      align-items: center;
    }
  
    .product-images {
      margin-right: 0;
    }
  }

  /* Contact Page */
.contact-hero {
    text-align: center;
    background: #333;
    color: #fff;
    padding: 4rem 2rem;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-hero p {
    font-size: 1.2rem;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .contact-form input, 
  .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    height: 150px;
    resize: none;
  }
  
  .submit-btn {
    background-color: #FFD700;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #f1c40f;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
/* About Page */
.about-hero {
    text-align: center;
    background: #333;
    color: #fff;
    padding: 4rem 2rem;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .about-hero p {
    font-size: 1.2rem;
  }
  
  .about-info {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .about-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-info p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .product-grid {
      grid-template-columns: 1fr;
    }
  
    .product-detail {
      flex-direction: column;
      align-items: center;
    }
  
    .product-images {
      margin-right: 0;
    }
  
    .contact-form input, 
    .contact-form textarea {
      width: 100%;
    }
  
    .submit-btn {
      width: 100%;
    }
  
    .about-info {
      padding: 1rem;
    }
  }

  /* Product Detail Page */
.product-detail {
    display: flex;
    padding: 4rem 2rem;
    justify-content: space-between;
    background-color: #f4f4f4;
  }
  
  .product-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .main-image:hover {
    transform: scale(1.05);
  }
  
  .thumbnail-images {
    display: flex;
    margin-top: 1.5rem;
    justify-content: center;
  }
  
  .thumbnail {
    width: 90px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
  }
  
  .thumbnail:hover {
    transform: scale(1.1);
    border-color: #FFD700;
  }
  
  .product-info {
    flex: 1;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    color: #333;
  }
  
  .product-info .price {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: bold;
  }
  
  .product-info .description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
  }
  
  .buy-now {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
  }
  
  .buy-now:hover {
    background-color: #f1c40f;
    transform: scale(1.05);
  }
  
  .buy-now:active {
    transform: scale(1);
  }
  
  .product-info ul {
    list-style-type: none;
    padding: 0;
  }
  
  .product-info ul li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
  }
  
  .product-info ul li span {
    font-weight: bold;
    color: #333;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .product-detail {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .product-info {
      padding: 1rem;
    }
  
    .main-image {
      width: 80%;
    }
  
    .thumbnail-images {
      justify-content: center;
    }
  
    .thumbnail {
      width: 70px;
    }
  
    .product-info h1 {
      font-size: 2rem;
    }
  
    .product-info .price {
      font-size: 1.5rem;
    }
  
    .buy-now {
      width: 100%;
      font-size: 1.2rem;
    }
  }
/* FAQ Page */
.faq-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .faq-section h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-family: 'Georgia', serif;
    color: #333;
  }
  
  .faq-item {
    margin-bottom: 2rem;
  }
  
  .faq-question {
    background-color: #FFD700;
    color: #000;
    padding: 1.2rem;
    font-size: 1.5rem;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: #f1c40f;
    transform: scale(1.05);
  }
  
  .faq-answer {
    display: none;
    background-color: #fff;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1.1rem;
    color: #666;
    text-align: left;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .faq-section {
      padding: 3rem 1.5rem;
    }
  
    .faq-question {
      font-size: 1.3rem;
    }
  
    .faq-answer {
      font-size: 1rem;
    }
  }
    