* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Graphik",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #fff;
  color: #222;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e1e3df;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 40px;
  font-weight: bold;
  color: #f1641e;
  text-decoration: none;
  font-family: "Guardian-EgypTT", serif;
}

.menu-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #222;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hamburger i {
  font-size: 20px;
}

.search-bar {
  flex: 1;
  position: relative;
  max-width: 800px;
}

.search-bar input {
  width: 100%;
  padding: 13px 50px 13px 17px;
  border: 2px solid #222;
  border-radius: 24px;
  font-size: 14px;
  outline: none;
}

.search-bar input:focus {
  border-color: #f1641e;
}

.search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: #f1641e;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.header-icons {
  display: flex;
  margin-left: 30px;
  gap: 20px;
  align-items: center;
  justify-content: end;
}

.header-icons a {
  color: #222;
  text-decoration: none;
  font-size: 20px;
}

.icon {
  font-size: 20px;
}

.breadcrumb {
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #e1e3df;
}

.breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 13px;
  color: #595959;
  text-align: center;
}

.breadcrumb a {
  color: #222;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #f1641e;
}

.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 70% 28%;
  justify-content: space-between;
}

.image-gallery {
  max-height: 670px;
  display: flex;
  gap: 12px;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thumbnail {
  width: 71px;
  height: 67px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail.active {
  border-color: #222;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image-container {
  flex: 1;
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  padding: 70px 135px;
  /* aspect-ratio: 4/5; */
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.15);
  font-size: 24px;
  color: #222;
}

.nav-arrow.prev {
  left: 16px;
}

.nav-arrow.next {
  right: 16px;
}

.favorite-btn i {
  font-size: 22px;
}
.favorite-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 20px;
}

.product-info {
  position: relative;
}

.visitors-badge {
  background: #fef7f5;
  border: 1px solid #f1641e;
  color: #c44601;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 16px;
}

.price-section {
  margin-bottom: 16px;
}

.current-price {
  font-size: 32px;
  font-weight: bold;
  color: #222;
}

.original-price {
  font-size: 18px;
  color: #858585;
  text-decoration: line-through;
  margin-left: 12px;
}

