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

body {
  font-family: "Montserrat", sans-serif;
}

:root {
  --primary-color: #000000;
  --accent-color: #f15a24;
  --secondary-color: #0028a0;
  --background-color: #ffffff;
  --text-color: #333333;
  --hover-primary: #1a1a1a;
  --hover-accent: #d94e1f;
  --hover-secondary: #001f78;
  --active-primary: #0d0d0d;
  --active-accent: #c0431a;
  --active-secondary: #00165a;
  --background-hover: #f8f9fa;
  --text-muted: #666666;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

.header-site {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: relative;
  width: 100%;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.logo-brand img {
  max-height: 64px;
}

.search-bar {
  flex: 1;
  max-width: 600px;
  margin: 0 1rem;
  display: flex;
}

.search-bar input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 20px 0 0 20px;
  outline: none;
  font-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-bar input::-webkit-search-cancel-button {
  display: none;
}

.search-bar button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: var(--accent-color);
  color: white;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-bar button:hover {
  background-color: var(--hover-accent);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  margin-left: 1.5rem;
}

.nav-menu a {
  color: #424242;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.nav-menu a i {
  font-size: 18px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  top: 100%;
  left: 0;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: var(--accent-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333333;
}

@media (max-width: 991px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    margin: 0.5rem 0;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
  }
  .search-bar {
    margin: 1rem 0;
    max-width: 100%;
  }
  .menu-toggle {
    display: block;
  }
}

.container {
  max-width: 1300px;
  display: flex;
  margin: 20px auto;
  gap: 10px;
}

.container-content-left h4 {
  padding: 15px 20px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.container-content-left h4 i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.container-content-left h4.active i {
  transform: rotate(180deg);
}

.container-content-category {
  display: block;
  background-color: var(--background-color);
  padding: 10px 0;
}

.container-content-category.active {
  display: none;
}

.container-content-category--item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--background-hover);
  transition: all 0.3s ease;
  cursor: pointer;
}

.container-content-category--item:last-child {
  border-bottom: none;
}

.container-content-category--item svg {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.container-content-category--item p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.container-content-category--item:hover {
  background-color: var(--background-hover);
}

.container-content-category--item:hover svg,
.container-content-category--item:hover p {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .container-content-left {
    max-width: 100%;
    margin: 10px;
  }

  .container-content-left h4 {
    font-size: 1.1rem;
  }

  .container-content-category--item p {
    font-size: 1rem;
  }
}

.container-content-right {
  flex: 2;
}

.container-content-navbar a:hover {
  text-decoration: underline;
}

.container-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.container-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prestige-banner-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.prestige-banner-text span:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  white-space: nowrap;
}

.prestige-banner-text span:first-child p {
  display: inline;
  color: var(--secondary-color);
  margin: 0;
  font-size: inherit;
}

.prestige-banner-text span:nth-child(2) {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  color: var(--background-color);
  white-space: nowrap;
  margin-top: 0.5rem;
}

.prestige-banner-benefit {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 16px 30px;
}

.prestige-banner-benefit span {
  font-size: 12px;
  color: var(--text-muted);
}

.prestige-banner-benefit span i {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  color: var(--text-muted);
}

.prestige-banner-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.trending-section {
  text-align: center;
  padding: 20px;
  color: #fff;
  position: relative;
}
.product-scroll {
  display: flex;
  overflow-x: hidden;
  padding: 10px 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.item-card {
  min-width: 250px;
  text-align: center;
  padding: 10px;
  background: #fff;
  color: #000;
  flex: 0 0 250px;
  position: relative;
  transition: transform 0.2s;
}
.item-card a {
  text-decoration: none;
  display: block;
}
.item-card img {
  max-width: 100%;
  height: 250px;
  width: 250px;
  object-fit: cover;
}
.item-card p {
  margin: 5px 0;
  font-size: 14px;
}
.item-price {
  font-weight: bold;
  color: #007bff;
}
.stars {
  color: #ffca28;
  margin-bottom: 5px;
  text-align: left;
}
.wishlist-btn,
.expand-btn,
.cart-btn {
  display: none;
  color: white;
  padding: 10px 15px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  background-color: rgba(241, 90, 36, 0.8);
  opacity: 0;
  transition: background-color 0.3s;
}

.item-card:hover .wishlist-btn,
.item-card:hover .expand-btn,
.item-card:hover .cart-btn {
  opacity: 1;
}

.wishlist-btn {
  right: 10px;
  bottom: 200px;
}

.expand-btn {
  right: 10px;
  bottom: 150px;
}

.cart-btn {
  right: 10px;
  bottom: 100px;
}

.item-card:hover .wishlist-btn,
.item-card:hover .expand-btn,
.item-card:hover .cart-btn {
  display: inline-block;
}

.best-price-tag {
  background-color: #ffca28;
  color: black;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(50, 50, 50, 0.2);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.trending-section:hover .nav-btn {
  background-color: var(--hover-accent);
}

.prev-btn {
  left: 10px;
  z-index: 999;
}

.next-btn {
  right: 10px;
  z-index: 999;
}

.trending-section h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
}

.trending-section p {
  color: var(--accent-color);
  margin-top: 0;
  font-size: 20px;
}

.item-card p {
  color: var(--accent-color);
  text-align: left;
  margin-top: 10px;
  font-size: 16px;
}

.promo-layout {
  display: flex;
  gap: 20px;
  padding: 30px 0;
}
.promo-card {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.discount-card {
  background-color: #8a9a5b;
  flex: 1;
}
.delivery-card {
  background-color: #4a90e2;
  flex: 1;
}
.promo-card h2 {
  margin: 0;
  font-size: 24px;
}
.promo-card p {
  margin: 10px 0 0;
  font-size: 14px;
}
.discount-code {
  background-color: #ff4d4d;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}
.fine-print {
  font-size: 12px;
  color: #ddd;
}

.sale-banner {
  text-align: center;
  margin-bottom: 20px;
}
.sale-banner h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
}
.sale-banner p {
  color: var(--accent-color);
  margin-top: 0;
  font-size: 20px;
}
.item-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
}
.item-box {
  background-color: white;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.item-box:hover {
  transform: scale(1.05);
}
.item-box img {
  max-width: 100%;
  height: 265px;
  display: block;
  object-fit: cover;
  margin-bottom: 15px;
}
.item-box h3 {
  position: absolute;
  top: 10px;
  left: 70px;
  transform: translateX(-50%);
  color: #666;
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 5px;
  margin: 0;
  z-index: 1;
}
.deal-progress {
  width: 90%;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 10px;
  margin: 0 auto;
}
.progress-fill {
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    #ff6347,
    #ff6347 10px,
    #ff4500 10px,
    #ff4500 20px
  );
  width: 50%;
  position: relative;
}
.sale-price {
  color: var(--background-color);
  font-size: 16px;
  position: absolute;
  top: 220px;
  left: 80px;
  background: #f15a24;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 1;
}

.sale-price::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #f15a24 transparent transparent transparent;
}

.original-price {
  position: absolute;
  right: 16px;
  bottom: 60px;
  color: #999;
  font-size: 12px;
  text-decoration: line-through;
}
.countdown {
  font-size: 12px;
  color: #666;
  margin: 5px 18px 20px;
  text-align: right;
}

.carousel-content-product {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  gap: 80px;
}

.custom-carousel {
  width: 500px;
  height: 400px;
  perspective: 1200px;
  perspective-origin: -30% 50%;
  position: relative;
  flex-shrink: 0;
  transform: translate(-100px, -75px);
}

.custom-carousel__container {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 0.8s ease-in-out;
  left: 50%;
  top: 50%;
  transform-origin: center center;
}

.custom-carousel__item {
  position: absolute;
  width: 200px;
  height: 150px;
  border-radius: 15px;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.8s ease-in-out;
  backface-visibility: visible;
  left: 0;
  top: 0;
  border: 1px solid #ccc;
  overflow: hidden;
}

.custom-carousel__item:hover {
  border: 1px solid var(--accent-color);
}

.custom-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-product {
  flex: 1;
  z-index: 9999;
}

.carousel-content h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.carousel-content p {
  color: var(--accent-color);
  margin-top: 0;
  font-size: 20px;
  text-align: center;
}

.chair-title {
  font-size: 24px !important;
  color: var(--hover-primary) !important;
  text-align: left !important;
  margin-top: 20px !important;
}

.award-badge {
  font-size: 14px !important;
  color: #666 !important;
  text-align: left !important;
}

.price-tag {
  font-size: 28px !important;
  color: #ff4500 !important;
  font-weight: bold !important;
  padding: 20px 0 !important  ;
  text-align: left !important;
}

.description-text {
  font-size: 14px !important;
  color: #333 !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

.color-choices {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  margin: 20px 0;
  cursor: pointer;
}

.color-option:hover {
  outline: 2px solid rgba(0, 0, 0, 0.6);
  outline-offset: 4px;
}

.preorder-button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 25px;
}

.preorder-button:hover {
  background-color: var(--hover-accent);
}

.order-stats {
  display: flex;

  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.order-stats-text p {
  font-size: 14px !important;
  color: #333 !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

.recent-viewed {
  padding: 40px 20px;
  text-align: center;
  background-color: var(--background-color);
}

.recent-viewed-title {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  opacity: 0.3;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.recent-viewed-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 40px auto 0;
  gap: 10px;
}

.product-card {
  position: relative;
  overflow: hidden;
  height: 500px;
  opacity: 0.3;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  box-shadow: 0 10px 20px var(--shadow-color);
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

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

.product-name {
  position: absolute;
  font-size: 20px;
  color: #fff;
  margin: 0 0 10px;
  top: 20px;
  left: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-price {
  font-size: 1.1rem;
  color: #e74c3c;
  margin: 0;
  position: absolute;
  top: 50px;
  left: 20px;
  font-weight: 500;
}

.product-price s {
  color: #ddd;
  margin-right: 10px;
}

.sale-badge,
.new-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  margin-top: 10px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  opacity: 0.3;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.product-card.visible .sale-badge,
.product-card.visible .new-badge {
  opacity: 1;
  transform: translateY(0);
}

.sale-badge {
  background-color: var(--accent-color);
}

.new-badge {
  background-color: var(--secondary-color);
}

@media (max-width: 768px) {
  .recent-viewed-title {
    font-size: 1.5rem;
  }

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

  .product-card {
    height: 250px;
  }

  .product-image {
    height: 100%;
  }

  .product-card:hover {
    transform: translateY(0);
  }

  .product-card:hover .product-image {
    transform: scale(1);
  }
}

.new-collections {
  text-align: center;
  padding: 20px;
}

.new-collections-title {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.subtitle {
  color: var(--accent-color);
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 30px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  height: 415px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-info {
  position: absolute;
  top: 15px;
  left: 15px;
}

.collection-name {
  color: #fff;
  font-size: 1.2em;
  margin: 0;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collection-grid .collection-card:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.collection-grid .collection-card:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.collection-grid .collection-card:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.collection-grid .collection-card:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.collection-grid .collection-card:nth-child(5) {
  grid-column: 3 / 6;
  grid-row: 2 / 3;
}

@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .collection-grid .collection-card {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
    height: 200px;
  }
}

.request-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.title-section {
  text-align: center;
  margin-bottom: 40px;
}

.page-title {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.page-subtitle {
  color: var(--accent-color);
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 30px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.left-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drop-zone {
  width: 100%;
  max-width: 350px;
  height: 280px;
  border: 3px dashed #d1d5db;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fafafa;
  margin-bottom: 20px;
  position: relative;
}

.drop-zone:hover {
  border-color: var(--hover-secondary);
  background-color: #f0f7ff;
}

.drop-zone.dragover {
  border-color: var(--hover-secondary);
  background-color: #e3f2fd;
  transform: scale(1.02);
}

.upload-ico {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 15px;
}

.drop-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a73e8;
  margin-bottom: 8px;
}

.drop-subtitle {
  font-size: 1rem;
  color: #9ca3af;
}

.hidden-input {
  display: none;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 350px;
}

.img-box {
  width: 70px;
  height: 70px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  position: relative;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.img-box.filled {
  border-color: #1a73e8;
  background-color: #f0f7ff;
}

.delete-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #555555;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.delete-btn:hover {
  background: #333333;
  transform: scale(1.1);
}

.right-panel {
  display: flex;
  flex-direction: column;
}

.input-label {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 15px;
}

.text-area {
  width: 100%;
  min-height: 200px;
  padding: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  transition: border-color 0.3s ease;
  background-color: #fafafa;
}

.text-area:focus {
  outline: none;
  border-color: var(--hover-secondary);
  background-color: white;
}

.text-area::placeholder {
  color: #9ca3af;
  line-height: 1.6;
}

.footer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.qty-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-label {
  font-size: 1.1rem;
  color: #374151;
  font-weight: 500;
}

.qty-input {
  padding: 8px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  width: 100px;
  text-align: center;
  font-size: 1rem;
}

.qty-input:focus {
  outline: none;
  border-color: var(--hover-secondary);
}

.qty-unit {
  font-size: 1rem;
  color: #6b7280;
}

.btn-group {
  display: flex;
  gap: 15px;
}

.action-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn {
  background-color: #f3f4f6;
  color: #374151;
  border: 2px solid #d1d5db;
}

.cancel-btn:hover {
  background-color: #e5e7eb;
  border-color: #9ca3af;
}

.submit-btn {
  background-color: var(--accent-color);
  color: white;
}

.submit-btn:hover {
  background-color: var(--hover-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-title {
    font-size: 2rem;
  }

  .footer-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .btn-group {
    justify-content: center;
  }
}

footer {
  background-color: var(--primary-color);
  color: var(--background-color);
  padding: 80px 0 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo img {
  width: 120px;
  height: 120px;
  animation: logoReveal 1s ease-out;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.footer-description {
  color: var(--text-muted);
  margin-bottom: 25px;
  max-width: 350px;
  font-weight: 400;
  font-size: 15px;
}

.footer-contact p {
  margin-bottom: 15px;
  color: var(--background-color);
  font-weight: 400;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.footer-contact p:hover {
  transform: translateX(5px);
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 18px;
}

.footer-column h3 {
  color: var(--accent-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-accent);
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--background-color);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--hover-accent);
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  color: var(--background-color);
  font-size: 28px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--hover-accent);
  transform: scale(1.3) rotate(5deg);
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form input {
  padding: 12px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  width: 180px;
  background-color: var(--background-hover);
  color: var(--text-color);
}

.newsletter-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 0 5px 5px 0;
  background: var(--gradient-accent);
  color: var(--background-color);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  background: var(--gradient-accent);
  padding: 15px 0;
  box-shadow: 0 -2px 10px var(--shadow-color);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-description {
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-contact p:hover {
    transform: none;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .newsletter-form {
    display: flex;
    justify-content: center;
  }

  .newsletter-form input {
    width: 60%;
  }

  .footer-column ul li a:hover {
    transform: none;
  }
}
