@charset "UTF-8";
/* ========== Google Fonts =========== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aclonica&display=swap");
/* ========== CSS Variables =========== */
:root {
  --primary-color: #ff5e3a;
  --default-color: #4f5665;
  --black-color: #000;
  --grey-color: #f0f0f0;
  --white-color: #fff;
  --lightpink: #ffcce0;
  --blue: #1a1aff;
  --custom: #1a1aff;
  --color: #4d4d4d;
  --lightblue: #ccccff;
  --box-shadow-1: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-2: 0 5px 15px rgba(255, 94, 58, 0.2);
  --gradient: linear-gradient(to bottom, #fccb90, #ff9a9e);
  --btn-gradient: linear-gradient(to bottom, #ff5151 50%, #ff5e3a);
}

*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black-color);
  background-color: var(--white-color);
}

h1,
h2,
h3,
h4 {
  color: var(--black-color);
  line-height: 1.2;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

section {
  padding: 5rem 0 5rem;
  overflow: hidden;
}

p {
  line-height: 3rem;
}

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

/* ========== Custom Classes =========== */
.container {
  max-width: 120rem;
  padding: 0 3rem;
  margin: auto;
}

@media (min-width: 1600px) {
  .container {
    max-width: 160rem;
  }
}
@media (max-width: 567px) {
  .container {
    padding: 0 1rem;
  }
}
.d-flex {
  display: flex;
  align-items: center;
}

/* ========== Header =========== */
.header {
  margin-bottom: 4rem;
}
.header .navbar {
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
}
.header .navbar .logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.header .navbar .logo a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.header .navbar .logo img {
  max-height: 5rem;
  width: auto;
  object-fit: contain;
}
.header .navbar .logo .logo-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Aclonica", sans-serif;
  letter-spacing: 0.5px;
}
.header .navbar .row {
  justify-content: space-between;
}
.header .navbar .row .nav-list a {
  display: inline-block;
  padding: 1rem;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--black-color);
}
.header .navbar .row .nav-list a.user-link {
  display: none;
}
.header .navbar .row .nav-list a:not(:last-child) {
  margin-right: 0.5rem;
}
.header .navbar .row .nav-list a:hover {
  color: var(--primary-color);
}
.header .navbar .row .icons .icon {
  font-size: 2.2rem;
  padding: 0.5rem;
  color: var(--black-color);
  cursor: pointer;
  justify-content: center;
  position: relative;
}
.header .navbar .row .icons .icon:not(:last-child) {
  margin-right: 3rem;
}
.header .navbar .row .icons .icon span {
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary-color);
  border: 1px solid var(--black-color);
  position: absolute;
  top: 0.3rem;
  right: 0.4rem;
  border-radius: 50%;
}
.header .navbar .row .icons .icon:hover {
  background-color: #f4f4f4;
}
.header .hamburger,
.header .close {
  display: none;
}
@media (min-width: 1600px) {
  .header .header .navbar {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .header .navbar .row .icons {
    display: none;
  }
  .header .navbar .row .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 35rem;
    height: 100%;
    background-color: var(--white-color);
    z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 1rem;
    transition: 0.5s;
  }
  .header .navbar .row .nav-list a {
    font-size: 1.8rem;
  }
  .header .navbar .row .nav-list a:not(:last-child) {
    margin: 0 0 1rem 0;
  }
  .header .navbar .row .nav-list .close {
    display: block;
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    color: var(--black-color);
    font-size: 3rem;
  }
  .header .navbar .row .nav-list.show {
    right: 0;
  }
  .header .navbar .row .hamburger {
    display: block;
    font-size: 3rem;
    color: var(--black-color);
  }
}

