/* 
 * Review Page Specific CSS
 * Includes styles for all conversion elements and shortcodes
 */

/* ===== Review Page Layout ===== */
.review-container {
  padding: 2rem 0;
}

.review-container .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .review-container .container {
    grid-template-columns: 2fr 1fr;
  }
}

.review-article {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
}

/* ===== Review Header ===== */
.review-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.review-breadcrumb a {
  color: #0066cc;
  text-decoration: none;
}

.review-breadcrumb a:hover {
  text-decoration: underline;
}

.review-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.2;
}

.review-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  align-items: center;
}

.star {
  color: #ffc107;
}

.star.empty {
  color: #e0e0e0;
}

.rating-value {
  font-weight: bold;
  font-size: 1.1rem;
}

.review-date {
  color: #666;
  font-size: 0.9rem;
}

/* ===== Review Gallery ===== */
.review-gallery {
  margin-bottom: 2rem;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== Review Summary ===== */
.review-summary {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  border-left: 4px solid #0066cc;
}

/* ===== Review Content ===== */
.review-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}

.review-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
  color: #222;
}

.review-content h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem;
  color: #333;
}

.review-content p {
  margin-bottom: 1rem;
}

.review-content ul, 
.review-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.review-content li {
  margin-bottom: 0.5rem;
}

.review-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.review-content blockquote {
  border-left: 4px solid #0066cc;
  padding-left: 1rem;
  margin-left: 0;
  color: #555;
  font-style: italic;
}

/* ===== Review Conclusion ===== */
.review-conclusion {
  background-color: #f7f9fd;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #4caf50;
}

.review-conclusion h2 {
  color: #2e7d32;
  margin-top: 0;
  border-bottom: none;
}

.review-author {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-style: italic;
  color: #666;
}

.author-name {
  font-weight: bold;
  color: #333;
}

/* ===== Review Sidebar ===== */
.review-sidebar {
  font-size: 0.95rem;
}

.sidebar-block {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.sidebar-block h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

/* ===== Table of Contents ===== */
.toc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.toc-list li {
  margin-bottom: 0.5rem;
}

.toc-list a {
  color: #0066cc;
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: all 0.2s ease;
}

.toc-list a:hover {
  color: #004c99;
  text-decoration: underline;
}

.toc-subitem {
  padding-left: 1rem;
}

/* ===== Related Reviews ===== */
.related-list {
  display: grid;
  gap: 1rem;
}

.related-review {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.5rem;
  align-items: start;
}

.related-review-image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 4px;
}

.related-review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-review-content h4 {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
  line-height: 1.3;
}

.related-review-content h4 a {
  color: #333;
  text-decoration: none;
}

.related-review-content h4 a:hover {
  color: #0066cc;
  text-decoration: underline;
}

.related-review-content .stars {
  transform: scale(0.8);
  transform-origin: left;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-container h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter-container p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--accent-color);
}

/* ===== Conversion Elements Styles ===== */

/* ===== Pros & Cons Box ===== */
.pros-cons-container {
  margin: 2rem 0;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
}

.pros-cons-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pros-box,
.cons-box {
  padding: 1.5rem;
  position: relative;
}

.pros-box {
  background-color: rgba(16, 185, 129, 0.05);
  border-right: 1px solid var(--border-color);
}

.cons-box {
  background-color: rgba(239, 68, 68, 0.05);
}

.pros-box h4,
.cons-box h4 {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  gap: 0.5rem;
}

.pros-box h4 svg {
  color: #10b981;
}

.cons-box h4 svg {
  color: #ef4444;
}

