@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  --bg-color: #0f0f0f;
  --card-bg: #1a1a1a;
  --text-primary: #fafafa;
  --text-secondary: #b0b0b0;
  --gold: #c6a87c;
  --gold-hover: #e0c090;
  --danger: #cf3838;
  --shopee: #ee4d2d;
  --nav-bg: rgba(15, 15, 15, 0.95);
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.8;
  font-weight: 300;
  overflow-x: hidden;
  animation: fadeInPage 0.8s ease-out;
}

h1,
h2,
h3,
.brand-logo,
.section-title {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}
h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  color: #ccc;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background-color: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  font-weight: 400;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.bar {
  width: 25px;
  height: 2px;
  background-color: var(--gold);
  transition: 0.3s;
}

footer {
  background-color: #050505;
  padding: 3rem 5% 1.5rem;
  margin-top: 5rem;
  border-top: 1px solid #1a1a1a;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.footer-brand p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  font-weight: 300;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 50%;
  color: #ccc;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #0f0f0f;
}

.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(198, 168, 124, 0.1);
  transform: translateY(-3px);
}

.legal-links {
  font-size: 0.8rem;
  color: #555;
}

.legal-links a {
  color: #777;
  text-decoration: none;
  transition: 0.3s;
}

.legal-links a:hover {
  color: var(--gold);
}

.legal-links .separator {
  margin: 0 8px;
  color: #333;
}

.footer-copyright {
  border-top: 1px solid #151515;
  padding-top: 1.5rem;
  text-align: center;
  color: #444;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .footer-content-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-links {
    align-items: center;
  }

  .footer-brand h3 {
    margin-bottom: 0.5rem;
  }
}

.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1615634260167-c8cdede054de?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
  font-weight: 400;
}
.btn:hover {
  background-color: var(--gold);
  color: #000;
}
.btn-primary {
  background-color: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background-color: var(--gold-hover);
}

.section {
  padding: 6rem 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-style: italic;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin: 15px auto 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.feature-box {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
  background: linear-gradient(145deg, #151515, #101010);
}
.feature-box:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.product-card {
  background-color: var(--card-bg);
  border: none;
  transition: transform 0.4s ease;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.product-card:hover {
  transform: translateY(-8px);
}
.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.9);
  transition: 0.4s;
}
.product-card:hover .product-img {
  filter: brightness(1);
  transform: scale(1.03);
}
.product-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-brand {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.product-title {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: white;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.5px;
}
.product-price {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.pagination-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background-color: var(--card-bg);
  border: 1px solid #333;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease;
}
.pagination-btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}
.pagination-btn.active {
  background-color: var(--gold);
  color: var(--bg-color);
  border-color: var(--gold);
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #151515;
}

.detail-container {
  display: flex;
  gap: 4rem;
  margin-top: 2rem;
  align-items: flex-start;
}
.detail-img {
  width: 50%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border: 1px solid #333;
  aspect-ratio: 3/4;
}
.detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.detail-brand {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.detail-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  font-style: italic;
}
.detail-desc {
  color: #ccc;
  margin-bottom: 2rem;
  white-space: pre-line;
  font-weight: 300;
  text-align: justify;
  line-height: 1.8;
}
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 350px;
}
.btn-shopee {
  background-color: var(--shopee);
  border-color: var(--shopee);
  color: white;
}
.btn-shopee:hover {
  background-color: #c43e23;
}

@keyframes skeleton-pulse {
  0% {
    background-color: #222;
  }
  50% {
    background-color: #333;
  }
  100% {
    background-color: #222;
  }
}
.skeleton {
  animation: skeleton-pulse 1.5s infinite ease-in-out;
  border-radius: 4px;
}
.skeleton-card {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.skeleton-img {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #222;
}
.skeleton-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.skeleton-text {
  background-color: #222;
}
.skeleton-brand {
  width: 40%;
  height: 12px;
}
.skeleton-title {
  width: 80%;
  height: 24px;
}
.skeleton-price {
  width: 30%;
  height: 18px;
  margin-top: 5px;
}
.skeleton-btn {
  width: 100%;
  height: 40px;
  margin-top: 1rem;
  border-radius: 0;
}

.skeleton-detail-container {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  align-items: flex-start;
}
.skeleton-detail-img {
  width: 50%;
  max-width: 500px;
  aspect-ratio: 3/4;
  background-color: #222;
}
.skeleton-detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.skeleton-detail-brand {
  width: 30%;
  height: 20px;
  background-color: #222;
}
.skeleton-detail-title {
  width: 80%;
  height: 60px;
  background-color: #222;
}
.skeleton-detail-price {
  width: 40%;
  height: 40px;
  background-color: #222;
  margin-bottom: 1rem;
}
.skeleton-detail-desc-line {
  width: 100%;
  height: 15px;
  background-color: #222;
  margin-bottom: 5px;
}
.skeleton-detail-btn {
  width: 300px;
  height: 50px;
  background-color: #222;
  margin-top: 1rem;
}

.search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.catalog-search {
  width: 100%;
  padding: 1rem 3rem;
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: white;
  border-radius: 50px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease;
  text-align: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 20px;
}
.catalog-search:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(198, 168, 124, 0.15);
  background-color: #222;
}

.search-wrapper .search-clear-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  display: none;
  transition: 0.3s;
  z-index: 10;
}
.search-wrapper .search-clear-btn:hover {
  color: var(--danger);
}