/* ========== Hero Area =========== */
.header .hero {
  height: 80vh;
  margin: 0 3rem;
}
.header .hero .row {
  height: 100%;
  background: url("../images/bg.svg") center/cover no-repeat fixed;
  border-radius: 2rem;
  position: relative;
}
.header .hero .row .col {
  margin-left: 5rem;
}
.header .hero .row .col .subtitle {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 4rem;
}
.header .hero .row .col h1 {
  font-family: "Aclonica", sans-serif;
  font-size: 13rem;
  line-height: 1;
}
.header .hero .row .col h1 .i {
  color: var(--primary-color);
  position: relative;
}
.header .hero .row .col h1 .i:before {
  content: "ı";
  position: absolute;
  color: var(--black-color);
}
.header .hero .row .col p {
  font-size: 2rem;
  margin-bottom: 6rem;
}
.header .hero .row .col .btn {
  display: inline-block;
  padding: 1.5rem 6rem;
  border-radius: 1rem;
  color: var(--white-color);
  font-weight: 500;
  font-size: 1.8rem;
  background: var(--btn-gradient);
  box-shadow: var(--box-shadow-1);
}
.header .hero .row img {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .header .hero .row img {
    width: 40rem;
  }
}
@media (max-width: 1200px) {
  .header .hero .row .col h1 {
    font-size: 8rem;
  }
}
@media (max-width: 768px) {
  .header .hero .row .col {
    position: absolute;
    top: 10%;
    margin-left: 0;
  }
  .header .hero .row .col .subtitle {
    font-size: 1.6rem;
  }
  .header .hero .row .col h1 {
    font-size: 7rem;
  }
  .header .hero .row .col p {
    font-size: 1.6rem;
  }
  .header .hero .row .col .btn {
    padding: 1.2rem 4rem;
  }
  .header .hero .row img {
    width: 40rem;
  }
}
@media (max-width: 567px) {
  .header .hero {
    height: 100vh;
    margin: 0 1rem;
  }
  .header .hero .row .col .subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .header .hero .row .col h1 {
    font-size: 7rem;
  }
  .header .hero .row .col p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .header .hero .row .col .btn {
    padding: 1.2rem 4rem;
  }
  .header .hero .row img {
    width: 25rem;
  }
}

/* ========== Local Product Banner =========== */
.local-product-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 0;
  margin: 2rem 0;
}

.local-product-banner .container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.local-product-banner .banner-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 2.5rem 3rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.local-product-banner .banner-icon {
  font-size: 5rem;
  color: #fff;
  flex-shrink: 0;
}

.local-product-banner .banner-text h3 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.local-product-banner .banner-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .local-product-banner .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .local-product-banner .banner-icon {
    font-size: 4rem;
  }

  .local-product-banner .banner-text h3 {
    font-size: 2rem;
  }

  .local-product-banner .banner-text p {
    font-size: 1.4rem;
  }
}

