:root {
  --bg: #ffffff;
  --text: #000000;
  --text-light: #666666;
  --accent: #0000cc;
  --border: #e8e8e8;
  --btn-bg: #000000;
  --btn-text: #ffffff;
  --container-padding: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header__container {
  max-width: 1568px;
  margin: 0 auto;
  padding: 15px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

@media (max-width: 767px) {
  .header__container {
    padding: 15px 20px;
  }
}

.header__left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__hamburger span {
  width: 20px;
  height: 1.5px;
  background: #000;
}

@media (max-width: 900px) {
  .header__hamburger {
    display: flex;
  }
}

.header__nav {
  display: flex;
  gap: 32px;
}

@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
}

.header__link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  transition: opacity 0.3s ease;
}

.header__link:hover {
  opacity: 0.7;
}

.header__link--highlight {
  color: #0000cc;
}

.header__logo {
  display: block;
}

.header__logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.header__icon:hover {
  opacity: 0.7;
}

.header__icon svg {
  width: 100%;
  height: 100%;
}

.header__icon--cart {
  position: relative;
}

.header__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
           MOBILE MENU
           ========================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.3s ease,
    opacity 0.3s ease;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.mobile-menu__content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu.active .mobile-menu__content {
  transform: translateX(0);
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  margin-bottom: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu__close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__link {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-menu__link--highlight {
  color: #0000cc;
}

/* ===== LATEST NEWS ===== */
.latest-news {
  padding: 80px 0;
  background: #fff;
}

@media (max-width: 767px) {
  .latest-news {
    padding: 60px 0;
  }
}

.latest-news__title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
}

.latest-news__title a {
  color: #000;
}

@media (max-width: 767px) {
  .latest-news__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.latest-news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .latest-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .latest-news__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* News Card */
.news-card__link {
  display: block;
}

.news-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f5f5f5;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.05);
}

.news-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1568px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #fff;
  padding: 100px 0 65px;
  border-top: 1px solid #f0f0f0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 14px;
  color: #666;
}

.footer__links a:hover {
  color: #000;
  opacity: 1;
}

.footer__newsletter-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer__newsletter-input-group {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-right: none;
  font-size: 14px;
  font-family: inherit;
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: #000;
}

.footer__newsletter-button {
  padding: 12px 24px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.footer__newsletter-button:hover {
  background: #333;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.footer__social svg {
  width: 100%;
  height: 100%;
}
