
/* ==========================================================================
   STANDARD GIFTS - UEESHOP PRODUCT DETAIL PAGE (PDP) SCOPED STYLES
   Namespace: .sp-bottle-
   Container Max-width: 1000px (Optimized for Product Detail Tab / Description)
   ========================================================================== */
.sp-bottle-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 5px 40px;
  box-sizing: border-box;
}

.sp-bottle-container *,
.sp-bottle-container *::before,
.sp-bottle-container *::after {
  box-sizing: inherit;
}

/* Header & Intro */
.sp-bottle-header {
  text-align: center;
  padding: 24px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 35px;
}

.sp-bottle-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d97706;
  background: #fef3c7;
  padding: 4px 12px;
  border-radius: 16px;
  margin-bottom: 10px;
}

.sp-bottle-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.3;
}

.sp-bottle-subtitle {
  font-size: 14px;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.sp-bottle-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-bottle-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 4px 10px;
  border-radius: 6px;
}

.sp-bottle-tag svg {
  margin-right: 5px;
  color: #d97706;
}

/* Section Titles */
.sp-bottle-sec-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin: 40px 0 25px;
  position: relative;
  padding-bottom: 10px;
}

.sp-bottle-sec-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: #d97706;
  border-radius: 2px;
}

/* Feature Rows (Alternating Layout) */
.sp-bottle-feature-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  padding: 18px;
}

.sp-bottle-feature-row.reverse {
  flex-direction: row-reverse;
}

.sp-bottle-feature-img {
  flex: 1 1 45%;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
  line-height: 0;
}

.sp-bottle-feature-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sp-bottle-feature-row:hover .sp-bottle-feature-img img {
  transform: scale(1.03);
}

.sp-bottle-feature-text {
  flex: 1 1 55%;
  padding: 10px 15px;
}

.sp-bottle-feature-num {
  font-size: 12px;
  font-weight: 800;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.sp-bottle-feature-heading {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.35;
}

.sp-bottle-feature-desc {
  font-size: 13px;
  color: #475569;
  margin: 0 0 12px;
  line-height: 1.6;
}

.sp-bottle-feature-points {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #334155;
}

.sp-bottle-feature-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.sp-bottle-feature-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d97706;
  font-size: 11px;
}

/* Specifications Table */
.sp-bottle-table-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 35px;
  background: #ffffff;
}

.sp-bottle-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.sp-bottle-table tr:nth-child(even) {
  background: #f8fafc;
}

.sp-bottle-table th {
  width: 30%;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  padding: 12px 18px;
  border-bottom: 1px solid #e2e8f0;
}

.sp-bottle-table td {
  padding: 12px 18px;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
}

.sp-bottle-table tr:last-child th,
.sp-bottle-table tr:last-child td {
  border-bottom: none;
}

/* Use Case Grid */
.sp-bottle-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 35px;
}

.sp-bottle-use-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}

.sp-bottle-use-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.sp-bottle-use-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.sp-bottle-use-text {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* Factory Trust Banner */
.sp-bottle-trust-banner {
  background: #0f172a;
  color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.sp-bottle-trust-text h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ffffff;
}

.sp-bottle-trust-text p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.sp-bottle-trust-stats {
  display: flex;
  gap: 25px;
}

.sp-bottle-stat-box {
  text-align: center;
}

.sp-bottle-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: #fbbf24;
  display: block;
}

.sp-bottle-stat-lbl {
  font-size: 11px;
  color: #cbd5e1;
}

/* FAQ Accordion */
.sp-bottle-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #ffffff;
  overflow: hidden;
}

.sp-bottle-faq-item[open] {
  border-color: #cbd5e1;
}

.sp-bottle-faq-summary {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sp-bottle-faq-summary::-webkit-details-marker {
  display: none;
}

.sp-bottle-faq-summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: #64748b;
}

.sp-bottle-faq-item[open] .sp-bottle-faq-summary::after {
  content: "−";
}

.sp-bottle-faq-body {
  padding: 0 18px 14px;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  border-top: 1px solid #f1f5f9;
}

/* Responsive */
@media (max-width: 768px) {
  .sp-bottle-feature-row,
  .sp-bottle-feature-row.reverse {
    flex-direction: column;
    padding: 14px;
    gap: 16px;
  }
  .sp-bottle-use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-bottle-trust-banner {
    flex-direction: column;
    text-align: center;
  }
  .sp-bottle-trust-stats {
    width: 100%;
    justify-content: space-around;
  }
  .sp-bottle-table th {
    width: 38%;
    padding: 10px 12px;
  }
  .sp-bottle-table td {
    padding: 10px 12px;
  }
}
