/* Koskii / Gokwik Pixel-Perfect Modal Styles with FontAwesome & Matching Height */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.gokwik-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.gokwik-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.gokwik-modal-card {
    background: #ffffff;
    width: 420px;
    max-width: 94vw;
    height: 640px;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.gokwik-modal-backdrop.active .gokwik-modal-card {
    transform: translateY(0) scale(1);
}

/* Header */
.gokwik-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    position: relative;
    flex-shrink: 0;
}
.gokwik-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gokwik-back-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #1e293b;
    padding: 4px 6px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}
.gokwik-back-btn:hover {
    color: #000;
}
.gokwik-brand-logo {
    height: 24px;
    object-fit: contain;
}
.gokwik-header-right-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.2s;
}
.gokwik-header-right-toggle:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Item Breakdown Accordion (Image 3) */
.gokwik-items-accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 0 18px;
    flex-shrink: 0;
}
.gokwik-items-accordion.open {
    max-height: 380px;
    overflow-y: auto;
    padding: 14px 18px;
}
.gokwik-accordion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f8fafc;
}
.gokwik-accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 8px;
}
.gokwik-accordion-img {
    width: 62px;
    height: 76px;
    object-fit: cover;
    border-radius: 8px;
    background: #f1f5f9;
}
.gokwik-accordion-info {
    flex: 1;
    min-width: 0;
}
.gokwik-accordion-name {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gokwik-accordion-meta {
    font-size: 11.5px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.gokwik-delivery-pill {
    display: inline-block;
    background: #f1f5f9;
    color: #334155;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}
.gokwik-accordion-price {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}
.gokwik-accordion-summary {
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 10px;
    font-size: 13px;
    border: 1px solid #f1f5f9;
}
.gokwik-accordion-sum-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    color: #475569;
}
.gokwik-accordion-sum-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
    padding-top: 8px;
    margin-top: 8px;
}

/* Modal Body */
.gokwik-modal-body {
    padding: 18px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

/* Coupon Card (Image 1) */
.gokwik-coupon-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.gokwik-coupon-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 14px;
    background: #ffffff;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}
.gokwik-coupon-input-wrap:focus-within {
    border-color: #0f172a;
}
.gokwik-coupon-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 13.5px;
    color: #0f172a;
    background: transparent;
    font-family: inherit;
}
.gokwik-coupon-apply-txt-btn {
    background: none;
    border: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    padding: 0 0 0 8px;
}
.gokwik-coupon-avail-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #1e293b;
}
.gokwik-coupon-avail-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.gokwik-badge-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.gokwik-coupon-view-all {
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
    font-size: 13.5px;
}
.gokwik-coupon-view-all:hover {
    text-decoration: underline;
}

/* Login Card (Image 1) */
.gokwik-login-card {
    border: 1px solid #f5ebd6;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #ffffff;
}
.gokwik-login-banner {
    background: #fdf6e7;
    color: #926c15;
    font-size: 12.5px;
    font-weight: 600;
    text-align: center;
    padding: 8px 12px;
    letter-spacing: 0.2px;
}
.gokwik-login-content {
    padding: 16px;
}
.gokwik-login-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}
.gokwik-mobile-field-wrap {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 8px 14px;
    background: #ffffff;
    transition: border-color 0.2s;
}
.gokwik-mobile-field-wrap:focus-within {
    border-color: #0f172a;
}
.gokwik-mobile-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 2px;
}
.gokwik-mobile-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}
.gokwik-mobile-input {
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    width: 100%;
    letter-spacing: 0.5px;
    background: transparent;
    font-family: inherit;
}

/* Badges & Trust */
.gokwik-powered-by {
    text-align: center;
    margin: 12px 0 6px 0;
}
.gokwik-powered-lbl {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gokwik-powered-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.gokwik-trust-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

/* Modal Footer */
.gokwik-modal-footer {
    padding: 16px 18px;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
    flex-shrink: 0;
}
.gokwik-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #334155;
    font-weight: 500;
    margin-bottom: 14px;
    cursor: pointer;
    user-select: none;
}
.gokwik-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #000000;
    cursor: pointer;
}
.gokwik-continue-btn {
    width: 100%;
    background: #000000;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    font-family: inherit;
}
.gokwik-continue-btn:hover {
    background: #1e293b;
}

.gokwik-terms-text {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    margin-top: 10px;
}
.gokwik-terms-text a {
    color: #475569;
    text-decoration: underline;
}

