* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 100px 0;
}

.tagline {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 15px;
}

h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', serif;
}

h1 {
  font-size: 68px;
  line-height: 1.05;
  margin-bottom: 20px;
}

h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

p {
  color: #4a4a4a;
  font-size: 16px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Logo Image */
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Logo Text */
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: 0.5px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-text span {
  color: #d4af37;
  font-weight: 700;
}

/* Mobile Logo Adjustments */
@media (max-width: 768px) {
  .logo-img {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    font-size: 22px;
  }
}

/* Navbar links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #d4af37;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Header Icons */
.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.icon-link {
  color: #1a1a1a;
  font-size: 18px;
  transition: 0.3s;
}

.icon-link:hover {
  color: #d4af37;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c9b8a8 0%, #d4c4b4 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: heroSlide 12s ease-in-out infinite;
}

@keyframes heroSlide {
  0%, 100% {
    background-image: url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?auto=format&fit=crop&w=1400&q=80');
    transform: scale(1);
  }
  50% {
    background-image: url('https://images.unsplash.com/photo-1617038260897-41a1f14a8ca0?auto=format&fit=crop&w=1400&q=80');
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text {
  color: #ffffff;
}

.hero-tagline {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  max-width: 540px;
  margin-bottom: 35px;
  color: #f0f0f0;
}

.hero-image img {
  height: 650px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border-radius: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #111;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.secondary-btn {
  border: 1px solid rgba(26,26,26,0.2);
  color: #1a1a1a;
  background: transparent;
}

.secondary-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 20px;
  align-items: center;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #d4af37;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  gap: 12px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-dot.active {
  background: #d4af37;
  transform: scale(1.2);
}

/* About */
.about {
  background: #f9f9f9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-content p {
  margin-bottom: 18px;
}

/* Category */
.category {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  padding: 100px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transition: 0.35s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  transition: 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-name {
  padding: 20px;
  text-align: center;
  background: #ffffff;
}

.category-name h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.category-name p {
  font-size: 13px;
  color: #d4af37;
  font-weight: 500;
}

/* Product */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.products {
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-card img {
  height: 320px;
  object-fit: cover;
  border-radius: 0;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.product-info p {
  margin-bottom: 15px;
  color: #666666;
}

.product-info span {
  color: #d4af37;
  font-size: 18px;
  font-weight: 600;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  padding: 100px 0;
}

.contact-wrapper {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 28px;
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.contact-wrapper:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 175, 55, 0.5);
}

.contact-content > .tagline {
  display: block;
  margin-bottom: 15px;
}

.contact-content h2 {
  color: #1a1a1a;
  margin-bottom: 25px;
  font-size: 42px;
}

.contact-content > p {
  color: #4a4a4a;
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 0;
  padding: 12px 0;
}

.contact-details p strong {
  color: #d4af37;
  font-weight: 600;
  min-width: 70px;
}

.contact-details i {
  color: #d4af37;
  font-size: 20px;
  display: none;
}

.contact-form {
  display: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0c0c0f;
  color: #fff;
  outline: none;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.55);
}

.contact-form button {
  border: none;
  cursor: pointer;
}

/* Collections Carousel */
.collections-carousel {
  background: #ffffff;
  padding: 30px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}

.carousel-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-items {
  display: flex;
  gap: 40px;
  padding: 20px 0;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
  padding: 0 20px;
}

.carousel-item i {
  color: #d4af37;
  font-size: 8px;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 50px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3,
.footer-section h4 {
  color: #d4af37;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
}

.footer-section h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-section p {
  color: #cccccc;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li {
  margin-bottom: 0;
}

.footer-section ul li a {
  color: #cccccc;
  font-size: 14px;
  transition: 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #d4af37;
  margin-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  border-radius: 50%;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-3px);
}

.footer-section p i {
  color: #d4af37;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 30px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-image img,
  .about-image img {
    height: auto;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-icons {
    display: none;
  }

  .nav {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 999;
    padding: 30px 0;
  }

  .nav.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
  }

  .nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .navbar {
    flex-direction: row;
    gap: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .contact-wrapper {
    padding: 30px;
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .carousel-items {
    animation: scroll 20s linear infinite;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #1a1a1a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #f5d76e, #d4af37);
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top i {
  transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-3px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}