/* ========== Collection =========== */
.section .title {
  text-align: center;
  margin-bottom: 5rem;
}
.section .title span {
  display: inline-block;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.section .title span::before {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.section .title h2 {
  font-size: 2.4rem;
}

.collection .filters {
  justify-content: center;
  margin-bottom: 7rem;
}
.collection .filters div {
  padding: 1.7rem 4rem;
  color: var(--default-color);
  font-size: 1.7rem;
  border-radius: 0.8rem;
  box-shadow: var(--box-shadow-1);
  cursor: pointer;
}
.collection .filters div:not(:last-child) {
  margin-right: 4rem;
}
.collection .filters div:hover,
.collection .filters div.active {
  background: var(--gradient);
  color: var(--white-color);
  box-shadow: var(--box-shadow-2);
}
.collection .products .swiper-wrapper {
  padding: 0 0 1.5rem;
}
.collection .products .product {
  border-radius: 2.5rem;
  box-shadow: var(--box-shadow-1);
  overflow: hidden;
}
.collection .products .product .top {
  background: var(--gradient);
  height: 30rem;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.collection .products .product .top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection .products .product .top .icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 2.5rem;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.collection .products .product .top:hover .icon {
  opacity: 1;
  visibility: visible;
}
.collection .products .product .bottom {
  padding: 2.5rem 2rem;
}
.collection .products .product .bottom h4 {
  font-size: 1.8rem;
  width: 85%;
  height: 5rem;
  margin-bottom: 1.5rem;
}
.collection .products .product .bottom .d-flex {
  justify-content: space-between;
}
.collection .products .product .bottom .price {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 1rem;
  padding: 0.5rem 2rem;
}
.collection .products .product .bottom .rating {
  color: var(--primary-color);
}
.collection .products .product .bottom .rating i:not(:last-child) {
  margin-right: 0.3rem;
}
.collection .products .pagination {
  text-align: center;
  margin-top: 3rem;
}
.collection .products .pagination .swiper-pagination-bullet {
  background-color: var(--primary-color);
  height: 1rem;
  width: 1rem;
}
.collection .products .pagination .swiper-pagination-bullet-active {
  width: 3rem;
  border-radius: 1.5rem;
}

@media (min-width: 1600px) {
  .collection .products .product .top {
    height: 35rem;
  }
}
@media (max-width: 768px) {
  .collection .filters {
    margin-bottom: 7rem;
  }
  .collection .filters div {
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
  }
  .collection .filters div:not(:last-child) {
    margin-right: 2rem;
  }
}
@media (max-width: 567px) {
  .collection .filters {
    flex-wrap: wrap;
  }
  .collection .filters div {
    padding: 0.7rem 1rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .collection .filters div:not(:last-child) {
    margin-right: 1rem;
  }
}
/* ========== Arrivals =========== */
.new-arrival .row {
  display: grid;
}
.new-arrival .row .col {
  position: relative;
  padding: 1rem;
}
.new-arrival .row .col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-arrival .row .col-1,
.new-arrival .row .col-2 {
  grid-column: 1;
}
.new-arrival .row .col-3 {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.new-arrival .row .col h3 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: var(--white-color);
  font-size: 2rem;
  line-height: 3.5rem;
}
.new-arrival .row .col h3 span {
  display: block;
  margin-top: 3rem;
}

@media (max-width: 967px) {
  .new-arrival .row .col h3 {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 768px) {
  .new-arrival .row {
    display: block;
  }
  .new-arrival .row .col h3 {
    bottom: 15%;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
/* ========== Categories Product =========== */
.categories .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 7rem 4rem;
  padding-top: 4rem;
}
.categories .product {
  border-radius: 2.5rem;
  border: 1px solid rgba(144, 144, 144, 0.25);
  overflow: hidden;
  transition: 0.3s;
}
.categories .product .top {
  background: var(--grey-color);
  height: 30rem;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}
.categories .product .top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories .product .top .icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 2.5rem;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.categories .product .bottom {
  padding: 2.5rem 2rem;
  background-color: var(--white-color);
}
.categories .product .bottom h4 {
  font-size: 1.7rem;
  height: 5rem;
  transition: 0.3s;
}
.categories .product .bottom .d-flex {
  justify-content: space-between;
}
.categories .product .bottom .d-flex:first-child {
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.categories .product .bottom .cart-btn {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.categories .product .bottom .price {
  color: #909090;
  font-weight: 500;
}
.categories .product .bottom .rating {
  color: var(--primary-color);
}
.categories .product .bottom .rating i:not(:last-child) {
  margin-right: 0.3rem;
}
.categories .product:hover {
  border: none;
  transform: scale(1.1);
  box-shadow: var(--box-shadow-1);
}
.categories .product:hover .top {
  background: var(--gradient);
}
.categories .product:hover .top .icon {
  opacity: 1;
  visibility: visible;
}
.categories .product:hover .cart-btn {
  visibility: visible;
  opacity: 1;
}
.categories .button {
  justify-content: center;
  margin-top: 8rem;
}
.categories .button .btn {
  display: inline-block;
  padding: 1.5rem 6rem;
  border-radius: 1rem;
  color: var(--white-color);
  font-weight: 500;
  font-size: 1.8rem;
  background: var(--btn-gradient);
  box-shadow: var(--box-shadow-1);
  cursor: pointer;
}

/* ========== Statistics =========== */
.statistics {
  padding: 10rem 0 10rem;
  background: linear-gradient(
    to bottom,
    rgba(252, 203, 144, 0.15),
    rgba(255, 185, 188, 0.1)
  );
}
.statistics .title {
  margin-bottom: 10rem;
}
.statistics .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}
.statistics .row .col {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.statistics .row .col .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  height: 11rem;
  font-size: 4rem;
  background: var(--white-color);
  border-radius: 1rem;
  box-shadow: var(--box-shadow-1);
  color: var(--primary-color);
  margin-bottom: 6rem;
}
.statistics .row .col .icon:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: var(--box-shadow-2);
}
.statistics .row .col h3 {
  margin-bottom: 1.2rem;
}
.statistics .row .col p {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .statistics .row .col .icon {
    width: 8rem;
    height: 8rem;
    font-size: 3rem;
  }
  .statistics .row .col p {
    width: 80%;
    margin: 0 auto;
  }
}
/* ========== Blog =========== */
.blog .title {
  margin-bottom: 7rem;
}
.blog .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
}
.blog .row .col {
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--box-shadow-1);
}
.blog .row .col .top {
  height: 45rem;
}
.blog .row .col .top img {
  height: 100%;
  object-fit: cover;
}
.blog .row .col .bottom {
  text-align: center;
  padding: 3rem 0;
}
.blog .row .col .bottom h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.blog .row .col .bottom h4 {
  max-width: 50%;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
.blog .row .col .bottom span {
  color: #909090;
  font-size: 1.5rem;
}

@media (max-width: 1600px) {
  .blog .row .col .top {
    height: 30rem;
  }
  .blog .row .col .bottom h4 {
    max-width: 85%;
  }
}
/* ========== Footer =========== */
/* ========== Footer Modern =========== */
.footer {
  background: linear-gradient(145deg, rgba(252, 203, 144, 0.08) 0%, rgba(252, 203, 144, 0.15) 100%);
  padding: 8rem 0 0;
  margin-top: 8rem;
  border-top: 1px solid rgba(252, 203, 144, 0.3);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Brand Column */
.footer-brand {
  padding-right: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  max-height: 5rem;
  width: auto;
  object-fit: contain;
}

.footer-logo .logo-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Aclonica", sans-serif;
  letter-spacing: 0.5px;
}

.footer-description {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  letter-spacing: 0.3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links li a {
  font-size: 1.6rem;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

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

/* Social Links */
.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 94, 58, 0.2);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 94, 58, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  padding: 3rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 1.5rem;
  color: #9ca3af;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 6rem 0 0;
    margin-top: 6rem;
  }

  .footer-container {
    padding: 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 3rem;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-title {
    font-size: 1.7rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    padding: 2.5rem 0;
  }
}

/* Old Footer Styles - Keep for compatibility */
.footer .row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
.footer .row .col .logo {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer .row .col .logo img {
  max-height: 6rem;
  width: auto;
  object-fit: contain;
}
.footer .row .col .logo .logo-text {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Aclonica", sans-serif;
  letter-spacing: 0.5px;
}
.footer .row .col:first-child p {
  margin-bottom: 2rem;
  color: #4f5665;
  font-size: 1.7rem;
}
.footer .row .col .icons {
  margin-bottom: 2rem;
}
.footer .row .col .icon {
  color: var(--white-color);
  justify-content: center;
  height: 4rem;
  width: 4rem;
  font-size: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  cursor: pointer;
}
.footer .row .col .icon:not(:last-child) {
  margin-right: 1rem;
}
.footer .row .col:first-child .color {
  color: var(--primary-color);
}
.footer .row .col:last-child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.footer .row .col:last-child div {
  display: flex;
  flex-direction: column;
}
.footer .row .col:last-child div a {
  font-size: 1.7rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
  color: #4f5665;
}
.footer .row .col:last-child h4 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.footer .row .col:last-child .d-flex {
  flex-direction: row;
  margin-bottom: 2rem;
}
.footer .row .col:last-child .d-flex .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  width: auto;
  height: auto;
  padding: 0.7rem;
}
.footer .row .col:last-child .d-flex span {
  font-size: 1.8rem;
  color: #4f5665;
}

@media (max-width: 1200px) {
  .footer .col:first-child {
    display: none;
  }

  .footer .row {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer .row .col:last-child {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
}
/* ========== User Form =========== */
.icon img {
  width: 20px;
}

.user-form {
  position: fixed;
  top: 50%;
  left: 50%;
  min-height: 100vh;
  width: 100%;
  background-color: var(--lightblue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-in-out;
  /* Functionality */
}
.user-form.active {
  background-color: var(--lightpink);
}
.user-form.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}
.user-form .close-form {
  position: absolute;
  top: 10%;
  right: 10%;
  background-color: var(--white-color);
  color: var(--custom);
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
  font-size: 2.3rem;
  cursor: pointer;
}
.user-form .container {
  position: relative;
  width: 900px;
  height: 500px;
  background-color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.user-form .user {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.user-form .img-box {
  position: relative;
  width: 50%;
  height: 100%;
  transition: all 500ms ease-in-out;
}
.user-form .img-box img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.user-form .form-box {
  position: relative;
  width: 50%;
  height: 100%;
  background-color: white;
  transition: 500ms ease-in-out;
}
.user-form .form-box .top {
  position: absolute;
  top: 14px;
  right: 14px;
}
.user-form .form-box .top p {
  font-size: 13px;
}
.user-form .form-box .top span {
  color: var(--custom);
  cursor: pointer;
}
.user-form form {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  max-width: 300px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.user-form form .form-control:first-child {
  text-align: center;
}
.user-form form .form-control:first-child input {
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px 0;
  margin-bottom: 10px;
  text-indent: 16px;
  width: 100%;
  color: var(--color);
  outline: none;
}
.user-form form .form-control:first-child input[type="submit"] {
  display: block;
  text-align: center;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: var(--custom);
  color: white;
  transition: 0.5s;
}
.user-form form .form-control:first-child input[type="submit"]:hover {
  background-color: var(--lightblue);
}
.user-form form .form-control:first-child h2 {
  width: 100%;
  font-weight: 400;
  font-size: 26px;
}
.user-form form .form-control:first-child p {
  font-size: 15px;
  margin-bottom: 20px;
}
.user-form form .form-control:first-child span {
  font-size: 13px;
  display: block;
  text-align: right;
  margin-bottom: 20px;
}
.user-form form .form-control:first-child div {
  position: relative;
}
.user-form form .form-control:first-child .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  cursor: pointer;
}
.user-form form .form-control:last-child {
  text-align: center;
}
.user-form form .form-control:last-child p {
  position: relative;
  display: inline-block;
  font-size: 14px;
}
.user-form form .form-control:last-child p::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: #ddd;
}
.user-form form .form-control:last-child p::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: #ddd;
}
.user-form form .form-control:last-child .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.user-form form .form-control:last-child .icons .icon {
  cursor: pointer;
}
.user-form form .form-control:last-child .icons .icon:not(:last-child) {
  margin-right: 15px;
}
.user-form .container .signup {
  pointer-events: none;
}
.user-form .container .signup .form-box {
  top: 100%;
}
.user-form .container .signup .img-box {
  top: -100%;
}
.user-form .container.active .signup {
  pointer-events: initial;
}
.user-form .container.active .signup .form-box {
  top: 0;
}
.user-form .container.active .signup .img-box {
  top: 0;
}
.user-form .container .login .form-box {
  top: 0;
}
.user-form .container .login .img-box {
  top: 0;
}
.user-form .container.active .login .form-box {
  top: 100%;
}
.user-form .container.active .login .img-box {
  top: -100%;
}

@media (max-width: 996px) {
  .user-form .container {
    max-width: 400px;
  }
  .user-form .container .img-box {
    display: none;
  }
  .user-form .container .form-box {
    width: 100%;
  }
  .user-form .container.active .login .form-box {
    top: -100%;
  }
}
@media (max-width: 567px) {
  .header .navbar .row .nav-list a.user-link {
    display: block;
  }

  .user-form {
    padding: 0;
  }
  .user-form .close-form {
    top: 10px;
    right: 10px;
    padding: 0.7rem;
    font-size: 2.3rem;
  }
}

/*# sourceMappingURL=styles.css.map */

/* ========== Cart Styles =========== */
.cart-section {
  padding: 10rem 0 5rem;
}

.cart-content {
  display: grid;
  grid-template-columns: 1fr 35rem;
  gap: 3rem;
  margin-top: 4rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 12rem 1fr auto;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(144, 144, 144, 0.25);
  border-radius: 1.5rem;
  background: var(--white-color);
  transition: all 0.3s;
}

.cart-item:hover {
  box-shadow: var(--box-shadow-1);
}

.item-image img {
  width: 12rem;
  height: 12rem;
  object-fit: cover;
  border-radius: 1rem;
}

.item-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.item-details h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black-color);
}

.item-meta {
  display: flex;
  gap: 2rem;
  font-size: 1.4rem;
  color: var(--default-color);
}

.item-meta span {
  padding: 0.4rem 1rem;
  background: var(--grey-color);
  border-radius: 0.5rem;
}

.item-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--grey-color);
  border-radius: 0.8rem;
}

.qty-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-color);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.qty-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.qty-input {
  width: 5rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.5rem;
}

.item-subtotal {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black-color);
}

.remove-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}

