* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f5f3;
  color: #222;
  font-family: "Inter", sans-serif;
}

/* TOP MENU */

.top-menu {
  width: 100%;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 30px;
}

.top-menu a {
  text-decoration: none;
  color: #222;
  font-size: 10px;
  letter-spacing: 2px;
  margin: 0 12px;
  text-transform: uppercase;
}

/* MAIN CONTAINER */

.container {
  width: 991px;
  margin: auto;
}

/* NEWSLETTER */

.newsletter {
  border-top: 2px solid #222;
  border-bottom: 1px solid #999;
  padding: 10px 0;
  margin-bottom: 35px;
}

.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.newsletter img {
  width: 42px;
  height: 42px;
  object-fit: cover;
}

.newsletter p {
  font-size: 13px;
  color: #444;
}

.newsletter button {
  padding: 10px 18px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  cursor: pointer;
}

/* HERO */

.hero img {
  width: 100%;
  display: block;
}

.hero-content {
  text-align: center;
  margin-top: 18px;
}

.hero-category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}

.hero-author {
  font-size: 11px;
  color: #777;
}

/* SECTION */

.section {
  margin-top: 40px;
}

.section-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* GRID */

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* CARD */

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 10px;
}

.card-category {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
}

.card-author {
  font-size: 10px;
  color: #777;
}

/* MOBILE */

@media (max-width: 900px) {
  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .top-menu {
    overflow: auto;
    white-space: nowrap;
    padding: 12px;
  }

  .newsletter-box {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #111;
  color: #eee;

  margin-top: 80px;

  padding: 60px 0 25px;
}

.footer-container {
  width: 85%;
  margin: auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;

  padding-bottom: 30px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  margin-bottom: 15px;
}

.footer-text {
  color: #bdbdbd;
  line-height: 1.8;
  font-size: 13px;
  max-width: 360px;
}

.footer-column h4 {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #bdbdbd;
  font-size: 13px;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 22px;
  font-size: 10px;
  letter-spacing: 2px;
  color: #888;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .main-section {
    grid-template-columns: 1fr;
  }

  .hero {
    position: relative;
    top: 0;
    /* height: 700px; */
  }

  .products {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 38px;
  }

  .top-header.scrolled .logo {
    font-size: 30px;
  }

  .navbar {
    gap: 18px;
    top: 72px;
  }

  .navbar.scrolled {
    top: 54px;
  }

  /* .hero {
    height: 560px;
  } */

  .hero-content h1 {
    font-size: 42px;
  }

  .story-image {
    height: 350px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* =========================
   HEADER
========================= */

.top-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);

  text-align: center;

  padding: 18px 40px 12px;

  transition: 0.35s ease;
}

.top-header.scrolled {
  padding: 10px 40px 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;

  transition: 0.35s ease;
}

.top-header.scrolled .logo {
  font-size: 40px;
}

.tagline {
  font-size: 10px;
  letter-spacing: 4px;
  color: #d8d8d8;
  margin-top: 2px;
}

.icons {
  position: absolute;
  right: 35px;
  top: 26px;

  display: flex;
  gap: 14px;

  color: #fff;
  font-size: 18px;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 88px;
  z-index: 999;

  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;

  padding: 14px 20px;

  transition: 0.35s ease;
}

.navbar.scrolled {
  top: 62px;
  padding: 10px 20px;
}

.navbar a {
  text-decoration: none;
  color: #fff;

  text-transform: uppercase;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;

  transition: 0.3s;
}

.navbar a:hover {
  opacity: 0.7;
}
.card {
  text-decoration: none;
  color: #111;
  display: block;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.logo {
  font-size: 42px;
  letter-spacing: 6px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-decoration: none;
  color: #f0eded;
  display: inline-block;
}

/* TRANSLATE BOX */

.translate-box {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* GOOGLE TRANSLATE DROPDOWN */

#google_translate_element {
  display: block;
}

.goog-te-gadget {
  font-family: "Inter", sans-serif !important;
  color: #111 !important;
}

.goog-te-gadget select {
  background: #fff !important;
  border: 1px solid #ddd !important;
  padding: 10px 14px !important;
  font-size: 12px !important;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
}
.goog-te-gadget-simple,
.VIpgJd-ZVi9od-xl07Ob-lTBxed {
  display: flex !important;
  align-items: center;
}

/* REMOVE GOOGLE TOP BAR */

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}
@media (max-width: 991px) {
  .translate-box {
    top: 12px;
  }
}

