/* ===== Global Styles ===== */
:root {
  --black: #000000;
  --oxford-blue: #14213d;
  --orange-web: #fca311;
  --platinum: #e5e5e5;
  --white: #ffffff;
}

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

body {
  font-family: "Lato", sans-serif;
  background-color: var(--platinum);
  color: var(--oxford-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

section {
  padding: 5rem 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--oxford-blue);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.logo {
  font-family: "Playfair Display", serif;
  color: var(--orange-web);
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--platinum);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--orange-web);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--orange-web);
}

.cart-icon {
  color: var(--platinum);
  font-size: 1.5rem;
  transition: color 0.3s ease;
  z-index: 1001;
}

.cart-icon:hover {
  color: var(--orange-web);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
  color: var(--platinum);
  font-size: 1.5rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero/hero-saree.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0;
  margin: 0;
}

.hero-bg {
  display: none;
  /* Hide the duplicate image */
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin: 0 1rem;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  color: var(--white);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: var(--orange-web);
  color: var(--oxford-blue);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero .btn:hover {
  background-color: var(--platinum);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero-content {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 70vh;
  }

  .hero-content {
    padding: 1.2rem;
    margin: 0 0.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* ===== Featured Products ===== */
.featured {
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--oxford-blue);
  display: inline-block;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--orange-web);
  margin: 0.5rem auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--orange-web);
  color: var(--oxford-blue);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
}

.product-img {
  height: 350px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--oxford-blue);
}

.product-price {
  color: var(--orange-web);
  font-weight: 700;
  font-size: 1.1rem;
}

.quick-view {
  display: inline-block;
  margin-top: 1rem;
  color: var(--oxford-blue);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}

.quick-view:hover {
  color: var(--orange-web);
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* ===== About Section ===== */
.about {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 33, 61, 0.9);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--orange-web);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature-icon {
  color: var(--orange-web);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
  background-color: var(--oxford-blue);
  color: var(--platinum);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  color: var(--orange-web);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-about p {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--platinum);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--orange-web);
}

.footer-links h3 {
  color: var(--orange-web);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--platinum);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange-web);
}

.newsletter input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(229, 229, 229, 0.2);
  color: var(--white);
}

.newsletter input::placeholder {
  color: var(--platinum);
}

.newsletter button {
  width: 100%;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(229, 229, 229, 0.2);
}

/* ===== Buttons ===== */
.btn {
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--orange-web);
  color: var(--oxford-blue);
  border: 2px solid var(--orange-web);
}

.btn-secondary {
  background-color: transparent;
  color: var(--orange-web);
  border: 2px solid var(--orange-web);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(252, 163, 17, 0.3);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--oxford-blue);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: left 0.5s ease;
    padding: 2rem;
  }

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

  .hamburger {
    display: block;
  }

  .cart-icon {
    margin-left: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== Privacy Policy Page ===== */
.privacy-policy {
  padding: 8rem 0 5rem;
  background-color: var(--white);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--oxford-blue);
}

.last-updated {
  text-align: right;
  color: var(--orange-web);
  font-weight: 700;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h3 {
  color: var(--orange-web);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-section ul {
  list-style: none;
  padding-left: 1.5rem;
}

.policy-section ul li {
  margin-bottom: 0.8rem;
  position: relative;
}

.policy-section ul li::before {
  content: "•";
  color: var(--orange-web);
  position: absolute;
  left: -1.5rem;
}

.contact-info {
  background: var(--platinum);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 6rem 0 3rem;
  }

  .policy-section h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .policy-content {
    padding: 0 1rem;
  }
}

/* ===== Quick View Modal ===== */
.quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  overflow-y: auto;
}

.quick-view-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  border-radius: 8px;
  position: relative;
  padding: 2rem;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--oxford-blue);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--orange-web);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product-gallery {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: zoom-in;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding: 5px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border: 2px solid var(--oxford-blue);
}

.zoom-container {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 400px;
  height: 400px;
  margin-left: 20px;
  background-repeat: no-repeat;
  background-size: 800%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.product-details h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--oxford-blue);
}

.product-price {
  font-size: 1.5rem;
  color: var(--orange-web);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-description {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-features {
  margin-bottom: 2rem;
}

.product-features h3 {
  color: var(--oxford-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.product-features ul {
  list-style: none;
}

.product-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.product-features li::before {
  content: "•";
  color: var(--orange-web);
  position: absolute;
  left: 0;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

@media (max-width: 992px) {
  .modal-body {
    grid-template-columns: 1fr;
  }

  .main-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
  }

  .main-image {
    height: 400px;
  }

  .zoom-container {
    display: none !important;
  }

  .thumbnail-container {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .modal-content {
    padding: 1rem;
    margin: 1rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
  }
}

/* ===== Products Page ===== */
.products-header {
  background-color: var(--oxford-blue);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
}

.products-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--orange-web);
}

.products-header p {
  font-size: 1.2rem;
  color: var(--platinum);
  max-width: 600px;
  margin: 0 auto;
}

.products-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.filters {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--oxford-blue);
  font-weight: 700;
}

.filter-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--platinum);
  border-radius: 4px;
  background-color: var(--white);
  color: var(--oxford-blue);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-group select:hover {
  border-color: var(--orange-web);
}

.filter-group select:focus {
  outline: none;
  border-color: var(--orange-web);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.page-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--oxford-blue);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.page-numbers a:hover {
  background-color: var(--orange-web);
  color: var(--oxford-blue);
}

.page-numbers .active {
  background-color: var(--orange-web);
  color: var(--oxford-blue);
}

@media (max-width: 768px) {
  .products-header {
    padding: 6rem 0 3rem;
  }

  .products-header h1 {
    font-size: 2.5rem;
  }

  .filters {
    gap: 1rem;
  }

  .filter-group {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .products-header h1 {
    font-size: 2rem;
  }

  .products-header p {
    font-size: 1rem;
  }

  .page-numbers {
    display: none;
  }
}

/* ===== Contact Page ===== */
.contact-header {
  background-color: var(--oxford-blue);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
}

.contact-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--orange-web);
}