.admin-body {
  display: flex;
  min-height: 100vh;
  background-color: #121212;
  overflow-x: hidden;
}
.sidebar {
  width: 250px;
  background-color: #0a0a0a;
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  transition: width 0.3s ease;
}
.sidebar-logo {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar-menu {
  list-style: none;
  flex-grow: 1;
}
.sidebar-menu li {
  margin-bottom: 0.5rem;
}
.sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 1rem;
  color: #888;
  border-radius: 4px;
  transition: 0.3s;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.sidebar-menu a i {
  font-size: 1.2rem;
  min-width: 30px;
}
.sidebar-menu a:hover,
.sidebar-menu a.active {
  background-color: #1a1a1a;
  color: var(--gold);
  border-left: 3px solid var(--gold);
}
.sidebar-footer {
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.admin-content {
  margin-left: 250px;
  width: calc(100% - 250px);
  padding: 3rem;
  transition: all 0.3s ease;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.search-box {
  padding: 0.8rem;
  width: 100%;
  max-width: 300px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: white;
  border-radius: 4px;
}
.table-responsive {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background-color: var(--card-bg);
  white-space: nowrap;
}
th,
td {
  padding: 1.2rem 1rem;
  text-align: left;
  border-bottom: 1px solid #333;
}
th {
  background-color: #252525;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}
.action-buttons-container {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.btn-action {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-edit {
  color: #4facfe;
}
.btn-edit:hover {
  background-color: rgba(79, 172, 254, 0.1);
  transform: scale(1.1);
}
.btn-delete {
  color: var(--danger);
}
.btn-delete:hover {
  background-color: rgba(207, 56, 56, 0.1);
  transform: scale(1.1);
}
.badge-dot {
  position: absolute;
  top: 12px;
  right: 15px;
  width: 10px;
  height: 10px;
  background-color: var(--danger);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--danger);
  display: none;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(207, 56, 56, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(207, 56, 56, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(207, 56, 56, 0);
  }
}
.row-unread {
  background-color: rgba(198, 168, 124, 0.08);
  font-weight: bold;
}
.row-unread td {
  color: white !important;
}
.btn-toggle-read {
  display: inline-block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem;
  background-color: #333;
  color: white;
  border: 1px solid #555;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-toggle-read:hover {
  background-color: #444;
  border-color: #777;
}
.btn-toggle-read.is-read {
  background-color: transparent;
  color: #888;
  border: 1px dashed #555;
}
.form-box {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border: 1px solid #333;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background-color: #121212;
  border: 1px solid #333;
  color: white;
  font-family: "Lato", sans-serif;
  border-radius: 4px;
  transition: 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: #151515;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 2.5rem;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
}
.modal-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.modal-title {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-family: "Playfair Display", serif;
}
.modal-message {
  color: #bbb;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.modal-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.modal-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.modal-btn-confirm {
  background-color: var(--gold);
  color: #000;
}
.modal-btn-confirm:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(198, 168, 124, 0.3);
}
.modal-btn-cancel {
  background-color: transparent;
  border: 1px solid #555;
  color: #ccc;
}
.modal-btn-cancel:hover {
  border-color: #fff;
  color: #fff;
}
.modal-btn-danger {
  background-color: var(--danger);
  color: white;
}
.modal-btn-danger:hover {
  background-color: #a02020;
  box-shadow: 0 5px 15px rgba(207, 56, 56, 0.3);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #0f0f0f;
  border-left: 1px solid #222;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 5px;
  border: 2px solid #0f0f0f;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}
::-webkit-resizer {
  background-color: #0f0f0f;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
}
input[type="file"] {
  background-color: #151515;
  padding: 10px;
  border: 1px dashed #444;
  border-radius: 4px;
  width: 100%;
  color: #888;
  cursor: pointer;
  transition: 0.3s;
}
input[type="file"]:hover {
  border-color: var(--gold);
  color: white;
}
input[type="file"]::file-selector-button {
  background-color: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 5px 15px;
  border-radius: 4px;
  margin-right: 15px;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
input[type="file"]::file-selector-button:hover {
  background-color: var(--gold);
  color: #000;
}
textarea {
  resize: vertical;
  min-height: 100px;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}

.related-section {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #333;
}
.related-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 5%;
    flex-wrap: wrap;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: #0f0f0f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
    border-left: 1px solid #333;
    z-index: 1000;
  }
  .nav-links.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .detail-container,
  .skeleton-detail-container {
    flex-direction: column;
    gap: 2rem;
  }
  .detail-img,
  .skeleton-detail-img {
    width: 100%;
    max-width: 100%;
  }
  .action-buttons {
    max-width: 100%;
  }
  .search-wrapper {
    max-width: 100%;
  }
  .catalog-search {
    border-radius: 10px;
  }
  .sidebar {
    width: 70px;
    padding: 1rem 0.5rem;
  }
  .sidebar-logo {
    font-size: 0.6rem;
    margin-bottom: 2rem;
  }
  .sidebar-menu a span {
    display: none;
  }
  .sidebar-menu a {
    justify-content: center;
    padding: 0.8rem;
  }
  .sidebar-menu a i {
    font-size: 1.5rem;
    margin: 0;
  }
  .admin-content {
    margin-left: 70px;
    width: calc(100% - 70px);
    padding: 1.5rem 1rem;
  }
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-box {
    max-width: 100%;
  }
  .form-box {
    width: 100%;
    padding: 1.5rem;
  }
  .stats-summary {
    grid-template-columns: 1fr;
  }
  .chart-container {
    padding: 1rem;
  }
  .modal-box {
    width: 95%;
    padding: 2rem;
  }
}