.pros-list,
.cons-list {
  padding-left: 0;
  margin-bottom: 0;
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.pros-list li:last-child,
.cons-list li:last-child {
  margin-bottom: 0;
}

.pros-list li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cons-list li svg {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.verdict-box {
  padding: 1.5rem;
  background-color: rgba(59, 130, 246, 0.05);
  border-top: 1px solid var(--border-color);
}

.verdict-box h4 {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary-color);
  gap: 0.5rem;
}

.verdict-box h4 svg {
  color: var(--primary-color);
}

.verdict-box p {
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

.verdict-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all 0.2s ease;
}

.verdict-cta:hover {
  background-color: var(--primary-darker);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===== CTA Buttons ===== */
.cta-container {
  margin: 2rem 0;
  text-align: center;
}

.primary-cta,
.secondary-cta,
.outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 0 0.5rem 1rem 0.5rem;
}

.primary-cta {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.primary-cta:hover {
  background-color: var(--primary-darker);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.25);
}

.secondary-cta {
  background-color: var(--accent-color);
  color: #000;
  box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
}

.secondary-cta:hover {
  background-color: #f97316;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(245, 158, 11, 0.25);
}

.outline-cta {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.outline-cta:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.cta-icon {
  font-size: 1.25rem;
}

.cta-arrow {
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.primary-cta:hover .cta-arrow,
.secondary-cta:hover .cta-arrow,
.outline-cta:hover .cta-arrow {
  transform: translateX(3px);
}

/* ===== Comparison Table ===== */
.comparison-table-container {
  margin: 2.5rem 0;
}

.comparison-table-title {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.table-responsive {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.comparison-table th {
  background-color: var(--light-gray);
  color: var(--secondary-color);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(241, 245, 249, 0.5);
}

.comparison-table .product-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.product-cell img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--border-radius);
  background-color: white;
  padding: 0.25rem;
  border: 1px solid var(--border-color);
}

.product-cell .product-title {
  font-weight: 600;
  color: var(--secondary-color);
}

.comparison-table .rating-cell {
  white-space: nowrap;
}

.comparison-table .price-cell {
  font-weight: 700;
  color: #ef4444;
  white-space: nowrap;
}

.comparison-table .button-cell {
  text-align: center;
}

.comparison-table .affiliate-button {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

/* ===== Social Proof Elements ===== */
.social-proof-container {
  margin: 2rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.social-proof-container.notification-type {
  max-width: 350px;
}

.social-proof-notification {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--background-color);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--accent-color);
}

.notification-icon {
  color: var(--accent-color);
  background-color: rgba(245, 158, 11, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-content {
  flex: 1;
}

.notification-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.notification-content .time-ago {
  font-size: 0.85rem;
  color: var(--light-text);
  display: block;
  margin-top: 0.25rem;
}

.social-proof-container.count-type {
  background-color: var(--background-color);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.social-proof-count {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.count-icon {
  color: var(--primary-color);
  background-color: rgba(59, 130, 246, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.count-content {
  flex: 1;
}

.count-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== Urgency Elements ===== */
.urgency-container {
  margin: 2rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.urgency-container.countdown-type {
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  text-align: center;
  border-top: 4px solid var(--accent-color);
}

.urgency-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.urgency-icon {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.urgency-message {
  margin-bottom: 1rem;
}

.urgency-message p {
  margin: 0 0 1rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--light-gray);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  min-width: 65px;
}

.countdown-item span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--light-text);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.urgency-container.stock-type {
  padding: 1.25rem;
  background-color: rgba(239, 68, 68, 0.05);
  border-left: 4px solid #ef4444;
}

.urgency-container.stock-type .urgency-content {
  flex-direction: row;
  align-items: flex-start;
}

.urgency-container.stock-type .urgency-icon {
  margin-bottom: 0;
  margin-right: 1rem;
  color: #ef4444;
}

.stock-meter {
  height: 6px;
  background-color: rgba(239, 68, 68, 0.2);
  border-radius: 3px;
  margin-top: 0.75rem;
  overflow: hidden;
}

.stock-level {
  height: 100%;
  background-color: #ef4444;
  border-radius: 3px;
}

/* Media Queries for Review Page */
@media (max-width: 992px) {
  .review-container .container {
    grid-template-columns: 1fr;
  }
  
  .review-sidebar {
    margin-top: 2rem;
  }
  
  .pros-cons-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .review-title {
    font-size: 1.75rem;
  }
  
  .review-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .review-date {
    margin-top: 0.5rem;
  }
  
  .merchant-options.grid-style {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .review-article {
    padding: 1.5rem;
  }
  
  .review-title {
    font-size: 1.5rem;
  }
  
  .stars {
    font-size: 1.25rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: var(--border-radius);
  }
  
  .newsletter-form button {
    margin-top: 0.5rem;
  }
}

/* Loading & Error states */
.loading-indicator {
  text-align: center;
  padding: 2rem;
  font-size: 1.2rem;
  color: #666;
}

.data-load-error {
  text-align: center;
  padding: 2rem;
  background-color: #fff5f5;
  border: 1px solid #ffcccc;
  border-radius: 5px;
  color: #cc0000;
}

/* Shortcode styling */
.sc-pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .sc-pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.sc-pros,
.sc-cons {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem;
}

.sc-pros {
  border-top: 3px solid #4caf50;
}

.sc-cons {
  border-top: 3px solid #f44336;
}

.sc-pros h3,
.sc-cons h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.sc-pros h3::before,
.sc-cons h3::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}

.sc-pros h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234caf50'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.sc-cons h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f44336'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}

.sc-pros ul,
.sc-cons ul {
  margin-bottom: 0;
}

/* Price Alert Shortcode */
.sc-price-alert {
  background-color: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.sc-price-alert h3 {
  margin-top: 0;
  color: #ff6f00;
  display: flex;
  align-items: center;
}

.sc-price-alert h3::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6f00'%3E%3Cpath d='M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.sc-price-alert-form {
  margin-top: 1rem;
}

.sc-price-alert-form .form-row {
  margin-bottom: 1rem;
}

.sc-price-alert-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.sc-price-alert-form input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.sc-price-alert-form button {
  background-color: #ff6f00;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.sc-price-alert-form button:hover {
  background-color: #e65100;
}

/* Social Proof Shortcode */
.sc-social-proof {
  background-color: #f1f8e9;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #7cb342;
}

.sc-social-proof h3 {
  margin-top: 0;
  color: #558b2f;
  display: flex;
  align-items: center;
}

.sc-social-proof h3::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23558b2f'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.sc-social-proof-counters {
  display: flex;
  justify-content: space-around;
  margin: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.sc-social-counter {
  text-align: center;
}

.sc-social-count {
  font-size: 2rem;
  font-weight: bold;
  color: #558b2f;
}

.sc-social-label {
  color: #333;
  font-size: 0.9rem;
}

/* Limited Time Offer Shortcode */
.sc-limited-offer {
  background-color: #fce4ec;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  border: 2px dashed #ec407a;
  position: relative;
}

.sc-limited-offer h3 {
  margin-top: 0;
  color: #c2185b;
  display: flex;
  align-items: center;
}

.sc-limited-offer h3::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2185b'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.sc-offer-countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.sc-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sc-countdown-number {
  background-color: #c2185b;
  color: white;
  border-radius: 4px;
  padding: 0.5rem;
  width: 3rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.sc-countdown-label {
  font-size: 0.8rem;
  color: #666;
}

.sc-offer-content {
  text-align: center;
  margin: 1rem 0;
}

.sc-offer-button {
  display: inline-block;
  background-color: #c2185b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.sc-offer-button:hover {
  background-color: #9c1050;
}

/* Product Specs Table */
.sc-product-specs {
  margin: 2rem 0;
}

.sc-product-specs table {
  width: 100%;
  border-collapse: collapse;
}

.sc-product-specs th,
.sc-product-specs td {
  padding: 0.75rem;
  border: 1px solid #ddd;
}

.sc-product-specs th {
  background-color: #f5f5f5;
  text-align: left;
  font-weight: 600;
  width: 40%;
}

/* CTA Box */
.sc-cta-box {
  background-color: #e3f2fd;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  border-top: 3px solid #1976d2;
}

.sc-cta-title {
  font-size: 1.5rem;
  margin-top: 0;
  color: #0d47a1;
}

.sc-cta-text {
  margin-bottom: 1.5rem;
}

.sc-cta-button {
  display: inline-block;
  background-color: #1976d2;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.sc-cta-button:hover {
  background-color: #0d47a1;
} 