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

@font-face {
  font-family: "Baskerville";
  src: url("../fonts/baskerville-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskerville";
  src: url("../fonts/baskerville-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Header */
.header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  top: 0;
  z-index: 1000;
}

/* Top Banner */
.top-banner {
  background-color: #f8f8f8;
  padding: 12px 0;
  text-align: center;
  font-size: 12px;
  color: #333;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e0e0e0;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-item {
  flex: 1;
  text-align: center;
}

.banner-title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-size: 11px;
}

.banner-subtitle {
  font-size: 10px;
  color: #666;
  font-weight: 400;
}

/* Main Navigation */
.main-nav {
  padding: 0;
  background: #fff;
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  display: block;
  height: 73px;
  text-decoration: none;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #000000;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.nav-menu a:hover {
  color: #000;
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-icons i {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-icons i:hover {
  color: #000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background-color: #333;
  margin: 2px 0;
  transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 496px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
  z-index: 10;
}

.slide-title {
  font-family: "Times New Roman", serif;
  font-size: 48px;
  font-style: italic;
  margin-bottom: 30px;
  letter-spacing: 3px;
}

.slide-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #000;
}

.slide-button:hover {
  background-color: transparent;
  color: #000;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-dot.active {
  background-color: #fff;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 1);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

.service-info {
  margin-top: 30px;
  background-color: #f8f8f8;
  padding: 20px 0;
}

.service-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.service-carousel {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.service-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.service-item.mobile-hidden {
  display: none;
}

.service-title {
  font-size: 17px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.5px;
  line-height: 23px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.service-subtitle {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: center;
}

.service-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-dot.active {
  background-color: #000;
}

/* Cartier Watches Section */
.cartier-watches-section {
  padding: 80px 0;
  background-color: #fff;
}

.cartier-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: "Baskerville", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.375rem;
  line-height: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.section-description {
  max-width: 900px;
  margin: 0 auto;
}

p {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: center;
}

.category-section {
  margin-top: 60px;
}

.category-title {
  font-family: "Baskerville", serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.25rem;
  text-align: center;
  text-align: left;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.category-item {
  text-align: left;
  cursor: pointer !important;
}

.category-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 0;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
  transform: scale(1.05);
}

.category-name {
  font-family: "Jost", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-link {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  color: #000000;
  text-align: left;
  text-decoration: underline !important;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.category-link:hover {
  color: #000;
}

/* Collections Section */
.collections-section {
  padding: 60px 0;
  background-color: #fff;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.collection-item {
  display: flex;
  flex-direction: column;
  cursor: pointer !important;
}

.collection-image {
  width: 100%;
  overflow: hidden;
  cursor: pointer !important;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.collection-item:hover .collection-image img {
  transform: scale(1.02);
}

.collection-content {
  padding: 40px 30px;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.collection-title {
  font-family: "Jost", serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collection-description {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.375rem;
  color: #000;
}

.collection-link {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  color: #000000;
  text-decoration: underline !important;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.collection-link:hover {
  color: #000;
}

/* Shop by Collection Section */
.shop-collection-section {
  padding: 80px 0;
  background-color: #fff;
}

.collection-main-title {
  font-family: "Baskerville", serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.25rem;
  text-align: center;
  text-align: left;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.collection-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.collection-row:last-child {
  margin-bottom: 0;
}

.collection-product {
  text-align: left;
  cursor: pointer !important;
}

.collection-product-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin-bottom: 25px;
  background-color: #f5f5f5;
}

.collection-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer !important;
}

.collection-product:hover .collection-product-image img {
  transform: scale(1.05);
  cursor: pointer !important;
}

.collection-product-title {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collection-product-description {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #000;
  margin-bottom: 10px;
  text-align: left;
}

.collection-product-link {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  color: #000000;
  text-align: left;
  text-decoration: underline !important;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.collection-product-link:hover {
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    gap: 15px;
  }

  .service-container {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }

  .service-carousel {
    position: relative;
    overflow: hidden;
  }

  /* .service-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease-in-out;
  } */

  .service-item.active {
    opacity: 1;
    transform: translateX(0);
  }

  .service-dots {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 170px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 20px;
    z-index: 9999;

  }

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

  .mobile-menu-toggle {
    display: flex;
  }

  .logo {
    height: 30px;
  }

  .hero-slider {
    height: 300px;
  }

  .slide-title {
    font-size: 32px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .slider-arrow.prev {
    left: 15px;
  }

  .slider-arrow.next {
    right: 15px;
  }

  .banner-title {
    font-size: 10px;
  }

  .banner-subtitle {
    font-size: 9px;
  }

  /* Cartier Watches Responsive */
  .cartier-watches-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .section-description p {
    font-weight: 400;
    letter-spacing: 0;
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #000;
  }

  .category-title {
    margin-bottom: 20px;
  }

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

  .category-image {
    height: 280px;
  }

  /* Collections Responsive */
  .collections-section {
    padding: 60px 0;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collection-image {
    height: 360px;
  }

  .collection-content {
    padding: 30px 20px;
    min-height: 160px;
  }

  .collection-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .collection-description {
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 20px;
  }

  /* Shop Collection Responsive */
  .shop-collection-section {
    padding: 60px 0;
  }

  .collection-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }

  .collection-product-image {
    height: 280px;
  }

  .collection-product-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

}
@media (max-width: 480px) {
  .top-banner {
    font-size: 10px;
    padding: 8px 0;
  }

  .nav-container {
    padding: 10px 15px;
  }

  .logo {
    height: 73px;
  }

  .hero-slider {
    height: 250px;
  }

  .slide-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .slide-button {
    padding: 10px 25px;
    font-size: 11px;
  }

  /* Cartier Watches Mobile */
  .cartier-watches-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description p {
    font-weight: 400;
    letter-spacing: 0;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #000;
    margin-bottom: 15px;
  }

  .category-title {
    margin-bottom: 15px;
    text-align: left;
  }

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

  .category-image {
    height: 240px;
  }

  .category-name {
    font-size: 17px;
    margin-bottom: 0px;
  }

  .category-link {
    font-size: 15px;
  }

  /* Collections Mobile */
  .collections-section {
    padding: 40px 0;
  }

  .collection-image {
    height: 300px;
  }

  .collection-content {
    padding: 25px 15px;
    min-height: 140px;
  }

  .collection-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .collection-description {
    font-size: 1rem;
    line-height: 1.375rem;
    margin-bottom: 15px;
  }

  .collection-link {
    font-size: 1rem;
  }

  /* Shop Collection Mobile */
  .shop-collection-section {
    padding: 40px 0;
  }

  .collection-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .collection-product-image {
    height: 300px;
  }

  .collection-product-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* Cartier Care Mobile */
  .cartier-care-section {
    padding: 40px 20px !important;
  }

  .cartier-care-section:hover {
    cursor: pointer;
  }

  .cartier-care-content {
    background-image: url('../images/cartier-care-mobile.jpg') !important;
    padding: 0 15px !important;
    margin: 0 15px;
  }

  .cartier-care-text {
    padding: 300px 0px 30px 20px !important;
    text-align: left;
    max-width: 100%;
  }

  .cartier-care-title {
    font-size: 35px !important;
    margin-bottom: 20px;
  }

  .cartier-care-description {
    font-size: 1rem !important;
    line-height: 1.3rem !important;
    margin-bottom: 25px;
  }

  .cartier-care-button {
    font-size: 12px;
    padding: 12px 20px;
  }
}

/* Cartier Care Section */
.cartier-care-section {
  padding: 80px 0;
  cursor: pointer;
}

.cartier-care-content {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 100px;
  min-height: 400px;
  background-image: url('../images/cartier-care-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  border: 4px solid #a30101;
}

.cartier-care-text {
  max-width: 500px;
  padding: 60px 0;
  color: #333;
}

.cartier-care-title {
  font-family: "Baskerville", serif;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.cartier-care-description {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
  text-align: left;
  color: #000000;
}

.cartier-care-button {
  display: inline-block;
  background-color: #a30101;
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.cartier-care-button:hover {
  background-color: #8B0101;
  color: white !important;
}

/* Bestsellers Section */
.bestsellers-section {
  padding: 60px 0;
}

.bestsellers-title {
  font-family: "Baskerville", serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.25rem;
  text-align: left;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.bestseller-product {
  background: white;
  text-align: left;
  transition: transform 0.3s ease;
  cursor: pointer !important;
}

.bestseller-product:hover {
  transform: translateY(-5px);
}

.bestseller-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 20px;
}

.bestseller-image img {
  width: 100%;
  height: 100%;
  filter: brightness(.97);
  object-fit: cover;
}

.bestseller-brand {
  font-family: "Jost", sans-serif;
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 8px;
}

.bestseller-name {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  margin-bottom: 12px;
}

.bestseller-price {
  font-family: "Jost", sans-serif;
  font-size: 1.063rem;
  font-weight: 600;
  color: #000;
}

.bestsellers-view-all {
  text-align: left;
}

.view-all-button {
  display: inline-block;
  background-color: #000;
  color: white;
  border: 2px solid #ffffff;
  text-decoration: none;
  padding: 15px 50px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.view-all-button:hover {
  border: 2px solid #000;
  color: #000;
  background-color: white;;

}

/* Bestsellers Mobile Styles */
@media (max-width: 768px) {
  .bestsellers-section {
    padding: 40px 0;
  }

  .bestsellers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .bestseller-image {
    height: 250px;
  }

  .view-all-button {
    padding: 12px 30px;
    font-size: 11px;
  }
}

/* Showroom Section */
.showroom-section {
  padding: 0;
  position: relative;
}

.showroom-content {
  width: 100%;
  max-width: 1570px;
  margin: 0 auto;
  padding: 0 40px;
  height: 800px;
  background-image: url('../images/cartier-maidan.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 0px;
}

.showroom-text {
  width: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin: 0;
}

.showroom-title {
  font-family: "Jost", serif;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
}

.showroom-description {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #000000;
}

.showroom-button {
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  border-bottom: 1px solid #000;
  transition: all 0.3s ease;
}

.showroom-button:hover {
  color: #a30101;
  border-bottom-color: #a30101;
}

/* Showroom Mobile Styles */
@media (max-width: 768px) {
  .showroom-section {
    padding: 15px;
  }

  .showroom-content {
    background-image: url('../images/cartier-maidan.png');
    background-size: cover;
    width: 100%;
    padding: 0 15px;
    height: 400px;
  }

  .showroom-text {
    padding: 25px 5px;
    background: rgba(255, 255, 255, 0.95);
  }
}

/* Video Section */
.video-section {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.video-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.cartier-video {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Video Mobile Styles */
@media (max-width: 768px) {
  .video-container {
    padding: 0 15px;
  }

  .cartier-video {
    height: 300px;
  }
}

/* About Section */
.about-section {
  padding: 60px 0;
}

.about-content {
  margin-bottom: 40px;
  text-align: left;
}

.about-content:last-child {
  margin-bottom: 0;
}

.about-title {
  font-family: "Jost", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-text {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  color: #000000;
}

.about-text a {
  color: #a30101;
  text-decoration: none;
  border-bottom: 1px solid #a30101;
  transition: all 0.3s ease;
}

.about-text a:hover {
  color: #000;
  border-bottom-color: #000;
}

.about-list {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  padding-left: 20px;
}

.about-list li {
  margin-bottom: 3px;
}

/* About Mobile Styles */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .about-content {
    margin-bottom: 30px;
  }
}