.contact-header p {
  font-size: 1.2rem;
  color: var(--platinum);
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  color: var(--oxford-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card {
  background: var(--platinum);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2rem;
  color: var(--orange-web);
  margin-bottom: 1rem;
}

.info-card h3 {
  color: var(--oxford-blue);
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--oxford-blue);
}

.info-card a {
  color: var(--oxford-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--orange-web);
}

.map-container {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-section {
  grid-column: 1;
  grid-row: 3;
}

.whatsapp-section h2 {
  color: var(--oxford-blue);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.whatsapp-card {
  background: var(--platinum);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.qr-code {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: var(--white);
  border: none;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
}

.social-section {
  grid-column: 2;
  grid-row: 3;
}

.social-section h2 {
  color: var(--oxford-blue);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-card {
  background: var(--platinum);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: var(--oxford-blue);
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  background: var(--orange-web);
  color: var(--oxford-blue);
}

.social-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.social-card span {
  display: block;
  font-weight: 700;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    grid-column: 1;
    grid-row: 2;
  }

  .whatsapp-section {
    grid-row: 3;
  }

  .social-section {
    grid-row: 4;
  }
}

@media (max-width: 768px) {
  .contact-header {
    padding: 6rem 0 3rem;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}

/* Shopping Cart Panel */
.cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-panel.active {
  right: 0;
}

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  color: var(--oxford-blue);
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #666;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  gap: 1rem;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.item-details {
  flex: 1;
}

.item-details h4 {
  margin: 0;
  font-size: 1rem;
}

.item-details p {
  margin: 0.5rem 0;
  color: #666;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.item-quantity button {
  background: #f5f5f5;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
}

.remove-item {
  background: none;
  border: none;
  color: #ff4444;
  cursor: pointer;
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid #eee;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.checkout-btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--oxford-blue);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkout-btn:hover {
  background: #1a2b4d;
}

/* Notifications */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--oxford-blue);
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
  z-index: 1000;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Responsive Design for Cart */
@media (max-width: 480px) {
  .cart-panel {
    width: 100%;
    right: -100%;
  }
}

/* Wishlist Button */
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 2;
}

.wishlist-btn i {
  font-size: 1.2rem;
  color: #666;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn.active i {
  color: #ff4444;
}

.product-card {
  position: relative;
}

/* ===== Terms of Service Page ===== */
.terms-of-service {
  padding: 8rem 0 5rem;
  background-color: var(--white);
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--oxford-blue);
}

.terms-content .last-updated {
  text-align: right;
  color: var(--orange-web);
  font-weight: 700;
  margin-bottom: 2rem;
}

.terms-section {
  margin-bottom: 2.5rem;
}

.terms-section h3 {
  color: var(--orange-web);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.terms-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.terms-section ul {
  list-style: none;
  padding-left: 1.5rem;
}

.terms-section ul li {
  margin-bottom: 0.8rem;
  position: relative;
}

.terms-section ul li::before {
  content: "•";
  color: var(--orange-web);
  position: absolute;
  left: -1.5rem;
}

.terms-content .contact-info {
  background: var(--platinum);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .terms-of-service {
    padding: 6rem 0 3rem;
  }

  .terms-section h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .terms-content {
    padding: 0 1rem;
  }
}

/* ===== Returns & Exchanges Page ===== */
.returns-policy {
  padding: 8rem 0 5rem;
  background-color: var(--white);
}

.returns-policy .policy-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--oxford-blue);
}

.returns-policy .last-updated {
  text-align: right;
  color: var(--orange-web);
  font-weight: 700;
  margin-bottom: 2rem;
}

.returns-policy .policy-section {
  margin-bottom: 2.5rem;
}

.returns-policy .policy-section h3 {
  color: var(--orange-web);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.returns-policy .policy-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.returns-policy .policy-section ul,
.returns-policy .policy-section ol {
  list-style: none;
  padding-left: 1.5rem;
}

.returns-policy .policy-section ul li,
.returns-policy .policy-section ol li {
  margin-bottom: 0.8rem;
  position: relative;
}

.returns-policy .policy-section ul li::before {
  content: "•";
  color: var(--orange-web);
  position: absolute;
  left: -1.5rem;
}

.returns-policy .policy-section ol li {
  counter-increment: item;
}

.returns-policy .policy-section ol li::before {
  content: counter(item) ".";
  color: var(--orange-web);
  position: absolute;
  left: -1.5rem;
}

.returns-policy .contact-info {
  background: var(--platinum);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .returns-policy {
    padding: 6rem 0 3rem;
  }

  .returns-policy .policy-section h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .returns-policy .policy-content {
    padding: 0 1rem;
  }
}

/* ===== Features Section ===== */
.features {
  padding: 4rem 2rem;
  background-color: var(--platinum);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--orange-web);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--oxford-blue);
}

.feature-card p {
  color: var(--oxford-blue);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features {
    padding: 3rem 1.5rem;
  }

  .features-container {
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .features {
    padding: 2rem 1rem;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.2rem;
  }

  .feature-icon {
    font-size: 1.8rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }
}