.remove-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.cart-summary {
  padding: 2.5rem;
  border: 1px solid rgba(144, 144, 144, 0.25);
  border-radius: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.cart-summary h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.6rem;
}

.summary-row.total {
  border-top: 2px solid var(--grey-color);
  margin-top: 1rem;
  padding-top: 2rem;
  font-size: 1.8rem;
}

.checkout-btn {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}

.btn-secondary {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  background: var(--grey-color);
  color: var(--black-color);
}

.btn-secondary:hover {
  background: var(--default-color);
  color: var(--white-color);
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem;
}

.empty-cart h2 {
  font-size: 3rem;
  margin: 2rem 0 1rem;
}

.empty-cart p {
  font-size: 1.8rem;
  color: var(--default-color);
  margin-bottom: 3rem;
}

#cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 700;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon {
  position: relative;
}

.toast {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  padding: 1.5rem 3rem;
  background: var(--black-color);
  color: var(--white-color);
  border-radius: 0.8rem;
  font-size: 1.6rem;
  box-shadow: var(--box-shadow-1);
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.3s;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: #10b981;
}

.toast.error {
  background: #ef4444;
}

@media (max-width: 996px) {
  .cart-content {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .cart-item {
    grid-template-columns: 10rem 1fr;
  }

  .item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }
}

