/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
body {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
  overflow-x: hidden;
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', serif;
  font-weight: 600;
  color: #050544;
}
h1 { font-size: 4rem; line-height: 1.2; }
h2 { font-size: 3.5rem; line-height: 1.2; }
h3 { font-size: 2.6rem; line-height: 1.2; }

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  color: #050544;
  font-size: 4rem;
}
.section-title.gold h2 { color: #FFD700; }
.section-title.light h2 { color: #EDE8D0; }
.section-title p {
  color: #A7A9AF;
  font-size: 1.6rem;
  margin-top: 1rem;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #050544;
  transition: background 0.3s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo img {
  height: 50px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-menu a {
  color: #EDE8D0;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  padding: 0.5rem 0;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #FFD700;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.btn-sample {
  display: inline-block;
  background: #FFD700;
  color: #050544;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: capitalize;
  padding: 1rem 2.5rem;
  border-radius: 0;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-sample:hover {
  background: #e6c200;
  color: #050544;
}
.btn-sample-outline {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}
.btn-sample-outline:hover {
  background: #FFD700;
  color: #050544;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #050544;
  min-width: 260px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
  border: 1px solid rgba(255, 215, 0, 0.2);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
  color: #EDE8D0;
}
.dropdown-menu a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
}
.dropdown-menu a::after { display: none; }
.dropdown > a::after {
  display: none;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #EDE8D0;
  transition: all 0.3s;
}

/* === HERO === */
.hero {
  background: #050544;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 12rem 0 6rem;
  margin-top: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-content {
  flex: 1;
}
.hero-content h1 {
  font-size: 4.6rem;
  color: #fff;
  margin-bottom: 2rem;
}
.hero-content h1 span {
  color: #FFD700;
}
.hero-content .hero-subtitle {
  font-size: 2.6rem;
  font-family: 'EB Garamond', serif;
  color: #EDE8D0;
  margin-bottom: 1rem;
}
.hero-content .hero-desc {
  color: #A7A9AF;
  font-size: 1.6rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  border-radius: 35px;
  max-width: 100%;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: capitalize;
  padding: 1.2rem 3rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary {
  background: #FFD700;
  color: #050544;
}
.btn-primary:hover {
  background: #e6c200;
}
.btn-outline {
  background: transparent;
  color: #050544;
  border-bottom: 1px solid #050544;
  padding: 0 0 4px 0;
  border-radius: 0;
}
.btn-outline:hover {
  color: #FFD700;
  border-color: #FFD700;
}
.btn-outline-gold {
  background: transparent;
  color: #FFD700;
  border-bottom: 1px solid #FFD700;
  padding: 0 0 4px 0;
  border-radius: 0;
}
.btn-outline-gold:hover {
  color: #EDE8D0;
  border-color: #EDE8D0;
}

/* === PRODUCTS GRID (Home) === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.product-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  border-radius: 35px;
  margin-bottom: 1.5rem;
  width: 100%;
}
.product-card h3 {
  font-size: 2.6rem;
  color: #050544;
  margin-bottom: 1rem;
}
.product-card p {
  color: #A7A9AF;
  font-size: 1.5rem;
}

/* === WHY CHOOSE US === */
.why-section {
  padding: 8rem 0;
  background: #050544;
}
.why-section .section-title h2 {
  color: #EDE8D0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}
.why-card {
  text-align: center;
  padding: 3rem;
}
.why-card .icon {
  font-size: 4rem;
  color: #FFD700;
  margin-bottom: 2rem;
}
.why-card h3 {
  color: #EDE8D0;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.why-card p {
  color: #A7A9AF;
  font-size: 1.6rem;
}

/* === ABOUT SECTION (Home) === */
.about-section {
  padding: 8rem 0;
}
.about-section .container {
  display: flex;
  align-items: center;
  gap: 6rem;
}
.about-image {
  flex: 1;
}
.about-image img {
  border-radius: 35px;
}
.about-content {
  flex: 1;
}
.about-content h2 {
  margin-bottom: 2rem;
}
.about-content p {
  color: #A7A9AF;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.about-content .btn {
  margin-top: 1rem;
}

/* === VELVERIT === */
.velverit-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #050544, #1a1a6e);
  text-align: center;
  color: #fff;
}
.velverit-section h2 {
  color: #FFD700;
  font-size: 4rem;
  margin-bottom: 1rem;
}
.velverit-section .tagline {
  font-family: 'EB Garamond', serif;
  font-size: 2.6rem;
  color: #EDE8D0;
  margin-bottom: 2rem;
}
.velverit-section p {
  color: #A7A9AF;
  margin-bottom: 3rem;
}

/* === ONLINE STORE === */
.store-section {
  padding: 6rem 0;
  background: #EDE8D0;
  text-align: center;
}
.store-section h2 {
  color: #050544;
  margin-bottom: 1rem;
}
.store-section p {
  color: #A7A9AF;
  margin-bottom: 2rem;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 8rem 0;
  background: #050544;
  overflow: hidden;
}
.testimonials-section .section-title h2 {
  color: #EDE8D0;
}
.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 3rem;
  transition: transform 0.5s ease;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 2rem);
  background: #050544;
  border: 3px solid #FFD700;
  border-radius: 35px;
  padding: 2rem;
  text-align: center;
  color: #EDE8D0;
}
.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}
.testimonial-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #EDE8D0;
  margin-bottom: 0.5rem;
}
.testimonial-card .role {
  color: #A7A9AF;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.testimonial-card p {
  color: #A7A9AF;
  font-size: 1.4rem;
  line-height: 1.6;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.testimonial-nav button {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  transition: all 0.3s;
}
.testimonial-nav button:hover {
  background: #FFD700;
  color: #050544;
}

/* === FAQ === */
.faq-section {
  padding: 8rem 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #050544;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
}
.faq-question .icon {
  font-size: 2.4rem;
  transition: transform 0.3s;
  color: #050544;
}
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #A7A9AF;
  font-size: 1.5rem;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* === FOOTER === */
.site-footer {
  background: #EDE8D0;
  padding: 6rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-col h4 {
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  color: #050544;
  margin-bottom: 2rem;
}
.footer-col p,
.footer-col a {
  color: #000;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1rem;
}
.footer-col a:hover {
  color: #FFD700;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 1.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #000;
  font-size: 1.4rem;
}

/* === PAGE HEADER === */
.page-header {
  padding: 15rem 0 5rem;
  background: #050544;
  text-align: center;
}
.page-header h1 {
  color: #fff;
  font-size: 4rem;
}
.page-header p {
  color: #A7A9AF;
  font-size: 1.6rem;
  margin-top: 1rem;
}

/* === ABOUT PAGE === */
.about-story {
  padding: 6rem 0;
}
.about-story .container {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.about-story.reverse .container {
  flex-direction: row-reverse;
}
.about-story .text h2 {
  margin-bottom: 2rem;
}
.about-story .text p {
  color: #A7A9AF;
  margin-bottom: 1.5rem;
}
.about-story .image {
  flex: 1;
}
.about-story .image img {
  border-radius: 35px;
  width: 100%;
}
.about-story .text {
  flex: 1;
}

.founder-section {
  padding: 6rem 0;
  background: #050544;
  color: #EDE8D0;
  text-align: center;
}
.founder-section blockquote {
  font-family: 'EB Garamond', serif;
  font-size: 2.8rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #FFD700;
  font-style: italic;
}
.founder-section .founder-name {
  font-size: 1.8rem;
  color: #EDE8D0;
}

/* === PRODUCTS PAGE === */
.products-intro {
  padding: 6rem 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.products-intro p {
  color: #A7A9AF;
  font-size: 1.6rem;
  line-height: 1.8;
}
.category-section {
  padding: 6rem 0;
}
.category-section:nth-child(even) {
  background: #f8f8f8;
}
.category-section h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3.5rem;
}
.products-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.product-cat-card {
  text-align: center;
  padding: 2rem;
}
.product-cat-card img {
  border-radius: 20px;
  width: 100%;
  margin-bottom: 1.5rem;
}
.product-cat-card h3 {
  font-size: 2.2rem;
  color: #050544;
  margin-bottom: 1rem;
}
.product-cat-card ul {
  text-align: left;
  color: #A7A9AF;
  font-size: 1.4rem;
  line-height: 2;
}
.product-cat-card ul li::before {
  content: '• ';
  color: #FFD700;
}
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.subcategory-card {
  text-align: center;
  padding: 1.5rem;
}
.subcategory-card img {
  border-radius: 20px;
  margin-bottom: 1rem;
  width: 100%;
}
.subcategory-card h4 {
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  color: #050544;
}

/* === TESTIMONIALS PAGE === */
.testimonials-page {
  padding: 6rem 0;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.tab-btn {
  padding: 1rem 3rem;
  border: 2px solid #050544;
  background: transparent;
  color: #050544;
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
}
.tab-btn.active,
.tab-btn:hover {
  background: #050544;
  color: #FFD700;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-page-card {
  background: #050544;
  border: 3px solid #FFD700;
  border-radius: 35px;
  padding: 2rem;
  text-align: center;
  color: #EDE8D0;
}
.testimonial-page-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.testimonial-page-card h4 {
  font-size: 1.6rem;
  color: #EDE8D0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.testimonial-page-card .role {
  color: #A7A9AF;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.testimonial-page-card p {
  color: #A7A9AF;
  font-size: 1.4rem;
}

/* === CONTACT PAGE === */
.contact-intro {
  padding: 6rem 0;
  text-align: center;
}
.contact-intro h2 {
  margin-bottom: 2rem;
}
.contact-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: #A7A9AF;
}
.contact-main {
  padding: 4rem 0 8rem;
}
.contact-main .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
.contact-info h3 {
  margin-bottom: 2rem;
}
.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-info .info-item .icon {
  font-size: 2.4rem;
  color: #FFD700;
  min-width: 3rem;
}
.contact-info .info-item .text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #050544;
}
.contact-info .info-item .text p {
  color: #A7A9AF;
  font-size: 1.5rem;
}
.contact-form h3 {
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #050544;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ccc;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  color: #000;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #050544;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* === MISSION SECTION === */
.mission-section {
  padding: 6rem 0;
  background: #FFD700;
  text-align: center;
}
.mission-section h2 {
  color: #050544;
  margin-bottom: 2rem;
}
.mission-section .mission-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.mission-section .mission-list li {
  padding: 0.8rem 0;
  font-size: 1.6rem;
  color: #050544;
  list-style: disc;
  margin-left: 2rem;
}
.mission-section .mission-list li strong {
  color: #050544;
}

/* === STATS === */
.stats-section {
  padding: 4rem 0;
  background: #050544;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 3.5rem;
  color: #FFD700;
}
.stat-item p {
  color: #EDE8D0;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container { flex-direction: column-reverse; text-align: center; }
  .hero-content .hero-subtitle { font-size: 2.2rem; }
  .hero-content h1 { font-size: 3.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 calc(50% - 2rem); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main .container { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-story .container { flex-direction: column; text-align: center; }
  .about-story.reverse .container { flex-direction: column; }
  .products-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .subcategory-grid { grid-template-columns: repeat(2, 1fr); }

  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #050544;
    flex-direction: column;
    padding: 3rem 2rem;
    transition: left 0.3s;
    overflow-y: auto;
    gap: 1rem;
  }
  .nav-menu.open { left: 0; }
  .nav-menu a { font-size: 1.8rem; padding: 1rem 0; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    padding-left: 2rem;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .header-cta { display: none; }
  .header-cta.mobile-show { display: flex; margin-top: 2rem; }
}

@media (max-width: 767px) {
  html { font-size: 55%; }
  .hero { min-height: auto; padding: 10rem 0 4rem; }
  .hero-content h1 { font-size: 3.1rem; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100% - 2rem); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-cat-grid { grid-template-columns: 1fr; }
  .subcategory-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 12rem 0 3rem; }
  .page-header h1 { font-size: 3rem; }
  .section-title h2 { font-size: 3rem; }
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #FFD700;
  color: #050544;
  border: none;
  border-radius: 50%;
  font-size: 2.4rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s;
}
.back-to-top.show {
  display: flex;
}
.back-to-top:hover {
  background: #e6c200;
}

/* === FORM SUCCESS MESSAGE === */
.form-success {
  background: #d4edda;
  color: #155724;
  padding: 1.5rem;
  border-radius: 5px;
  margin-bottom: 2rem;
  display: none;
}
.form-success.show { display: block; }
