.feature-card {
  border: 1px solid var(--light-color);
  border-radius: 24px;
  padding: var(--padding-20);
  height: 100%;
  background: var(--white-color);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--success-color);
}
/* Shopify Custom Accordion Styling */
.custom-shopify-faq .accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.custom-shopify-faq .accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  padding-left: 0;
  padding-right: 0;
}
/* Remove the default blue glow and background on active */
.custom-shopify-faq .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--success-color) !important;
}
/* Custom icon rotation or style if needed */
.custom-shopify-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.highlight-box {
  background: var(--light-color);
  border-left: 4px solid var(--success-color);
  padding: var(--padding-20);
  border-radius: var(--border-radius-10);
  margin: 20px 0;
}
/* Container */
.orders-container {
  background: var(--white-color);
  border-radius: var(--border-radius-20);
  overflow: hidden;
  border: 1px solid var(--light-color);
}

/* Individual Row */
.order-item {
  padding: var(--padding-20) var(--padding-15);
  border-bottom: 1px solid var(--light-color);
  text-decoration: none;
  transition: var(--transition-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-item:hover {
  background-color: var(--light-color);
}

.order-item:last-child {
  border-bottom: none;
}

/* Icon Squircle */
.order-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-10);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Color Variations using your Root Variables */
.order-icon.success {
  background-color: rgba(25, 135, 84, 0.1);
  color: var(--success-color);
}
.order-icon.info {
  background-color: rgba(13, 202, 240, 0.1);
  color: var(--success-color);
}
.order-icon.secondary {
  background-color: rgba(108, 117, 125, 0.1);
  color: var(--secondary-color);
}

/* Text Styles */
.order-details h6 {
  font-size: 0.95rem;
  letter-spacing: -0.2px;
  color: var(--dark-color);
  font-weight: 700;
}

.order-details small {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.order-amount {
  text-align: right;
}

.order-amount .price {
  font-size: 0.95rem;
  color: var(--dark-color);
  font-weight: 700;
  letter-spacing: -0.4px;
}

.order-amount .ref {
  color: var(--secondary-color);
  font-size: 10px;
  text-transform: uppercase;
  display: block;
}

/* Custom Icon Colors from your variables */
.order-icon.info {
  background-color: rgba(13, 202, 240, 0.1);
  color: var(--success-color);
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.screenshot-preview {
  width: 100%;
  height: 400px;
  margin-top: var(--padding-20);
}

/* Specific styling for the Proof zone */
.screenshot-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
  transition: var(--transition-3);
}

.screenshot-preview img:hover {
  filter: brightness(0.9);
}

/* Action Buttons */
.btn-success {
  background-color: var(--success-color) !important;
}

.order-actions .btn {
  transition: var(--transition-3);
  font-size: 0.95rem;
}

/* Card hierarchy */
.card {
  border: 1px solid var(--light-color) !important;
}

/* Add Product Card (Dashed) */
.add-product-card {
  border: 2px dashed #ced4da;
  border-radius: var(--border-radius-20);
  background-color: #f8f9fa;
  min-height: 180px;
  transition: var(--transition-3);
}

.add-product-card:hover {
  border-color: var(--success-color);
  background-color: #f0fdf4;
}

.add-icon-circle {
  width: 45px;
  height: 45px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Product Card Styling */
.modern-product-card {
  background: var(--white-color);
  border-radius: var(--border-radius-20);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Specific Fade UI for Images - Full Image Version */
.product-img-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #fdfdfd; /* Light neutral background for gaps */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  /* Changed from cover to contain to show the FULL image */
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.product-img.active {
  opacity: 1;
  position: relative;
}

.product-info-body {
  padding: 12px;
}

.product-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark-color);
}

.product-price-tag {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--dark-color);
}

.product-card { 
    background: var(--white-color); 
    border-radius: 20px; 
    overflow: hidden; 
    border: 1px solid #efefef; 
    transition: 0.3s ease; 
    height: 100%; 
    position: relative; 
    width:300px;
}
@media (max-width:650px) {
    .product-card {
        width:100%;
    }
}
.product-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
}



/* Badges */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 50px;
  color: var(--white-color);
}

/* States */
.out-of-stock .product-img-container img {
  filter: grayscale(1);
  opacity: 0.5;
}
/* Current Active Plan (Top Card) */
.current-plan-card {
  background: linear-gradient(135deg, var(--success-color), var(--dark-color));
  color: var(--white-color);
}

/* Plan Cards */
.plan-card {
  transition: var(--transition-3);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.plan-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.plan-features li {
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.back-btn-modern {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  color: var(--dark-color);
  border-radius: var(--border-radius-15); /* Slightly squared but soft */
  text-decoration: none;
  transition: var(--transition-3);
  border: 1px solid var(--light-color);
}

.back-btn-modern:hover {
  background-color: var(--light-color);
  transform: translateX(-3px); /* Subtle nudge effect */
}

.back-btn-modern i {
  font-size: 0.9rem;
}

.header-title-wrapper h5 {
  line-height: 1.2;
}

.header-title-wrapper small {
  display: block;
  margin-top: -2px;
}
