
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Jost:wght@300;400;500&display=swap');

:root {
  --gold: #b8973a;
  --cream: #faf7f2;
  --dark: #1a1612;
  --mid: #3d3530;
}
html, body{
  overflow-x: hidden;
}


/* BODY */
body {
  font-family: 'Jost', sans-serif !important;
  background: var(--cream) !important;
  color: var(--dark) !important;
}

/* LOGO */
.logo {
  font-family: 'Cormorant Garamond', serif !important;
  letter-spacing: 2px;
}

/* HEADINGS */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400;
}

/* NAV LINKS */
.nav-links a {
  color: var(--mid) !important;
  letter-spacing: 1px;
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--gold) !important;
}

/* BUTTON */
.btn {
  background: var(--dark) !important;
  color: var(--cream) !important;
}
.btn:hover {
  background: var(--gold) !important;
}

/* CATEGORY BUTTON */
.category-card button {
  background: var(--dark) !important;
}
.category-card button:hover {
  background: var(--gold) !important;
}

/* PRODUCT PRICE */
.price {
  color: var(--gold) !important;
}

/* PRODUCT BUTTON */
.product-card button {
  background: var(--dark) !important;
}
.product-card button:hover {
  background: var(--gold) !important;
}

/* SECTION LINE */
h2::after {
  background: var(--gold) !important;
}

/* FOOTER */
.footer {
  background: var(--cream) !important;
}

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

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

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #eee;
  padding: 15px 5%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* FIX ICON ALIGNMENT */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-icons i {
  cursor: pointer;
  position: relative;
  z-index: 3000;
}
.navbar {
  position: relative;
  z-index: 2000;
}
.search-box {
  z-index: 1000;
}
.logo {
  font-family: "Cinzel", serif;
  font-size: 26px;
  font-weight: 600;
  color: #111;
}

.logo span {
  color: #c9a44c;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #c9a44c;
}

.nav-icons i {
  font-size: 18px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 70vh;
  background: linear-gradient(135deg, #f5f1ea, #eae3d9);
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 42px;
  font-family: "Cinzel", serif;
  margin-bottom: 10px;
}

.hero-text p {
  color: #555;
  margin-bottom: 20px;
}

.btn {
  background: #c9a44c;
  color: white;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
}

/* CATEGORIES */
.categories {
  padding: 80px 5%;
  text-align: center;
}

.categories h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-family: "Cinzel", serif;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.category-card {
  position: relative;
  overflow: hidden;
}

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

.category-card button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #c9a44c;
  color: white;
  border: none;
  padding: 10px 20px;
}

/* PRODUCTS */
.products {
  padding: 80px 5%;
  text-align: center;
}

.products h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-family: "Cinzel", serif;
}

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

.product-card {
  background: white;
  border: 1px solid #eee;
  padding: 20px;
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 16px;
  margin: 15px 0;
}

.price {
  color: #c9a44c;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-card button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #25D366;
  color: white;
  cursor: pointer;
}

/* FEATURES */
.features {
  padding: 80px 5%;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature-box {
  background: white;
  padding: 30px;
  width: 300px;
  text-align: center;
  border: 1px solid #eee;
}

.feature-box h3 {
  margin-bottom: 10px;
}

.feature-box p {
  color: #666;
}

/* FOOTER */
.footer {
  background: #f1f1f1;
  padding: 40px 5%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.copy {
  text-align: center;
  margin-top: 20px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .features {
    flex-direction: column;
    align-items: center;
  }
}

body {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-text h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
}

.hero-text p {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-text .btn {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.6s;
  text-decoration: none;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 2%;
  top: 50%;
  width: 600px;
  height: 600px;
  background: url("image/main2.png") no-repeat center/contain;
  transform: translateY(-50%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-20px); }
  100% { transform: translateY(-50%) translateY(0); }
}

.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 164, 76, 0.4);
}

