/* ===========================
Premium eCommerce CSS
Luxury Theme: Navy + Gold + White
=========================== */
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f9f9fb;
  color: #111;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Container */
.container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 2rem 0;
}

/* Navbar */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0b1d3b;
  padding: 1rem 0;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: #0ABAB5;
}
.navbar .logo span {
  color: #8A2BE2;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin-left: auto;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ffc107;
}

.navbar .btn {
  margin-left: 1rem;
  background-color: #ffc107;
  color: #0b1d3b;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.navbar .btn:hover {
  background-color: #e0a800;
  color: #ffffff;
}

/* Hide nav-links on mobile by default */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px; /* adjust to navbar height */
  left: 0;
  width: 100%;
  background-color: #071226; /* navbar bg */
  z-index: 10;
}

/* Hamburger style */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* Hamburger bars */
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* When nav-links active (dropdown) */
.nav-links.active {
  display: flex;
}

/* Desktop / Laptop view */
@media screen and (min-width: 992px) {
  .nav-links {
    display: flex !important; /* always show links */
    position: static;
    flex-direction: row;
    background: none;
    width: auto;
  }

  .hamburger {
    display: none; /* hide hamburger on desktop */
  }
}



/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animate Hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay for mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 90;
}

.nav-overlay.active {
  display: block;
}

/* Mobile Navbar */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 200px;
    height: calc(100% - 70px);
    flex-direction: column;
    background-color: #0b1d3b;
    gap: 2rem;
    padding: 2rem 1rem;
    transition: right 0.3s ease-in-out;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
    color: #ffffff;
  }
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0b1d3b, #1a3a6f);
  color: #fff;
  padding: 5rem 2rem;
  border-radius: 0 0 80px 0;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-text h1 span {
  color: #ffc107;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero .btn {
  background-color: #ffc107;
  color: #0b1d3b;
  padding: 0.75rem 2rem;
  font-weight: bold;
}
.hero .btn:hover {
  background-color: #e0a800;
  color: #ffffff;
}
.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transform: rotate(-3deg);
}

/* Section Titles */
.categories h2,
.products h2,
.about h2,
.testimonials h2,
.newsletter h2,
.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: #0b1d3b;
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.category-card {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}
.category-card img {
  max-width: 80px;
  margin-bottom: 1rem;
}

/* Product Cards */
.product-carousel,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.product-card {
  background-color: #ffffff;
  border-radius: 15px;
  text-align: center;
  padding: 1rem;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.product-card p {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #0b1d3b;
}
.product-card .btn {
  background-color: #0b1d3b;
  color: #ffc107;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
}
.product-card .btn:hover {
  background-color: #ffc107;
  color: #0b1d3b;
}

/* Product Badges */
.product-card .badge {
  position: absolute;
  top: 10px;
  left: -5px;
  background-color: #ffc107;
  color: #0b1d3b;
  padding: 0.25rem 0.75rem;
  font-weight: bold;
  border-radius: 5px;
  font-size: 0.85rem;
}

/* Responsive Hero & Navbar */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    border-radius: 0 0 40px 0;
  }
  .hero-image img {
    width: 80%;
    margin: auto;
    transform: rotate(0deg);
  }
}

/* ===== Fix Image Sizes ===== */
.product-images img#main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 8px;
  object-fit: contain;
}

.image-thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.image-thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.image-thumbnails img:hover {
  transform: scale(1.05);
  border-color: gold;
}

.related-products {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.related-products .product-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  font-style: italic;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}
.testimonial-card h4 {
  margin-top: 1rem;
  text-align: right;
  font-weight: 600;
  font-style: normal;
}

