*, ::before, ::after { box-sizing: border-box; margin: 0px; padding: 0px; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", sans-serif; background-color: rgb(0, 0, 0); color: rgb(255, 255, 255); overflow-x: hidden; }
.clothing-hero { background-color: rgb(0, 0, 0); width: 100%; padding: 70px 40px 60px; position: relative; border-bottom: 2px solid rgb(199, 167, 90); overflow: hidden; }
.clothing-hero__pattern { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; opacity: 0.07; pointer-events: none; object-fit: cover; }
.clothing-hero__content { position: relative; z-index: 2; max-width: 1200px; margin: 0px auto; }
.clothing-hero__breadcrumb { font-family: "Inter", sans-serif; font-size: 13px; color: rgb(176, 176, 176); margin-bottom: 24px; letter-spacing: 0.5px; }
.clothing-hero__breadcrumb a { color: rgb(176, 176, 176); text-decoration: none; transition: color 0.3s; }
.clothing-hero__breadcrumb a:hover { color: rgb(199, 167, 90); }
.clothing-hero__breadcrumb span { margin: 0px 8px; }
.clothing-hero__title { font-family: "Poppins", sans-serif; font-size: clamp(32px, 5vw, 58px); font-weight: 800; color: rgb(199, 167, 90); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.clothing-hero__underline { width: 100px; height: 3px; background: linear-gradient(90deg, rgb(199, 167, 90), rgb(228, 201, 122), transparent); margin-bottom: 20px; border-radius: 2px; }
.clothing-hero__subtitle { font-family: "Inter", sans-serif; font-size: clamp(14px, 2vw, 18px); color: rgb(255, 255, 255); font-weight: 400; max-width: 580px; line-height: 1.7; }
.clothing-filter { background-color: rgb(79, 117, 130); padding: 20px 40px; box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 20px; position: sticky; top: 0px; z-index: 100; }
.clothing-filter__inner { max-width: 1200px; margin: 0px auto; display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.clothing-filter__inner::-webkit-scrollbar { display: none; }
.clothing-filter__btn { font-family: "Inter", sans-serif; font-size: 13px; font-weight: 600; padding: 9px 20px; border-radius: 30px; cursor: pointer; white-space: nowrap; transition: 0.3s; letter-spacing: 0.4px; border: 2px solid rgb(255, 255, 255); background: transparent; color: rgb(255, 255, 255); flex-shrink: 0; }
.clothing-filter__btn:hover { background-color: rgba(255, 255, 255, 0.15); transform: translateY(-1px); }
.clothing-filter__btn.active { background-color: rgb(228, 201, 122); border-color: rgb(228, 201, 122); color: rgb(0, 0, 0); }
.clothing-filter__btn.active:hover { background-color: rgb(212, 184, 90); border-color: rgb(212, 184, 90); }
.clothing-grid-section { background-color: rgb(0, 0, 0); padding: 60px 40px; }
.clothing-grid-section__inner { max-width: 1200px; margin: 0px auto; }
.clothing-grid-section__heading { font-family: "Poppins", sans-serif; font-size: 28px; font-weight: 700; color: rgb(199, 167, 90); margin-bottom: 36px; letter-spacing: -0.3px; }
.clothing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.clothing-card { background-color: rgb(17, 17, 17); border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; border: 1px solid rgb(30, 30, 30); }
.clothing-card:hover { transform: translateY(-6px); box-shadow: rgba(199, 167, 90, 0.15) 0px 20px 50px; }
.clothing-card__img-wrap { position: relative; width: 100%; height: 240px; overflow: hidden; background-color: rgb(26, 26, 26); }
.clothing-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.clothing-card:hover .clothing-card__img-wrap img { transform: scale(1.06); }
.clothing-card__wishlist { position: absolute; top: 12px; right: 12px; background: rgba(0, 0, 0, 0.6); border: medium; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; color: rgb(199, 167, 90); font-size: 16px; }
.clothing-card__wishlist:hover { background: rgba(199, 167, 90, 0.9); color: rgb(0, 0, 0); transform: scale(1.1); }
.clothing-card__wishlist.wishlisted { background: rgb(199, 167, 90); color: rgb(0, 0, 0); }
.clothing-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1 1 0%; gap: 10px; }
.clothing-card__category { display: inline-block; background-color: rgb(79, 117, 130); color: rgb(255, 255, 255); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; align-self: flex-start; }
.clothing-card__name { font-family: "Poppins", sans-serif; font-size: 17px; font-weight: 700; color: rgb(255, 255, 255); line-height: 1.3; }
.clothing-card__desc { font-size: 13px; color: rgb(170, 170, 170); line-height: 1.6; }
.clothing-card__sizes { display: flex; gap: 6px; flex-wrap: wrap; }
.clothing-card__size-tag { border: 1px solid rgb(68, 68, 68); color: rgb(204, 204, 204); font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.3px; transition: border-color 0.2s, color 0.2s; }
.clothing-card__size-tag:hover { border-color: rgb(199, 167, 90); color: rgb(199, 167, 90); }
.clothing-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid rgb(30, 30, 30); }
.clothing-card__price { font-family: "Poppins", sans-serif; font-size: 20px; font-weight: 700; color: rgb(228, 201, 122); }
.clothing-card__btn { font-family: "Inter", sans-serif; font-size: 12px; font-weight: 700; padding: 9px 18px; background-color: rgb(228, 201, 122); color: rgb(0, 0, 0); border: medium; border-radius: 6px; cursor: pointer; transition: 0.3s; letter-spacing: 0.4px; text-transform: uppercase; }
.clothing-card__btn:hover { background-color: rgb(199, 167, 90); transform: translateY(-1px); box-shadow: rgba(228, 201, 122, 0.4) 0px 4px 15px; }
.clothing-pagination { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 50px; flex-wrap: wrap; }
.clothing-pagination__btn { font-family: "Inter", sans-serif; font-size: 14px; font-weight: 600; padding: 10px 22px; border-radius: 6px; cursor: pointer; transition: 0.3s; border: medium; }
.clothing-pagination__btn--load { background-color: rgb(79, 117, 130); color: rgb(255, 255, 255); font-size: 15px; padding: 12px 32px; }
.clothing-pagination__btn--load:hover { background-color: rgb(61, 95, 106); transform: translateY(-2px); box-shadow: rgba(79, 117, 130, 0.4) 0px 6px 20px; }
.clothing-sizing { background-color: rgb(58, 90, 101); padding: 70px 40px; position: relative; }
.clothing-sizing::after { content: ""; display: block; position: absolute; bottom: 0px; left: 0px; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, rgb(228, 201, 122), rgb(199, 167, 90), rgb(228, 201, 122), transparent); }
.clothing-sizing__inner { max-width: 1200px; margin: 0px auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.clothing-sizing__heading { font-family: "Poppins", sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: rgb(255, 255, 255); margin-bottom: 16px; line-height: 1.2; }
.clothing-sizing__text { font-family: "Inter", sans-serif; font-size: 15px; color: rgb(208, 232, 238); line-height: 1.8; margin-bottom: 28px; }
.clothing-sizing__cta { font-family: "Inter", sans-serif; font-size: 14px; font-weight: 700; padding: 13px 30px; background-color: rgb(228, 201, 122); color: rgb(0, 0, 0); border: medium; border-radius: 8px; cursor: pointer; transition: 0.3s; letter-spacing: 0.5px; display: inline-block; text-transform: uppercase; }
.clothing-sizing__cta:hover { background-color: rgb(199, 167, 90); transform: translateY(-2px); box-shadow: rgba(228, 201, 122, 0.4) 0px 6px 20px; }
.clothing-sizing__table-wrap { overflow-x: auto; border-radius: 10px; }
.clothing-sizing__table { width: 100%; border-collapse: collapse; font-size: 14px; font-family: "Inter", sans-serif; }
.clothing-sizing__table th { background-color: rgba(0, 0, 0, 0.3); color: rgb(199, 167, 90); font-weight: 700; padding: 13px 16px; text-align: left; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; }
.clothing-sizing__table td { color: rgb(255, 255, 255); padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.clothing-sizing__table tr:last-child td { border-bottom: medium; }
.clothing-sizing__table tr:hover td { background-color: rgba(0, 0, 0, 0.15); }
.clothing-featured { background-color: rgb(0, 0, 0); padding: 0px; position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; clip-path: polygon(0px 0px, 100% 0px, 100% 88%, 0px 100%); overflow: hidden; }
.clothing-featured__bg { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; z-index: 1; }
.clothing-featured__overlay { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(10, 10, 10, 0.6) 100%); z-index: 2; }
.clothing-featured__content { position: relative; z-index: 3; text-align: center; padding: 80px 40px; }
.clothing-featured__quote { font-family: "Poppins", sans-serif; font-size: clamp(26px, 4vw, 46px); font-weight: 800; color: rgb(199, 167, 90); line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.5px; }
.clothing-featured__quote span { display: block; color: rgb(228, 201, 122); }
.clothing-featured__cta { display: inline-block; font-family: "Inter", sans-serif; font-size: 15px; font-weight: 700; padding: 14px 36px; background-color: rgb(228, 201, 122); color: rgb(0, 0, 0); border: medium; border-radius: 8px; cursor: pointer; transition: 0.3s; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 28px; }
.clothing-featured__cta:hover { background-color: rgb(199, 167, 90); transform: translateY(-3px); box-shadow: rgba(228, 201, 122, 0.5) 0px 10px 30px; }
.clothing-reviews { background-color: rgb(26, 15, 0); padding: 80px 40px; position: relative; }
.clothing-reviews::after { content: ""; display: block; position: absolute; bottom: 0px; left: 0px; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, rgb(228, 201, 122), rgb(199, 167, 90), rgb(228, 201, 122), transparent); }
.clothing-reviews__inner { max-width: 1200px; margin: 0px auto; }
.clothing-reviews__heading { font-family: "Poppins", sans-serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: rgb(199, 167, 90); text-align: center; margin-bottom: 48px; }
.clothing-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.clothing-review-card { background-color: rgb(0, 0, 0); border-radius: 12px; padding: 28px; border: 1px solid rgb(30, 30, 30); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; gap: 12px; }
.clothing-review-card:hover { transform: translateY(-4px); box-shadow: rgba(199, 167, 90, 0.12) 0px 16px 40px; }
.clothing-review-card__header { display: flex; align-items: center; gap: 14px; }
.clothing-review-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgb(199, 167, 90); flex-shrink: 0; }
.clothing-review-card__name { font-family: "Poppins", sans-serif; font-size: 16px; font-weight: 700; color: rgb(199, 167, 90); }
.clothing-review-card__stars { color: rgb(228, 201, 122); font-size: 14px; letter-spacing: 2px; }
.clothing-review-card__text { font-size: 14px; color: rgb(204, 204, 204); line-height: 1.75; font-style: italic; }
.clothing-review-card__product { display: inline-block; background-color: rgb(79, 117, 130); color: rgb(255, 255, 255); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; align-self: flex-start; margin-top: 4px; }
.clothing-card.hidden { display: none; }
@media (max-width: 1024px) {
  .clothing-grid { grid-template-columns: repeat(2, 1fr); }
  .clothing-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .clothing-sizing__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .clothing-hero { padding: 50px 20px 40px; }
  .clothing-filter { padding: 16px 20px; }
  .clothing-grid-section { padding: 40px 20px; }
  .clothing-grid { grid-template-columns: 1fr; }
  .clothing-sizing { padding: 50px 20px; }
  .clothing-reviews { padding: 50px 20px; }
  .clothing-reviews__grid { grid-template-columns: 1fr; }
  .clothing-featured { clip-path: polygon(0px 0px, 100% 0px, 100% 92%, 0px 100%); }
  .clothing-featured__content { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .clothing-hero__title { font-size: 28px; }
  .clothing-card__footer { flex-direction: column; gap: 10px; align-items: flex-start; }
  .clothing-card__btn { width: 100%; text-align: center; }
}
.clothing-hero__geo-pattern { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; pointer-events: none; z-index: 1; opacity: 0.08; }
.editor-tool, [data-editor-tool] { outline: none !important; cursor: default !important; }
.dragging { opacity: 0.5 !important; }
.drag-over { border-top: 3px solid rgb(76, 175, 80) !important; }
.editor-tool, [data-editor-tool] { outline: none !important; cursor: default !important; }
.dragging { opacity: 0.5 !important; }
.drag-over { border-top: 3px solid rgb(76, 175, 80) !important; }