/* Bottom Sheet Coupon Modal (Image 2) */
.gokwik-coupon-sheet {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 88%;
    background: #ffffff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    z-index: 30;
    transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.gokwik-coupon-sheet.active {
    bottom: 0;
}
.gokwik-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
}
.gokwik-sheet-close-btn {
    background: #f1f5f9;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
}
.gokwik-sheet-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
}
.gokwik-tab-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    cursor: pointer;
}
.gokwik-tab-btn.active {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}
.gokwik-sheet-body {
    padding: 16px 18px;
    overflow-y: auto;
    flex: 1;
}
.gokwik-coupon-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.gokwik-coupon-code-badge {
    display: inline-block;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #0f172a;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 4px;
}
.gokwik-coupon-apply-btn {
    background: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
}
.gokwik-coupon-apply-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* Floating OTP Card & Overlay (Image media_1787050147815.png) */
.gokwik-otp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gokwik-otp-overlay.active {
    opacity: 1;
    visibility: visible;
}
.gokwik-otp-card-floating {
    background: #ffffff;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.gokwik-otp-overlay.active .gokwik-otp-card-floating {
    transform: translateY(0);
}
.gokwik-otp-close-circle {
    position: absolute;
    top: -42px;
    width: 34px;
    height: 34px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
}
.gokwik-otp-top-banner {
    background: linear-gradient(180deg, #fef3c7 0%, #fffbeb 100%);
    width: 100%;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}
.gokwik-otp-gold-lock {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fde68a;
    color: #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(180, 83, 9, 0.15);
}
.gokwik-otp-pattern-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    color: #10b981;
    font-size: 14px;
}
.gokwik-otp-title-text {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
    text-align: center;
}
.gokwik-otp-sub-text {
    font-size: 12.5px;
    color: #64748b;
    text-align: center;
}
.gokwik-otp-verify-lbl {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    text-align: center;
}
.gokwik-otp-target-lbl {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 18px;
    text-align: center;
}
.gokwik-otp-target-lbl strong {
    color: #0f172a;
}
.gokwik-otp-edit-link {
    color: #000000;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 4px;
}
.gokwik-otp-boxes {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}
.gokwik-otp-input {
    width: 48px;
    height: 52px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    background: #ffffff;
}
.gokwik-otp-input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}
.gokwik-otp-trouble-text {
    font-size: 12px;
    color: #b45309;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.35;
}
.gokwik-otp-resend-btn {
    width: 100%;
    background: #000000;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 13.5px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-bottom: 12px;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.gokwik-otp-skip-link {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 12px;
}

/* ==========================================================================
   CUSTOMER STORIES SLIDER (KOSKII / FABRINO CARD SLIDER DESIGN)
   ========================================================================== */
.customer-stories-slider {
  margin: 25px 0 10px 0;
}

.customer-story-item {
  padding: 8px 10px;
  outline: none;
}

.customer-story-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  height: 480px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.customer-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
  border-color: #cbd5e1;
}

.customer-story-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  flex-shrink: 0;
}

.customer-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.customer-story-card:hover .customer-story-img {
  transform: scale(1.04);
}

.customer-story-stars-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 12px;
  color: #fbbf24;
  font-size: 11px;
  letter-spacing: 1px;
  display: flex;
  gap: 2px;
  z-index: 2;
}

.customer-story-name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin: 14px 0 8px 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.customer-story-text {
  font-size: 13px;
  color: #475569;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 78px;
  font-weight: 400;
}

.customer-story-product-name {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  text-decoration: none;
  font-weight: 500;
}

.customer-story-product-name:hover {
  color: #0f172a;
  text-decoration: underline;
}

.customer-story-verified {
  font-size: 12px;
  font-weight: 600;
  color: #166534;
  text-align: center;
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.customer-story-verified i {
  font-size: 13px;
  color: #166534;
}

/* Slick Arrows Styling for Customer Stories */
.customer-stories-slider .slick-prev,
.customer-stories-slider .slick-next {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.customer-stories-slider .slick-prev:before,
.customer-stories-slider .slick-next:before {
  color: #0f172a;
  font-size: 20px;
  opacity: 0.9;
  font-family: 'FontAwesome';
}

.customer-stories-slider .slick-prev:before {
  content: '\f104';
}

.customer-stories-slider .slick-next:before {
  content: '\f105';
}

.customer-stories-slider .slick-prev {
  left: -15px;
}

.customer-stories-slider .slick-next {
  right: -15px;
}

.customer-stories-slider .slick-prev:hover,
.customer-stories-slider .slick-next:hover {
  background: #0f172a;
  border-color: #0f172a;
}

.customer-stories-slider .slick-prev:hover:before,
.customer-stories-slider .slick-next:hover:before {
  color: #ffffff;
}

/* ==========================================================================
   PRODUCT DETAILS PAGE - CUSTOMER REVIEWS & FORM (#00305c THEME)
   ========================================================================== */
.product-customer-reviews-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #eaeaea;
}

.product-reviews-main-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #7b181b;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
  
}