/* About Section */
.about p {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Newsletter */
.newsletter {
  text-align: center;
  background-color: #0b1d3b;
  color: #ffc107;
  padding: 3rem 1rem;
  border-radius: 15px;
  margin: 2rem 0;
}
.newsletter input[type="email"] {
  padding: 0.75rem;
  width: 280px;
  max-width: 80%;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}
.newsletter button {
  padding: 0.75rem 1.5rem;
  border: none;
  background-color: #ffc107;
  color: #0b1d3b;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter button:hover {
  background-color: #e0a800;
  color: #ffffff;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
}
.contact-form button {
  background-color: #ffc107;
  color: #0b1d3b;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #e0a800;
  color: #ffffff;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #0b1d3b;
  color: #ffc107;
}
.footer .social-links a {
  color: #ffc107;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer .social-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    border-radius: 0 0 40px 0;
  }
  .hero-image img {
    width: 80%;
    margin: auto;
    transform: rotate(0deg);
  }
  .nav-links {
    display: none;
  }

  .product-images img#main-image {
    max-width: 100%;
  }
  .image-thumbnails img {
    width: 55px;
    height: 55px;
  }
  .related-products .product-card img {
    max-width: 150px;
  }
}

/* Modal / Full View Images */
img {
  max-width: 100%;
  height: auto;
}

.modal img,
.image-viewer img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  margin: auto;
}



/* ===========================
   Shop Page Specific Styles
=========================== */
.shop-page .shop-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Filters Sidebar */
.shop-page .filters {
  flex: 1 1 250px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.shop-page .filters h3 {
  margin-bottom: 1rem;
  color: #0b1d3b;
}

.shop-page .filter-section {
  margin-bottom: 1.5rem;
}
.shop-page .filter-section h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.shop-page .filter-section ul {
  list-style: none;
  padding-left: 0;
}
.shop-page .filter-section li {
  margin-bottom: 0.5rem;
}
.shop-page .filter-section input[type="checkbox"],
.shop-page .filter-section input[type="radio"] {
  margin-right: 0.5rem;
}

/* Shop Products Grid */
.shop-page .shop-products {
  flex: 3 1 700px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Sorting Dropdown */
.shop-page .sorting {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.shop-page .sorting select {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  transition: all 0.3s ease;
}
.shop-page .sorting select:focus {
  border-color: #ffc107;
  box-shadow: 0 0 5px rgba(255,193,7,0.5);
}

/* Product Cards Enhancements */
.shop-page .product-card {
  transition: all 0.4s ease;
}
.shop-page .product-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Badges */
.shop-page .product-card .badge {
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  top: 10px;
  left: 10px;
}

/* Pagination */
.shop-page .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.shop-page .page-link {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  color: #0b1d3b;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.shop-page .page-link:hover,
.shop-page .page-link.active {
  background: #ffc107;
  color: #0b1d3b;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .shop-page .shop-container {
    flex-direction: column;
  }
  .shop-page .filters {
    position: relative;
    top: 0;
    width: 100%;
  }
  .shop-page .shop-products {
    width: 100%;
  }
}

/* Make product images smaller */
.product-card img.product-img {
  width: 90%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

/* Quick View button */
.product-card .quick-view {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffc107;
  color: #0b1d3b;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 10;
}
.product-card:hover .quick-view {
  display: block;
}

/* Shimmer effect for badges */
.badge.shimmer {
  background: linear-gradient(90deg, #ffc107, #fff, #ffc107);
  background-size: 200% auto;
  color: #0b1d3b;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s linear infinite;
}


/* Quick View Modal */
.quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.quick-view-modal .modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  max-width: 700px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
}

.quick-view-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #0b1d3b;
  cursor: pointer;
}

.quick-view-modal .modal-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  object-fit: cover;
}

.quick-view-modal .modal-details {
  flex: 1;
}

.quick-view-modal .modal-details h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.quick-view-modal .modal-details p {
  margin-bottom: 1rem;
}

.quick-view-modal .add-to-cart {
  display: inline-block;
  background-color: #ffc107;
  color: #0b1d3b;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-view-modal .add-to-cart:hover {
  background-color: #e0a800;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .quick-view-modal .modal-content {
    flex-direction: column;
    padding: 1rem;
  }
  .quick-view-modal .modal-image img {
    max-width: 100%;
  }
}

/* Quick View Modal */
.quick-view-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px; /* slightly bigger for side-by-side */
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  z-index: 1000;
  overflow: hidden;
}