.category-card img {
  transition: 0.5s;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card button {
  transition: 0.3s;
}

.category-card:hover button {
  background: #b8933f;
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.product-card img {
  transition: 0.4s;
}

.product-card:hover img {
  transform: scale(1.05);
}
.product-card button {
  transition: 0.3s;
}

.product-card button:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

h2 {
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  width: 50%;
  height: 2px;
  background: #c9a44c;
  display: block;
  margin: 10px auto 0;
}
h2 {
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  width: 50%;
  height: 2px;
  background: #c9a44c;
  display: block;
  margin: 10px auto 0;
}


/* TABLET */
@media (min-width: 601px) and (max-width: 992px) {
  
  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column;
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .hero::after {
    display: none;
  }

  .hero-text {
    max-width: 100%;
  }

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

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

  .features {
    flex-direction: column;
    align-items: center;
  }
}
  

.sizes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.size-btn {
  padding: 5px 10px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

.size-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.product-card img {
  border-radius: 10px;
  transition: 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}
.product-card img {
  border-radius: 10px;
  transition: 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}
.order-btn {
  background: linear-gradient(135deg, #111, #2b2b2b);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.order-btn:hover {
  background: #b8973a;
  color: #000;
}

/* MOBILE */
@media (max-width: 600px) {
 .hero {
    flex-direction: column;
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }

.hero::after {
    position: absolute;
    left: 0;
    /* transform: translateX(-50%); */
    width: auto;
    height: 500px;
    margin-top: 80px;
}
.hero-text {
    margin-bottom: 200px; 
}
  .navbar {
    padding: 10px 15px;
  }

  .logo {
    font-size: 20px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }
  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }

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

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

  .product-card img {
    height: 180px;
  }

  .features {
    padding: 40px 20px;
  }

  .feature-box {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .category-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
  }

  .category-grid::-webkit-scrollbar {
    display: none; /* clean look */
  }

  .category-card {
    min-width: 85%; 
    flex-shrink: 0;

    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
  }

  .category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .body{
    margin: 0;
  }
  .products {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;  
  padding: 20px 10px;
}
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 8px;
    padding: 0 8px;
    justify-content: center; 
  }

  .product-card {
    padding: 0px;
    text-align: center;
    align-items: center;
  }
  .product-card button{
    width: 80%;
  }
  .product-card img {
    width: 100%;
    height: 120px; 
    object-fit: contain;
  }

  .product-card h3 {
    font-size: 10px;
    margin: 6px 0;
  }

   .sizes {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 10px;
  }

  .size-btn {
    padding: 4px 6px;
    font-size: 10px;
    border-radius: 4px;
  }
  .price {
    font-size: 13px;
    margin: 5px 0;
  }

  .order-btn {
    font-size: 12px;
    padding: 4px;
    margin-bottom: 20px;
  }
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 992px) {

  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;

    display: none;
    border-top: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
  }
}

/* SEARCH BOX */
.search-box {
  position: absolute;
  top: 70px;
  right: 5%;
  background: white;
  padding: 10px;
  border: 1px solid #eee;
  display: none;
}

.search-box input {
  border: none;
  outline: none;
  width: 200px;
}

.hero {
  background: linear-gradient(135deg, #f8f5f0 0%, #f1ece6 100%);
}

.filter-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid #c9a44c;
  background: transparent;
  padding: 6px 15px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
}

.filter-btn.active,
.filter-btn:hover {
  background: #111;
  color: #fff;
}
.product-card {
  transition: 0.3s;
}

/* DESKTOP */
@media (min-width: 992px) {

  .hero {
    position: relative;
  }

  .hero::before {
    content: "FREZ";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 140px;
    font-weight: 600;
    letter-spacing: 10px;

    color: rgba(0,0,0,0.07); 
    white-space: nowrap;
    pointer-events: none;
  }

}


.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 100px 5%;

  background: linear-gradient(135deg, #d4af37, #caa23a);
}

/* CARD */
.feature-box {
  background: #fff;
  padding: 50px 30px;
  width: 320px;
  text-align: center;

  border-radius: 12px;
  transition: 0.4s;
}

/* ICON */
.feature-box i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #1a1612;
}

/* TITLE */
.feature-box h3 {
  font-family: "Cinzel", serif;
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.feature-box p {
  font-size: 14px;
  color: #6b625a;
  line-height: 1.6;
}

/* HOVER */
.feature-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 100%;
    max-width: 350px;
  }
}

/* FOOTER  */

.footer {
  background: #111;
  color: #e0e0e0;
  padding-top: 70px;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 5% 50px;
}

/* LOGO */
.footer .logo {
  font-family: "Cinzel", serif;
  font-size: 24px;
}

.footer .logo span {
  color: #b8973a;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  color: black;
}

/* HEADINGS */
.footer h3 {
  margin-bottom: 15px;
  font-family: "Cinzel", serif;
  font-size: 16px;
  color: #000;
}

/* LINKS */
.footer a {
  display: block;
  text-decoration: none;
  color: #0c0c0c;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer a:hover {
  color: #b8973a;
  transform: translateX(5px);
}

/* SOCIAL */
.socials {
  margin-top: 10px;
}

.socials a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #b8973a;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.socials a:hover {
  background: #b8973a;
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px;
  font-size: 13px;
  color: #000;
}

.footer-bottom a {
  color: #b8973a;
  text-decoration: none;
}

/* .sizes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
} */

.size-btn {
  padding: 5px 10px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

.size-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.product-card img {
  border-radius: 10px;
  transition: 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}
.product-card img {
  border-radius: 10px;
  transition: 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}
.order-btn {
  background: linear-gradient(135deg, #111, #2b2b2b);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.order-btn:hover {
  background: #b8973a;
  color: #000;
}

a:link, a:visited, a:hover, a:active {
  color: black;
  text-decoration: none;
}