/* ==========================================================================
   POLOT 1882 - Flagship Dark Luxury Microsite Styles
   Background: #080403 | Gold: #faf8d9 | Text: #F5F5F5
   Wholesale Distributor: NAVODA HOLDING (PVT) LTD
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

body.polot-body {
  background-color: #080403;
  color: #F5F5F5;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.polot-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 1000;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(250, 248, 217, 0.15);
  background: rgba(8, 4, 3, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.polot-brand-logo {
  height: 92px;
  width: auto;
  object-fit: contain;
}

.polot-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F5F5F5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.polot-nav-link:hover,
.polot-nav-link.active {
  color: #faf8d9;
}

.distributor-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 217, 0.8);
  border: 1px solid rgba(250, 248, 217, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  background: rgba(250, 248, 217, 0.05);
}

/* Polot Hero Section */
.polot-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  background: radial-gradient(circle at 50% 30%, rgba(250, 248, 217, 0.08) 0%, rgba(8, 4, 3, 1) 70%);
}

.polot-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.2vw, 4.0rem);
  font-weight: 400;
  line-height: 1.08;
  color: #F5F5F5;
  margin-bottom: 1.5rem;
}

.polot-hero-title span {
  font-style: italic;
  color: #faf8d9;
  display: inline;
}

.polot-gold-text {
  color: #faf8d9;
}

.polot-card {
  background: rgba(18, 12, 10, 0.7);
  border: 1px solid rgba(250, 248, 217, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.polot-card:hover {
  transform: translateY(-8px);
  border-color: #faf8d9;
  box-shadow: 0 20px 45px rgba(250, 248, 217, 0.2);
}

/* Product Showcase Grid */
.product-item-card {
  background: rgba(25, 18, 15, 0.8);
  border: 1px solid rgba(250, 248, 217, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-item-card:hover {
  border-color: #faf8d9;
  transform: translateY(-5px);
}

.product-img-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-item-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 1.8rem;
}

.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #F5F5F5;
  margin-bottom: 0.5rem;
}

.product-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #faf8d9;
  margin-bottom: 0.8rem;
}

.polot-footer {
  background: #040201;
  border-top: 1px solid rgba(250, 248, 217, 0.2);
  padding: 4rem 0 2.5rem;
}

/* Polot Dark Luxury Forms */
.polot-luxury-form-card {
  background: rgba(18, 12, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(250, 248, 217, 0.2);
  border-top: 4px solid #faf8d9;
  border-radius: 8px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  width: 100%;
}

.polot-form-group {
  margin-bottom: 1.8rem;
}

.polot-form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
  color: #faf8d9;
}

.polot-input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.polot-input-icon-group i {
  position: absolute;
  left: 1.25rem;
  color: #faf8d9;
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

.polot-input-icon-group .form-input,
.polot-input-icon-group .form-select {
  padding-left: 3rem !important;
}

.polot-input-icon-group .form-input:focus ~ i,
.polot-input-icon-group .form-select:focus ~ i {
  color: #fffef2;
}

.polot-luxury-form-card .form-input,
.polot-luxury-form-card .form-select,
.polot-luxury-form-card .polot-textarea {
  width: 100%;
  padding: 1.05rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1px solid rgba(250, 248, 217, 0.2) !important;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.04) !important;
  color: #F5F5F5 !important;
  transition: all 0.25s ease;
}

.polot-luxury-form-card .form-input:focus,
.polot-luxury-form-card .form-select:focus,
.polot-luxury-form-card .polot-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: #faf8d9 !important;
  box-shadow: 0 0 0 4px rgba(250, 248, 217, 0.15);
}

.form-wrapper-50 {
  width: 100%;
}