.quick-view-modal .modal-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
}

.quick-view-modal .modal-image img {
  width: 250px;
  max-width: 40%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.quick-view-modal .modal-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.quick-view-modal .modal-details h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.quick-view-modal .modal-details p {
  margin: 5px 0;
  font-size: 1rem;
}

.quick-view-modal .btn.add-to-cart {
  margin-top: 10px;
  padding: 0.6rem 1rem;
  width: fit-content;
}

.quick-view-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive: stack image and details on mobile */
@media (max-width: 768px) {
  .quick-view-modal .modal-content {
    flex-direction: column;
    align-items: center;
  }

  .quick-view-modal .modal-image img {
    width: 80%;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .quick-view-modal .modal-details {
    text-align: center;
  }

  .quick-view-modal .btn.add-to-cart {
    width: 100%;
  }
}




/* ===========================
   Product Page Styles
=========================== */

/* Product Detail Section */
.product-detail {
  padding: 4rem 2rem;
  background-color: #f9f9fb;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.product-images #main-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.image-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.image-thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.image-thumbnails img:hover {
  transform: scale(1.1);
  border-color: #ffc107;
}

/* Product Info */
.product-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #0b1d3b;
}

.product-info .price {
  font-size: 1.5rem;
  color: #8A2BE2;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-info .sku,
.product-info .availability {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #444;
}

.product-info .description {
  margin: 1rem 0;
  font-size: 1rem;
  color: #333;
}

.purchase {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.quantity-selector input {
  width: 60px;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  text-align: center;
}

.product-info .btn {
  background-color: #ffc107;
  color: #0b1d3b;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.product-info .btn:hover {
  background-color: #e0a800;
  color: #fff;
  transform: translateY(-2px);
}

/* Product Specs */
.product-specs {
  margin-top: 2rem;
}

.product-specs h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #0b1d3b;
}

.product-specs ul {
  list-style: disc inside;
  color: #333;
  line-height: 1.5;
}

/* Customer Reviews */
.product-reviews h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: #0b1d3b;
}

.review-card {
  background-color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.review-card h4 {
  margin-top: 0.5rem;
  font-weight: 600;
  color: #8A2BE2;
}

/* Related Products */
.related-products h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #0b1d3b;
}

.related-products {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.related-products .product-card {
  max-width: 220px;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  transition: 0.3s;
}

.related-products .product-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

/* ===========================
   Quick View Modal
=========================== */
.quick-view-modal .modal-content {
  padding: 1.5rem;
  gap: 1.5rem;
}

.quick-view-modal .modal-image img {
  max-width: 200px;
  width: 100%;
  border-radius: 8px;
}

.quick-view-modal .modal-details h3 {
  font-size: 1.3rem;
  color: #0b1d3b;
}

.quick-view-modal .modal-details p {
  font-size: 0.95rem;
  color: #333;
}

.quick-view-modal .btn.add-to-cart {
  margin-top: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

/* Responsive Product Page */
@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .related-products .product-card {
    max-width: 45%;
  }

  .product-images #main-image {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .related-products .product-card {
    max-width: 100%;
  }

  .image-thumbnails img {
    width: 50px;
    height: 50px;
  }

  .quick-view-modal .modal-image img {
    max-width: 100%;
  }
}




/* ===========================
   About Page Navbar Override
=========================== */
.about-page .navbar {
  background-color: #ffffff; /* White background */
}

.about-page .nav-links li a {
  color: #0b1d3b; /* Navy text */
}

.about-page .nav-links li a:hover {
  color: #ffc107; /* Gold hover */
}

.about-page .logo {
  color: #0ABAB5; /* Navy logo text */
}

.about-page .logo span {
  color: #8A2BE2; /* Keep purple accent */
}


/* ===========================
   About Page Navbar Alignment
=========================== */
.about-page .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-page .nav-links {
  margin-left: auto; /* push nav items to the right */
  display: flex;
  gap: 1.5rem;
}



/* ===========================
   Contact Page Styling
=========================== */
.contact-page .contact-hero {
  background: linear-gradient(135deg, #0b1d3b, #1a3a6f);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 0 0 60px 0;
}

.contact-page .contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffc107;
}

.contact-page .contact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-page .contact-section {
  padding: 4rem 2rem;
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: start;
}

/* Contact Info Box */
.contact-page .contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-left: 6px solid #ffc107;
}

