* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #07111f;
  color: #ffffff;
}

/* NAVBAR */
.navbar {
  background: #07111f;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 18px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.brand h1 {
  color: #d4af37;
  font-size: 32px;
}

.brand p {
  color: #b8c0cc;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 12px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links .active-link,
.active-link {
  background: #d4af37;
  color: #07111f !important;
}

/* HOME */
.home-wrapper {
  min-height: calc(100vh - 102px);
  padding: 38px 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-card {
  width: 100%;
  max-width: 1120px;
  background: #0d1b2a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.08);
}

.intro-content {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.intro-logo {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.35));
}

.intro-left h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 12px;
}

.intro-text {
  color: #d7dde6;
  line-height: 1.7;
  max-width: 720px;
}

.notes {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: 14px;
  line-height: 1.8;
  color: #f3f4f6;
}

.info-section {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  padding: 20px;
}

.info-card h4 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 12px;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  color: #d7dde6;
  font-size: 14px;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card i,
.highlight {
  color: #d4af37;
}

.tag {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  margin-left: auto;
}

.intro-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  padding: 24px;
}

.intro-right h3 {
  color: #d4af37;
  font-size: 26px;
  margin-bottom: 8px;
}

.social-text {
  color: #b8c0cc;
  margin-bottom: 18px;
  line-height: 1.5;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 12px;
  transition: 0.25s;
}

.social-link:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateX(5px);
}

.social-link span {
  font-size: 24px;
}

.social-link strong {
  display: block;
  color: #ffffff;
}

.social-link small {
  color: #b8c0cc;
}

.gallery-button {
  display: block;
  text-align: center;
  margin-top: 18px;
  background: #d4af37;
  color: #07111f;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
}

/* FEEDBACK + PROOF */
.trust-section {
  width: 100%;
  max-width: 1120px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.trust-card {
  background: #0d1b2a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
}

.trust-card h2 {
  color: #d4af37;
  margin-bottom: 6px;
}

.trust-card p {
  color: #b8c0cc;
  margin-bottom: 18px;
}

.feedback-slider {
  height: 340px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.feedback-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: feedbackScroll 18s linear infinite;
}

.feedback-item {
  min-height: 320px;
  padding: 10px;
}

.feedback-item img {
  width: 100%;
  height: 320px;
  object-fit: contain !important;
  object-position: center;
  border-radius: 14px;
  background: #07111f;
}

@keyframes feedbackScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.proof-slider {
  width: 100%;
  height: 340px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.proof-slider::-webkit-scrollbar {
  display: none;
}

.proof-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.proof-item {
  width: 300px;
  min-width: 300px;
  height: 320px;
  flex: 0 0 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 10px;
}

.proof-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  background: #07111f;
}

/* GALLERY */
.gallery-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 35px 20px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 25px;
}

.gallery-header h1 {
  color: #d4af37;
  font-size: 38px;
}

.gallery-header p {
  color: #b8c0cc;
  margin-top: 8px;
}

.filter-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.search-box,
.filter-select,
.admin-input {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: #0d1b2a;
  color: #ffffff;
  outline: none;
}

.search-box {
  width: min(430px, 100%);
}

.stats-bar {
  color: #b8c0cc;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding-bottom: 14px;
}

.stats-bar b {
  color: #d4af37;
}

.watch-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.watch-grid[data-columns="1"] { grid-template-columns: repeat(1, 1fr); }
.watch-grid[data-columns="2"] { grid-template-columns: repeat(2, 1fr); }
.watch-grid[data-columns="3"] { grid-template-columns: repeat(3, 1fr); }
.watch-grid[data-columns="4"] { grid-template-columns: repeat(4, 1fr); }
.watch-grid[data-columns="5"] { grid-template-columns: repeat(5, 1fr); }

.watch-card {
  background: #0d1b2a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.watch-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.watch-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #000000;
  display: block;
  flex-shrink: 0;
}

.watch-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 220px;
}

.watch-name {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 6px;
}

.watch-category {
  color: #d4af37;
  margin-bottom: 6px;
}

.watch-desc {
  color: #b8c0cc;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.watch-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.watch-price {
  color: #d4af37;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.watch-status {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: #1e874b;
  color: #ffffff;
  font-size: 12px;
  margin: 0;
}

.status-Sold {
  background: #b91c1c !important;
}

.status-Reserved {
  background: #d97706 !important;
}

.loading,
.empty-state,
.empty-text {
  color: #b8c0cc;
  text-align: center;
  padding: 24px;
}

/* ADMIN */
.admin-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 20px;
}

.admin-card,
.admin-dashboard {
  background: #0d1b2a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 28px;
  border-radius: 24px;
}

.admin-card h2,
.admin-dashboard h2 {
  color: #d4af37;
  margin-bottom: 18px;
}

.watch-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}