/* ========== Product Card Improvements =========== */
.product .bottom .btn-add-cart {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.cart-btn {
  padding: 0.8rem 1.5rem !important;
  font-size: 1.3rem !important;
}

.cart-icon {
  position: relative;
}

#cart-count-badge {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .bottom a {
  text-decoration: none;
  color: var(--black-color);
  transition: color 0.3s;
}

.product .bottom a:hover h4 {
  color: var(--primary-color);
}

/* ========== Checkout Styles =========== */
.checkout-section {
  padding: 12rem 0 5rem;
  background: var(--grey-color);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.6rem;
  color: var(--default-color);
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 40rem;
  gap: 3rem;
  max-width: 130rem;
  margin: 0 auto;
}

.checkout-form-container {
  background: var(--white-color);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: var(--box-shadow-1);
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--grey-color);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--black-color);
}

.form-section h2 i {
  color: var(--primary-color);
  font-size: 2.4rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--black-color);
}

.form-group .required {
  color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.5rem;
  border: 1px solid var(--grey-color);
  border-radius: 0.8rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 94, 58, 0.1);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ef4444;
}

.form-group .error-message {
  display: block;
  color: #ef4444;
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-method {
  cursor: pointer;
}

.payment-method input[type="radio"] {
  display: none;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border: 2px solid var(--grey-color);
  border-radius: 1.2rem;
  transition: all 0.3s;
  background: var(--white-color);
}

.payment-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--box-shadow-1);
}