.product-reviews-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
  flex-wrap: wrap;
}

.reviews-summary-score-col {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.reviews-summary-stars {
      color: #7b181b;
    font-size: 22px;
    margin-bottom: 4px;
    letter-spacing: 4px;
}

.reviews-summary-score-text {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.reviews-summary-based-text {
  font-size: 12px;
  color: #666666;
}

.reviews-summary-based-text span {
  color: #2e7d32;
  font-weight: 700;
}

.reviews-summary-bars-col {
  flex: 2;
  min-width: 280px;
  max-width: 450px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  font-size: 12px;
}

.rating-bar-stars {
  color: #7b181b;
  width: 75px;
  font-size: 11px;
  text-align: right;
  flex-shrink: 0;
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #7b181b;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.rating-bar-count {
  width: 25px;
  color: #666;
  font-size: 12px;
  text-align: left;
  flex-shrink: 0;
}

.reviews-summary-action-col {
  text-align: right;
  flex: 1;
  min-width: 180px;
}

.btn-write-review-toggle {
  background: #7b181b;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-transform: none;
}

.btn-write-review-toggle:hover {
  background: #001f3f;
  box-shadow: 0 4px 12px rgba(0, 48, 92, 0.25);
}

.btn-write-review-toggle.active-cancel {
  background: #d32f2f;
}

.btn-write-review-toggle.active-cancel:hover {
  background: #b71c1c;
}

/* Review Form Container */
.product-review-form-wrapper {
  max-width: 680px;
  margin: 0 auto 35px auto;
  background: #ffffff;
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-review-form-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
}

.review-form-group {
  margin-bottom: 18px;
  text-align: center;
}

.review-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-align: center;
}

.review-interactive-stars {
  font-size: 28px;
  color: #d1d5db;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

.review-interactive-stars .fa-star {
  color: #7b181b;
  transition: transform 0.15s ease;
}

.review-interactive-stars .fa-star-o {
  color: #cbd5e1;
}

.review-interactive-stars i:hover {
  transform: scale(1.15);
}

.review-form-input,
.review-form-textarea,
.review-form-select {
  width: 100%;
  height: 48px !important;
  line-height: 1.5 !important;
  padding: 10px 14px !important;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 14px !important;
  color: #333333;
  outline: none;
  transition: border-color 0.2s;
  background: #ffffff;
  box-sizing: border-box !important;
  vertical-align: middle !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
}

.review-form-textarea {
  height: auto !important;
  min-height: 100px;
}

.review-form-input:focus,
.review-form-textarea:focus,
.review-form-select:focus {
  border-color: #00305c;
  box-shadow: 0 0 0 3px rgba(0, 48, 92, 0.1);
}

/* Upload & Image Preview Box */
.review-upload-flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 6px;
}

.review-upload-btn-box {
  width: 90px;
  height: 90px;
  border: 2px dashed #cccccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.review-upload-btn-box:hover {
  border-color: #00305c;
  background: #f0f4f8;
}

.review-upload-btn-box i {
  font-size: 28px;
  color: #888888;
}

.review-img-preview-box {
  width: 90px;
  height: 90px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: none;
}

.review-img-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.review-img-preview-box .remove-preview-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
}

.review-subtext-note {
  font-size: 11px;
  color: #888888;
  text-align: center;
  margin-top: 6px;
}

.review-form-buttons-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn-cancel-form-outline {
  background: #ffffff;
  color: #7b181b;
  border: 1.5px solid #7b181b;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel-form-outline:hover {
  background: #f0f4f8;
}

.btn-submit-form-solid {
  background: #7b181b;
  color: #ffffff;
  border: none;
  padding: 10px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-submit-form-solid:hover {
  background: #001f3f;
  box-shadow: 0 4px 12px rgba(0, 48, 92, 0.25);
}

/* Submitted Reviews Item List (Image 1 style) */
.product-reviews-list-container {
  margin-top: 20px;
}

.product-review-single-item {
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.product-review-single-item:last-child {
  border-bottom: none;
}

.review-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-item-stars {
  color: #7b181b;
  font-size: 14px;
}

.review-item-date {
  font-size: 12px;
  color: #888888;
}

.review-item-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.review-item-user-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f4f8;
  color: #7b181b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.review-item-user-name {
  font-size: 15px;
  font-weight: 700;
  color: #7b181b;
}

.review-item-location {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.review-item-content-text {
  font-size: 13.5px;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 10px;
}

.review-item-photo-thumb {
  width: 90px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #dddddd;
  margin-top: 6px;
}