#watchDescription,
.admin-label,
.admin-note,
.image-preview-grid,
.form-actions {
  grid-column: 1 / -1;
}

.admin-label {
  color: #ffffff;
  font-weight: 700;
}

.admin-note {
  color: #b8c0cc;
  font-size: 14px;
}

.admin-btn,
.logout-btn,
.cancel-btn {
  background: #d4af37;
  color: #07111f;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
}

.logout-btn,
.cancel-btn {
  background: transparent;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.admin-header,
.admin-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.preview-item {
  position: relative;
}

.preview-item span {
  display: block;
  margin-top: 4px;
  color: #d4af37;
  font-size: 12px;
  text-align: center;
}

.image-preview {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  background: #000000;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.remove-preview-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #b91c1c;
  color: white;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

.remove-preview-btn:hover {
  background: #ef4444;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-watch-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
  border-radius: 16px;
}

.admin-watch-item img {
  width: 90px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.admin-actions button {
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #d4af37;
  background: transparent;
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
}

.media-admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.media-admin-card .admin-list {
  margin-top: 14px;
  max-height: 430px;
  overflow-y: auto;
  padding-right: 6px;
}

/* SLIDER MODAL */
.slider-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.slider-box {
  position: relative;
  background: #ffffff;
  color: #07111f;
  width: min(780px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 22px;
}

.slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f2f2f2;
  border-radius: 14px;
  position: relative;
  z-index: 1;
  touch-action: none !important;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  transition: none !important;
}

.slider-image.zoomed {
  cursor: grab;
}

.close-slider {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 99999 !important;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #d4af37;
  color: #07111f;
  font-size: 34px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-nav {
  display: grid !important;
  grid-template-columns: 42px 1fr 42px;
  align-items: center !important;
  gap: 10px !important;
  margin: 12px 0 !important;
}

.slide-btn {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: none !important;
  border-radius: 8px !important;
  background: #eeeeee !important;
  color: #07111f !important;

  font-size: 28px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.slide-counter {
  text-align: center !important;
  margin: 0 !important;
  font-weight: bold !important;
  font-size: 22px !important;
}

.slider-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 12px 0;
  touch-action: pan-x !important;
  overscroll-behavior-x: contain;
}

.slider-thumb {
  width: 70px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

.active-thumb {
  border-color: #d4af37;
}

.slider-info h2 {
  margin-top: 10px;
}

.inquire-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: #1877f2;
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.inquire-btn:hover {
  background: #0d65d9;
}

.modal-inquire-btn {
  margin-top: 14px;
}

/* ON SALE PAGE */
.sale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sale-card {
  background: #0d1b2a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.sale-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #07111f;
}

.sale-info {
  padding: 14px;
}

.sale-info h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 6px;
}

.old-price {
  color: #b8c0cc;
  text-decoration: line-through;
  margin-top: 6px;
}

.sale-price {
  color: #d4af37;
  font-weight: 700;
  font-size: 18px;
  margin-top: 4px;
}

.sale-empty {
  grid-column: 1 / -1;
  font-size: 22px;
  color: #d4af37;
}

.sale-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.sale-modal img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  background: #07111f;
}

.sale-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: #d4af37;
  color: #07111f;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  z-index: 10001;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .intro-content,
  .info-section,
  .trust-section,
  .watch-form,
  .media-admin-grid {
    grid-template-columns: 1fr;
  }

  .image-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 5%;
  }

  .brand {
    justify-content: center;
    text-align: center;
  }

  .brand h1 {
    font-size: 22px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 9px 16px;
    font-size: 14px;
  }

  .gallery-container,
  .admin-wrapper {
    padding: 24px 14px;
  }

  .filter-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .search-box,
  .filter-select,
  .admin-input {
    width: 100%;
    font-size: 16px;
  }

  .watch-grid {
    gap: 10px !important;
  }

  .watch-grid[data-columns="1"] { grid-template-columns: repeat(1, 1fr) !important; }
  .watch-grid[data-columns="2"] { grid-template-columns: repeat(2, 1fr) !important; }
  .watch-grid[data-columns="3"] { grid-template-columns: repeat(3, 1fr) !important; }
  .watch-grid[data-columns="4"] { grid-template-columns: repeat(4, 1fr) !important; }
  .watch-grid[data-columns="5"] { grid-template-columns: repeat(5, 1fr) !important; }

  .watch-card {
    border-radius: 12px !important;
  }

  .watch-img {
    height: 115px !important;
  }

  .watch-info {
    min-height: 185px !important;
    padding: 8px !important;
  }

  .watch-name {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  .watch-category {
    font-size: 12px !important;
    margin-bottom: 4px !important;
  }

  .watch-desc {
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  .watch-price {
    font-size: 13px !important;
  }

  .watch-status {
    font-size: 10px !important;
    padding: 4px 8px !important;
  }

  .admin-card,
  .admin-dashboard {
    padding: 18px;
    border-radius: 18px;
  }

  .image-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-preview {
    height: 130px;
  }

  .admin-watch-item {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .admin-watch-item img {
    width: 70px;
    height: 70px;
  }

  .admin-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .slider-modal {
    padding: 10px;
    align-items: flex-start;
  }

  .slider-box {
    margin-top: 10px;
    padding: 16px;
    max-height: 92vh;
    border-radius: 16px;
  }

  .slider-thumb {
    width: 58px;
    height: 55px;
  }

  .sale-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sale-card img {
    height: 180px;
  }
}

@media (max-width: 420px) {
  .brand h1 {
    font-size: 24px;
  }

  .brand img {
    width: 55px;
    height: 55px;
  }

  .home-wrapper {
    padding: 22px 5%;
  }

  .intro-card {
    padding: 24px;
  }

  .intro-logo {
    width: 180px;
  }

  .intro-left h2 {
    font-size: 28px;
  }

  .watch-grid[data-columns="1"] {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .watch-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .watch-grid[data-columns="3"],
  .watch-grid[data-columns="4"],
  .watch-grid[data-columns="5"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .watch-img {
    height: 115px !important;
  }

  .sale-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sale-card img {
    height: 150px;
  }
}

.admin-textarea {
  min-height: 90px;
  resize: none;
  white-space: pre-wrap;
  line-height: 1.5;
}

/* FINAL PHONE FIX: Feedback/Proof images sakto sa phone, no crop, no black bars */
@media (max-width: 768px) {
  .trust-section {
    grid-template-columns: 1fr !important;
  }

  .feedback-slider {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
  }

  .feedback-track {
    animation: none !important;
    transform: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .feedback-item {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .feedback-item img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    border-radius: 14px !important;
    background: transparent !important;
  }

  .proof-slider {
    height: auto !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    background: transparent !important;
  }

  .proof-track {
    height: auto !important;
    align-items: flex-start !important;
  }

  .proof-item {
    width: 85vw !important;
    min-width: 85vw !important;
    height: auto !important;
    flex: 0 0 85vw !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .proof-item img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    border-radius: 14px !important;
    background: transparent !important;
  }
}

/* ADMIN MOBILE FIX */
@media (max-width: 1100px) {
  .clean-admin-layout {
    grid-template-columns: 1fr !important;
  }

  .clean-sidebar {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
  }

  .clean-menu {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .clean-main {
    padding: 18px 12px !important;
  }

  .clean-stats,
  .clean-media-grid,
  .watch-form.clean-form {
    grid-template-columns: 1fr !important;
  }

  .clean-section {
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .clean-media-card {
    width: 100% !important;
    padding: 16px !important;
  }

  .admin-watch-item {
    grid-template-columns: 80px 1fr !important;
  }

  .admin-watch-item img {
    width: 80px !important;
    height: 80px !important;
  }

  .admin-actions {
    grid-column: 1 / -1 !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 980px) {
  .clean-admin-layout {
    grid-template-columns: 1fr;
  }

  .clean-sidebar {
    position: relative;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .clean-menu {
    grid-template-columns: repeat(2, 1fr);
  }

  .clean-main {
    padding: 22px 14px;
  }

  .clean-title h1 {
    font-size: 30px;
  }

  .clean-stats,
  .clean-media-grid,
  .watch-form.clean-form {
    grid-template-columns: 1fr;
  }
}

/* ADMIN MEDIA RESPONSIVE FIX */
.clean-main {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.clean-section {
  max-width: 100% !important;
  overflow: hidden !important;
}

.clean-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.clean-media-card {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.clean-media-card .admin-input {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 900px) {
  .clean-media-grid {
    grid-template-columns: 1fr !important;
  }
}

.weekly-section {
  grid-template-columns: 1fr;
}

.weekly-card {
  width: 100%;
}

.weekly-slider {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.weekly-slide {
  width: 100%;
  height: 100%;
  display: none;
}

.weekly-slide.active {
  display: block;
}

.weekly-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #07111f;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .weekly-slider {
    height: 280px;
  }
}

.watch-img-wrap{
  position:relative;
}

.sold-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:2rem;
  font-weight:900;
  letter-spacing:3px;
}

.sold-card{
  opacity:.9;
}

.sold-modal-label{
  display:inline-block;
  margin-top:14px;
  padding:12px 18px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-weight:800;
  letter-spacing:1px;
}

.slider-note{
    width:100%;
    margin:10px 0 6px;
    padding:10px 14px;
    background:#fff8e1;
    border:1px solid #d4af37;
    border-radius:12px;
    text-align:center;
    color:#222;
    font-size:14px;
    font-weight:600;
    line-height:1.5;
}

.slider-note div:first-child{
    margin-bottom:4px;
}

@media(max-width:768px){

.slider-note{
    font-size:13px;
    padding:9px 10px;
}

}