.discount-badge {
  display: inline-block;
  background: #b8e7d6;
  color: #004c3f;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.sale-info {
  color: #007e3d;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

.vat-info {
  color: #858585;
  font-size: 13px;
  margin-top: 4px;
}

.product-badge {
  margin: 20px 0;
}

.product-badge img {
  max-width: 280px;
  height: auto;
}

.product-title {
  font-size: 30px;
  font-weight: bolder;
  color: #222;
  margin: 20px 0;
  line-height: 1.3;
}

.product-description {
  font-size: 15px;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 20px;
}

.seller-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.seller-name {
  font-weight: 600;
  color: #222;
}

.stars {
  color: #ffc107;
  font-size: 20px;
}

.add-to-cart-btn {
  width: 100%;
  background: #222;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.2s;
}

.add-to-cart-btn:hover {
  background: #000;
}

.seller-info {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 8px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.seller-icon {
  width: 40px;
  height: 40px;
  background: #e0d5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seller-details {
  flex: 1;
}

.seller-title {
  font-weight: 600;
  font-size: 14px;
  color: #222;
}

.seller-text {
  font-size: 13px;
  color: #595959;
  line-height: 1.5;
  margin-top: 4px;
}

.accordion-section {
  border-top: 1px solid #e1e3df;
  padding: 20px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.accordion-icon {
  font-size: 20px;
  color: #858585;
}

.report-link {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #e1e3df;
}

.report-link a {
  color: #595959;
  text-decoration: underline;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .image-gallery {
    flex-direction: column-reverse;
  }

  .thumbnails {
    flex-direction: row;
    overflow-x: auto;
  }

  .thumbnail {
    flex-shrink: 0;
  }

  .main-image-container {
    aspect-ratio: 1;
  }
}

@media (max-width: 768px) {
  .header-container {
    gap: 12px;
  }

  .logo {
    font-size: 32px;
  }

  .search-bar {
    display: none;
  }

  .header-icons a span {
    display: none;
  }

  .main-content {
    padding: 16px;
  }

  .product-title {
    font-size: 24px;
  }

  .current-price {
    font-size: 28px;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .favorite-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 8px 12px;
  }

  .main-content {
    padding: 12px;
    gap: 20px;
  }

  .thumbnails {
    gap: 6px;
  }

  .thumbnail {
    width: 50px;
    height: 50px;
  }

  .product-badge img {
    max-width: 200px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
.reviews-container {
  max-width: 67%;
  background: white;
  padding: 0 31px;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 0 24px 0;
  border-bottom: 1px solid #e1e3df;
  flex-wrap: wrap;
}

.main-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.star-icon {
  color: #f1641e;
  font-size: 36px;
}

.rating-number {
  font-size: 36px;
  font-weight: 600;
  color: #222;
}

.rating-max {
  font-size: 20px;
  color: #595959;
}

.rating-label {
  font-size: 13px;
  color: #595959;
  margin-top: 4px;
  text-align: center;
}

.rating-metrics {
  display: flex;
  gap: 24px;
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-around;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #f1641e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  position: relative;
}

.metric-circle.perfect {
  background: #f1641e;
  color: white;
}

.metric-label {
  font-size: 13px;
  color: #222;
}

.buyer-highlights {
  padding: 24px 0;
  border-bottom: 1px solid #e1e3df;
}

.highlights-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #222;
  font-weight: 500;
}

.ai-icon {
  font-size: 16px;
}

.highlights-tags {
  display: flex;
  flex-wrap: wrap;
  max-width: 90%;
  gap: 5px;
}

.highlight-tag {
  padding: 8px 10px;
  /* background: #f5f5f5; */
  /* border: 1px solid #e1e3df; */
  border-radius: 20px;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  transition: all 0.2s;
}
.highlight-tag span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gap_dead {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gap_dead > HR {
  height: 50%;
  width: 2px;
  background-color: oklch(0% 0 0);
}
.highlight-tag:hover {
  transform: scale(1.07);
  transition: all 0.9s;
}

.filter-section {
  padding: 20px 0;
  border-bottom: 1px solid #e1e3df;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  position: relative;
}

.filter-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid #222;
  border-radius: 20px;
  font-size: 13px;
  color: #222;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover {
  background: #f5f5f5;
}

.filter-btn.active {
  background: #222;
  color: white;
}

.filter-count {
  color: #595959;
}

.scroll-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

.dropdown-text {
  font-weight: 600;
}

.reviews-list {
  padding: 20px 0;
}

.review-item {
  padding: 24px 0;
  border-bottom: 1px solid #e1e3df;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 9px;
}

.stars {
  color: #f1641e;
  font-size: 30px;
  letter-spacing: 2px;
}

.rating-value {
  font-size: 19px;
  font-weight: 600;
  color: #222;
}

.item-badge {
  padding: 4px 8px;
  background: #f5f5f5;
  border: 1px solid #e1e3df;
  border-radius: 12px;
  font-size: 15px;
  color: #595959;
  font-weight: 500;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.reviewer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #222;
  font-weight: 500;
}

.reviewer-location > span {
  font-size: 16px;
}

.location-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.review-date {
  color: #595959;
}

.review-text {
  font-size: 17px;
  line-height: 1.6;
  color: #222;
  margin-top: 8px;
}

.view-all-container {
  padding: 32px 0;
  text-align: center;
}

.view-all-btn {
  padding: 12px 32px;
  background: white;
  border: 1px solid #222;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  transition: all 0.2s;
}

.view-all-btn:hover {
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .rating-summary {
    gap: 20px;
  }

  .rating-metrics {
    width: 100%;
    justify-content: space-between;
  }

  .metric-item {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .filter-section {
    padding-right: 40px;
  }

  .review-header {
    flex-direction: column;
    gap: 8px;
  }

  .review-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .rating-number {
    font-size: 28px;
  }

  .star-icon {
    font-size: 28px;
  }

  .rating-metrics {
    gap: 12px;
  }

  .metric-circle {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .highlights-tags {
    gap: 8px;
  }

  .highlight-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.filter-section::-webkit-scrollbar {
  height: 6px;
}

.filter-section::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.filter-section::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.filter-section::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

.shop-profile-container {
  max-width: 67%;
  background: white;
  padding: 0 31px;
}

.shop-card {
  background: white;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  overflow: hidden;
}

.shop-header {
  padding: 0 32px 6px;
  text-align: center;
  border-bottom: 1px solid #e1e3df;
}

.shop-icon {
  /* margin: 0 auto 16px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-icon > svg {
  font-size: 40px;
}
.shop-name {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.shop-owner {
  font-size: 14px;
  color: #595959;
  margin-bottom: 6px;
}

.shop-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: #222;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-icon {
  color: #222;
}

.rating-count {
  color: #595959;
}

.stat-divider {
  width: 1px;
  height: 16px;
  background: #d1d1d1;
}

.action-buttons {
  display: flex;
  gap: 12px;
  max-width: 500px;
  padding: 24px 32px;
  margin: 0 auto;
}

.btn {
  flex: 1;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: white;
  border: 2px solid #222;
  color: #222;
}

.btn-primary:hover {
  background: #f5f5f5;
}

.btn-secondary {
  background: white;
  border: 1px solid #222;
  color: #222;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

.response-time {
  text-align: center;
  padding: 0 32px 0;
  font-size: 13px;
  color: #595959;
}

.features-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 18px 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.info-table {
  padding: 0;
  margin: 20px 20px 0 20px;
}

.info-row {
  display: flex;
  padding: 16px 32px;
  border-bottom: 1px solid #3a3a3a;
  background: #2d2d2d;
}

.info-row:first-child {
  background: #3d3d3d;
}

.info-row:nth-child(even) {
  background: #2d2d2d;
}

.info-row:nth-child(odd) {
  background: #3a3a3a;
}

.info-label {
  flex: 0 0 180px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.info-value {
  flex: 1;
  font-size: 13px;
  color: #e1e1e1;
}

.rating-badge {
  display: inline-block;
  background: #4a5568;
  color: #fbbf24;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  margin-right: 8px;
}

.rating-text {
  color: #e1e1e1;
  font-size: 12px;
}

.logo-section {
  background: #2d2d2d;
  padding: 0 32px;
  text-align: center;
  margin: 0 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.logo-placeholder {
  position: relative;
  width: 120px;
  height: 120px;
}

.logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 8px solid #4ade80;
  border-radius: 50%;
  border-top-color: transparent;
  border-left-color: transparent;
  opacity: 0.6;
  animation: rotate 3s linear infinite;
}

.logo-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, #3b82f6 0%, #1e40af 100%);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.card-footer {
  padding: 20px 32px;
  background: white;
  font-size: 13px;
  color: #595959;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer a {
  color: #222;
  text-decoration: underline;
}

.card-footer a:hover {
  color: #f1641e;
}

@media (max-width: 768px) {
  body {
    padding: 12px;
  }

  .shop-header {
    padding: 24px 20px 20px;
  }

  .shop-name {
    font-size: 24px;
  }

  .action-buttons {
    padding: 20px;
    flex-direction: column;
  }

  .response-time {
    padding: 0 20px 16px;
  }

  .features-section {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }

  .info-row {
    flex-direction: column;
    padding: 14px 20px;
    gap: 6px;
  }

  .info-label {
    flex: none;
  }

  .logo-section {
    padding: 30px 20px;
    min-height: 150px;
  }

  .logo-placeholder {
    width: 100px;
    height: 100px;
  }

  .card-footer {
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .shop-stats {
    flex-direction: column;
    gap: 8px;
  }

  .stat-divider {
    display: none;
  }

  .shop-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .logo-placeholder {
    width: 80px;
    height: 80px;
  }
}
.top-section {
  background: #fff;
  padding: 37px;
  border-bottom: 1px solid #e1e3df;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.listing-info {
  font-size: 13px;
  color: #595959;
  margin-bottom: 16px;
}

.listing-info a {
  color: #222;
  text-decoration: underline;
  margin-left: 8px;
}

.breadcrumbs {
  font-size: 13px;
  color: #595959;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumbs a {
  color: #222;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #f1641e;
}

.newsletter-section {
  background: #ffc107;
  padding: 30px 24px;
  text-align: center;
}

.newsletter-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  outline: none;
  font-size: 15px;
  color: #222;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-btn {
  padding: 14px 32px;
  background: #222;
  color: white;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-btn:hover {
  background: #000;
}

.footer-main {
  background: #222;
  /* padding: 48px 24px 32px; */
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  /* display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap; */
  display: flex;
  /* justify-content: space-between; */
  /* align-items: flex-start; */
  /* margin-bottom: 48px; */
  gap: -14px;
  /* flex-wrap: wrap; */
}

/* Footer Brand */
.footer-brand {
  max-width: 500px;
  background-color: #000000;
  display: grid;
  justify-items: center;
  align-content: center;
}

.footer-logo-img {
  width: 90px;
  height: 90px;
  background: #f1641e;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;

  font-weight: bold;
  color: white;

  font-size: 40px;
  font-weight: bold;

  text-decoration: none;
  font-family: "Guardian-EgypTT", serif;
}

.download-btn {
  display: inline-block;
  padding: 14px 32px;
  margin: 0 28px;
  background: #2638c0;
  color: white;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.download-btn:hover {
  background: #3156cc;
}

.footer-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background: #141414;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.brand-name {
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: underline dashed rgb(255, 255, 255);
  text-underline-offset: 6px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 34px;
  flex: 1;
  background-color: #0c0c0c;
}

.footer-column {
  min-width: 150px;
}

.footer-column-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

/* .social-icon {
  width: 40px;
  height: 40px;
  background: #3a3a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.2s;
} */

/* .social-icon:hover {
  background: #4a4a4a;
} */
.social-icon > i {
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
  color: white;
  padding: 30px 40px;
  background-color: #141414;
}

.footer-locale {
  display: flex;
  align-items: center;
  gap: 8px;
}

.globe-icon {
  font-size: 16px;
}

.footer-copyright {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: white;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 24px;
  }

  .newsletter-section {
    padding: 36px 16px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .newsletter-btn {
    border-radius: 0 0 12px 12px;
    padding: 16px;
  }

  .newsletter-input {
    border-radius: 12px 12px 0 0;
  }

  .footer-main {
    padding: 32px 16px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    font-size: 12px;
  }

  .newsletter-title {
    font-size: 20px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}
.carousel-section {
  height: max-content;
  max-width: 100%;
  margin: 0 auto;
  background: white;
  padding: 40px 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Carousel Container */
.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-track {
  display: flex;
  gap: 0; /* ← Change from 20px to 0 */
  padding: 20px 0;
}

/* Carousel Item */
.carousel-item {
flex: 0 0 100%;
    width: 100%;
    height: 479px;
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    /* margin: 0 22px; */
    /* padding: 20px; */
    background: white;
}

.carousel-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 38px;
  background: white;
  border: 2px solid #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #222;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
  background: #222;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

.carousel-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-container {
    padding: 0 50px;
  }

  .carousel-item {
    flex: 0 0 250px;
    height: 350px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .carousel-arrow.left {
    left: 5px;
  }

  .carousel-arrow.right {
    right: 5px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px 10px;
  }

  .carousel-section {
    padding: 24px 0;
  }

  .carousel-container {
    padding: 0 40px;
  }

  .carousel-item {
    flex: 0 0 200px;
    height: 300px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