.payment-card.active {
  border-color: var(--primary-color);
  background: rgba(255, 94, 58, 0.05);
}

.payment-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-color);
  border-radius: 1rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.payment-card.active .payment-icon {
  background: var(--primary-color);
  color: white;
}

.payment-info {
  flex: 1;
}

.payment-info h4 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: var(--black-color);
}

.payment-info p {
  font-size: 1.4rem;
  color: var(--default-color);
}

.payment-check {
  font-size: 2.5rem;
  color: var(--grey-color);
}

.payment-card.active .payment-check {
  color: var(--primary-color);
}

/* Order Summary Sidebar */
.order-summary {
  background: var(--white-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--box-shadow-1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.order-summary h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-color);
}

.order-items {
  max-height: 35rem;
  overflow-y: auto;
  margin-bottom: 2rem;
  padding-right: 0.5rem;
}

.order-items::-webkit-scrollbar {
  width: 0.5rem;
}

.order-items::-webkit-scrollbar-track {
  background: var(--grey-color);
  border-radius: 0.5rem;
}

.order-items::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 0.5rem;
}

.order-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--grey-color);
}

.order-item:last-child {
  border-bottom: none;
}

.order-item img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 0.8rem;
}

.order-item .item-details {
  flex: 1;
}

.order-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--black-color);
}

.order-item p {
  font-size: 1.3rem;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.order-item .item-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
}

.order-item .qty {
  color: var(--default-color);
}

.order-item .price {
  font-weight: 600;
  color: var(--primary-color);
}

.order-totals {
  padding: 2rem 0;
  border-top: 1px solid var(--grey-color);
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.6rem;
}

.total-row .free {
  color: #10b981;
  font-weight: 600;
}

.total-row.grand-total {
  border-top: 2px solid var(--grey-color);
  margin-top: 1rem;
  padding-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.total-row.grand-total span:last-child {
  color: var(--primary-color);
}

.btn-checkout {
  width: 100%;
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b9d 100%);
  color: white;
  border: none;
  border-radius: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 94, 58, 0.4);
  letter-spacing: 0.5px;
}