body {
  background: #f4f4f2;
  font-family: Georgia, serif;
}

.decor-wrapper {
  width: 92%;
  margin: auto;
  padding: 30px 0;
}

.decor-header {
  text-align: center;
  margin-bottom: 30px;
}

.decor-header h2 {
  font-size: 34px;
  letter-spacing: 2px;
  font-weight: 400;
  margin: 15px 0;
}

.line {
  width: 100%;
  height: 1px;
  background: #999;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

.slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
}

.slider::-webkit-scrollbar {
  display: none;
}

.card {
  /* min-width: 280px; */
  /* max-width: 280px; */
  flex: 0 0 auto;
  text-decoration: none;
  color: black;
}

.card img {
  width: 100%;
  height: 355px;
  object-fit: cover;
}

.category {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  margin-top: 14px;
  text-transform: uppercase;
}

.card h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  margin: 10px 0;
}

.author {
  font-size: 14px;
  color: #666;
}

.nav-btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 20px;
}

.prev {
  left: -20px;
}

.next {
  right: -20px;
}

.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

#loadMoreBtn {
  padding: 14px 40px;
  border: none;
  background: black;
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .card {
    /* min-width: 240px;
    max-width: 240px; */
  }

  .card h3 {
    font-size: 18px;
  }

  .decor-header h2 {
    font-size: 24px;
  }

  .prev {
    left: 0;
  }

  .next {
    right: 0;
  }
}

/* TRANSLATE BOX */

.translate-box {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* GOOGLE TRANSLATE DROPDOWN */

#google_translate_element {
  display: block;
}

.goog-te-gadget {
  font-family: "Inter", sans-serif !important;
  color: #111 !important;
}

.goog-te-gadget select {
  background: #fff !important;
  border: 1px solid #ddd !important;
  padding: 10px 14px !important;
  font-size: 12px !important;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
}
.goog-te-gadget-simple,
.VIpgJd-ZVi9od-xl07Ob-lTBxed {
  display: flex !important;
  align-items: center;
}

/* REMOVE GOOGLE TOP BAR */

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}
@media (max-width: 991px) {
  .translate-box {
    top: 12px;
  }
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.social-row a {
  width: 40px;
  height: 40px;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.social-row a:hover {
  background: #fff;
  color: #000;
}

.signup-link {
  color: white;
  text-decoration: none;
}

 /* Blank Space Container */
    .ad-space{
      width:100%;
      max-width:1200px;
      height:300px;
      margin:auto;
      border-radius:20px;
      overflow:hidden;
      position:relative;
    }

    .ad-space img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* Optional Text Overlay */
    .ad-content{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%, -50%);
      color:white;
      text-align:center;
      background:rgba(0,0,0,0.4);
      padding:20px 35px;
      border-radius:15px;
      backdrop-filter:blur(5px);
    }

    .ad-content h1{
      margin:0;
      font-size:42px;
      letter-spacing:2px;
    }

    .ad-content p{
      margin-top:10px;
      font-size:18px;
    }

    /* Extra Small Devices */
@media (max-width:480px){

  .ad-space{
    height:180px;
    border-radius:12px;
  }

  /* Image Responsive */
  .ad-space img{
    width:100%;
    height:50%;
    object-fit:cover;
    object-position:center;
  }

  .ad-content{
    width:90%;
    padding:10px 14px;
    border-radius:10px;
  }

  .ad-content h1{
    font-size:18px;
    line-height:1.3;
  }

  .ad-content p{
    font-size:12px;
    line-height:1.5;
  }

}
.hero-link{
    text-decoration:none;
    color:inherit;
    display:block;
    transition:0.3s ease;
}

.hero-link:hover{
    transform:scale(1.01);
}

.hero-link img{
    width:100%;
    display:block;
}