@media (min-width: 993px) {
  .form-wrapper-50 {
    width: 50%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 992px) {
  .polot-luxury-form-card {
    padding: 2.5rem 1.8rem;
  }
}

@media (max-width: 576px) {
  .polot-luxury-form-card {
    padding: 2rem 1.25rem;
  }
}

/* Polot Menu Links Styles */
.polot-nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 992px) {
  .polot-navbar {
    height: 90px;
  }
  .polot-brand-logo {
    height: 58px;
  }
  .distributor-tag {
    display: none;
  }
  .polot-nav-menu {
    gap: 1.2rem;
  }
  .polot-nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 600px) {
  .polot-nav-menu {
    display: none !important;
  }
}

/* Polot Hero Slider Architecture */
.polot-hero-slider-section {
  position: relative;
  min-height: 90vh;
  background-color: #080403;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(250, 248, 217, 0.15);
}

.polot-slider-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.polot-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 150px;
  padding-bottom: 4rem;
}

.polot-slide.active {
  display: block;
  opacity: 1;
}

/* Polot Slider Controls (Vertical Left-Middle on Desktop, Horizontal Bottom-Center on Mobile) */
.polot-slider-controls {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(13, 7, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.2rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(250, 248, 217, 0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.polot-slider-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(250, 248, 217, 0.3);
  color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.polot-slider-arrow.polot-arrow-prev i,
.polot-slider-arrow.polot-arrow-next i {
  transform: rotate(90deg);
}

.polot-slider-arrow:hover {
  background-color: #faf8d9;
  color: #080403;
  border-color: #faf8d9;
}

.polot-slider-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.polot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250, 248, 217, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.polot-dot.active {
  width: 8px;
  height: 24px;
  border-radius: 20px;
  background-color: #faf8d9;
}

@media (max-width: 992px) {
  .polot-hero-slider-section {
    min-height: auto;
  }
  .polot-slide {
    padding-top: 120px;
    padding-bottom: 5rem;
  }
  .polot-slider-controls {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 1.5rem;
    transform: translateX(-50%);
    flex-direction: row;
    padding: 0.5rem 1rem;
  }
  .polot-slider-arrow.polot-arrow-prev i,
  .polot-slider-arrow.polot-arrow-next i {
    transform: none;
  }
  .polot-slider-dots {
    flex-direction: row;
  }
  .polot-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 20px;
  }
  .polot-slide .grid-editorial .image-wrapper {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

/* Product Line Element Showcase */
.product-line-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.product-line-card {
  text-decoration: none;
  display: block;
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 217, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-line-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 4, 3, 0.2) 0%, rgba(8, 4, 3, 0.85) 100%);
  z-index: 2;
  transition: all 0.4s ease;
}

.product-line-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.product-line-card:hover {
  transform: translateY(-5px);
  border-color: #faf8d9;
  box-shadow: 0 15px 30px rgba(250, 248, 217, 0.15);
}

.product-line-card:hover .product-line-bg {
  transform: scale(1.08);
}

.product-line-card:hover::before {
  background: linear-gradient(180deg, rgba(8, 4, 3, 0.1) 0%, rgba(8, 4, 3, 0.75) 100%);
}

.product-line-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem;
  z-index: 3;
}

.line-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #F5F5F5;
  margin: 0;
  transition: color 0.3s ease;
  font-weight: 600;
  line-height: 1.25;
}

.product-line-card:hover .line-title {
  color: #faf8d9;
}

@media (max-width: 992px) {
  .product-line-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .product-line-card {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .product-line-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-line-card {
    height: 220px;
  }
}

/* Recipe Detail Responsive Layout Classes */
.recipe-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.related-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  justify-items: center;
}

@media (max-width: 992px) {
  .recipe-detail-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 480px) {
  .related-products-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Dark Luxury Button Helper */
.btn-dark-luxury {
  background-color: #080403 !important;
  color: #faf8d9 !important;
  border: 1px solid #faf8d9 !important;
  transition: all 0.3s ease !important;
}

.btn-dark-luxury:hover {
  background-color: #faf8d9 !important;
  color: #080403 !important;
  border-color: #080403 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