.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 94, 58, 0.5);
}

.btn-checkout:active {
  transform: translateY(-1px);
}

.btn-checkout i {
  font-size: 2.2rem;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: var(--default-color);
}

.secure-checkout i {
  color: #10b981;
  font-size: 1.8rem;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 6rem;
  height: 6rem;
  border: 0.5rem solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay p {
  margin-top: 2rem;
  color: white;
  font-size: 1.8rem;
}

/* ========== Confirmation Page Styles =========== */
.confirmation-section {
  padding: 12rem 0 5rem;
  background: var(--grey-color);
}

.success-card {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--box-shadow-1);
}

.success-icon {
  font-size: 8rem;
  margin-bottom: 2rem;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-card h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.success-card p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.order-number {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  font-size: 1.5rem;
}

.order-number strong {
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
}

.confirmation-content {
  display: grid;
  grid-template-columns: 1fr 40rem;
  gap: 3rem;
  max-width: 130rem;
  margin: 0 auto;
}

.order-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-section {
  background: var(--white-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--box-shadow-1);
}

.detail-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--black-color);
}

.detail-section h2 i {
  color: var(--primary-color);
  font-size: 2.2rem;
}

/* Status Timeline */
.status-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 3rem;
}

.status-timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1rem;
  bottom: 1rem;
  width: 0.2rem;
  background: var(--grey-color);
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 2rem;
}

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--grey-color);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--grey-color);
}

.timeline-item.active .timeline-dot {
  background: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--black-color);
}

.timeline-content p {
  font-size: 1.4rem;
  color: var(--default-color);
}

.timeline-item.active .timeline-content h4 {
  color: var(--primary-color);
  font-weight: 600;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-item.full-width {
  grid-column: 1 / -1;
}

.info-label {
  font-size: 1.4rem;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.info-value {
  font-size: 1.6rem;
  color: var(--black-color);
  font-weight: 500;
}

/* Payment Info Box */
.payment-info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: var(--grey-color);
  border-radius: 1rem;
}

.payment-method-display {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.payment-method-display i {
  font-size: 3rem;
  color: var(--primary-color);
}

.payment-method-display h4 {
  font-size: 1.7rem;
  margin-bottom: 0.3rem;
}

.payment-method-display p {
  font-size: 1.4rem;
  color: var(--default-color);
}

.payment-status-badge {
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.payment-status-badge.pending {
  background: #fef3c7;
  color: #f59e0b;
}

.payment-status-badge.paid {
  background: #d1fae5;
  color: #10b981;
}

/* Order Items List */
.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.confirmation-order-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--grey-color);
  border-radius: 1rem;
}

.confirmation-order-item img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.8rem;
}

.confirmation-order-item .item-info {
  flex: 1;
}

.confirmation-order-item h4 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.confirmation-order-item p {
  font-size: 1.4rem;
  color: var(--default-color);
  margin-bottom: 0.8rem;
}

.confirmation-order-item .item-price {
  font-size: 1.5rem;
  color: var(--black-color);
}

.confirmation-order-item .item-subtotal {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: var(--primary-color);
}

/* Notes Box */
.notes-box {
  padding: 2rem;
  background: var(--grey-color);
  border-radius: 1rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--black-color);
}

/* Confirmation Summary */
.confirmation-summary {
  background: var(--white-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--box-shadow-1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.confirmation-summary h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-color);
}

.summary-details {
  padding: 2rem 0;
  border-bottom: 1px solid var(--grey-color);
  margin-bottom: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.6rem;
}

.summary-row.total {
  border-top: 2px solid var(--grey-color);
  margin-top: 1rem;
  padding-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btn-primary,
.btn-secondary {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
  border-radius: 2.5rem;
  transition: all 0.3s;
}

.btn-secondary {
  background: var(--grey-color);
  color: var(--black-color);
}

.btn-secondary:hover {
  background: var(--default-color);
  color: white;
}

/* Help Section */
.help-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-color);
  text-align: center;
}

.help-section h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.help-section p {
  font-size: 1.4rem;
  color: var(--default-color);
  margin-bottom: 1.5rem;
}

.help-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s;
}

.help-link:hover {
  color: var(--black-color);
}

/* Responsive */
@media (max-width: 996px) {
  .checkout-content,
  .confirmation-content {
    grid-template-columns: 1fr;
  }

  .order-summary,
  .confirmation-summary {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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