.contact-page .contact-info h2 {
  margin-bottom: 1rem;
  color: #0b1d3b;
}

.contact-page .contact-info p {
  margin: 0.5rem 0;
  color: #444;
}

.contact-page .contact-info strong {
  color: #0b1d3b;
}

.contact-page .social-links a {
  color: #0b1d3b;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
}

.contact-page .social-links a:hover {
  color: #ffc107;
}

/* Contact Form Box */
.contact-page .contact-form {
  background: #f9f9fb;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-page .contact-form h2 {
  margin-bottom: 1rem;
  color: #0b1d3b;
}

.contact-page .contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
  transition: border 0.3s;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  border-color: #ffc107;
  box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.contact-page .contact-form button {
  background: #0b1d3b;
  color: #ffc107;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-page .contact-form button:hover {
  background: #ffc107;
  color: #0b1d3b;
}

/* Contact Page Map */
.contact-page .map-container {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


/* ===========================
 Luxury Hover & Animation Effects
 For Cart & Checkout Pages
=========================== */

/* Buttons */
.cart-section .btn,
.checkout-section button,
.product-card .btn,
.navbar .btn {
  transition: all 0.3s ease;
}

.cart-section .btn:hover,
.checkout-section button:hover,
.product-card .btn:hover,
.navbar .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  color: #0b1d3b !important;
  background-color: #ffc107 !important;
}

/* Table Rows in Cart */
.cart-table tbody tr {
  transition: background 0.3s, transform 0.3s;
}

.cart-table tbody tr:hover {
  background-color: #fff8e1; /* soft gold highlight */
  transform: translateY(-2px);
}

/* Cart Images Hover */
.cart-item img,
.cart-product img {
  transition: transform 0.3s, box-shadow 0.3s;
}

.cart-item img:hover,
.cart-product img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Order Summary Hover */
.order-summary .summary-item {
  transition: background 0.3s, transform 0.3s;
}

.order-summary .summary-item:hover {
  background-color: #fff8e1;
  transform: translateX(3px);
}

/* Checkout Form Inputs */
.billing-form input,
.billing-form textarea,
.billing-form select {
  transition: all 0.3s ease;
}

.billing-form input:focus,
.billing-form textarea:focus,
.billing-form select:focus {
  border-color: #ffc107;
  box-shadow: 0 0 5px rgba(255,193,7,0.5);
  outline: none;
}

/* Cart Remove Button */
.remove-btn {
  background: #ff4d4d;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-weight: bold;
  transition: all 0.3s;
}

.remove-btn:hover {
  background: #ffc107;
  color: #0b1d3b;
  transform: scale(1.2);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* ===========================
 Luxury Shimmer Animation
 Cart & Checkout Hero + Button
=========================== */

/* Shimmer effect for hero titles */
.cart-hero h1,
.checkout-hero h1 {
  font-size: 3rem;
  color: #ffc107;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #ffc107, #fff, #ffc107);
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2.5s linear infinite;
}

/* Shimmer keyframes */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Shimmer on “Proceed to Checkout” button */
.checkout-btn {
  position: relative;
  overflow: hidden;
  background-color: #ffc107;
  color: #0b1d3b;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.checkout-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1), rgba(255,255,255,0.4));
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.checkout-btn:hover::after {
  left: 125%;
  transition: all 0.8s ease;
}

.checkout-btn:hover {
  background-color: #e0a800;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
