/**
 * Multi-Step Product Configuration Styles
 */

/* Container Styles */
.multi-step-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Progress Bar Styles */
.multi-step-progress {
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
    padding: 15px 0;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.progress-bar-background {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #d9d9d9;
    transform: translateY(-50%);
    border-radius: 4px;
    z-index: 1;
}

.progress-bar-foreground {
    position: absolute;
    top: 50%;
    left: 0;
    height: 8px;
    background-color: #36B1E3;
    transform: translateY(-50%);
    border-radius: 4px;
    z-index: 2;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.progress-step {
    position: relative;
    text-align: center;
    width: 25%;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #d9d9d9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #d9d9d9;
}

.step-title {
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background-color: #FCCB11;
    box-shadow: 0 0 0 2px #36B1E3;
    color: #2e2e2e;
}

.progress-step.active .step-title {
    color: #2e2e2e;
    font-weight: bold;
}

.progress-step.completed .step-number {
    background-color: #36B1E3;
    box-shadow: 0 0 0 2px #36B1E3;
    color: white;
}

/* Step Content Styles */
.step-content {
    display: none;
    animation: fadeIn 0.5s ease;
    width: 100%;
    margin: 0 auto;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Step Navigation */
.step-navigation {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.prev-step-btn {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.next-step-btn, .add-to-cart-btn {
    font-size: 16px;
    font-family: 'Cal Sans', sans-serif;
    background-color: #FCCB11;
    border: none;
    color: #2e2e2e;
    padding: 10px 30px;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-left: auto;
    width: 100%;
}

.prev-step-btn:hover {
    background-color: #e0e0e0;
}

.next-step-btn:hover, .add-to-cart-btn:hover {
    background-color: #E0B40A;
}

/* Step 1: Product Info Styles */
.product-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.product-gallery {
    position: relative;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    flex:1
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 5;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.badge.free-shipping {
    background-color: #79c986;
    color: white;
}

.virtual-try-on-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    background-color: white;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.virtual-try-on-btn:hover {
    background-color: #f5f5f5;
}

.virtual-try-on-btn svg {
    width: 18px;
    height: 18px;
}

.product-gallery-slider {
    position: relative;
}

.gallery-main-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
    margin: 5px 5px 15px 5px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    display: none;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    transform: translateX(0);
    display: block;
    pointer-events: auto;
}

.gallery-slide.prev-slide {
    opacity: 0;
    transform: translateX(-50px);
    display: block;
    z-index: 1;
}

.gallery-slide.next-slide {
    opacity: 0;
    transform: translateX(50px);
    display: block;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 15px 15px;
    scrollbar-width: none; /* Firefox */
}

.product-gallery-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.gallery-thumbnail {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-thumbnail.active {
    border-color: #FCCB11;
    opacity: 1;
}

.gallery-thumbnail:hover {
    opacity: 1;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-navigation {
    position: absolute;
    top: 78%;
    left: 35px;
    right: 35px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.gallery-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    pointer-events: auto;
    margin: 0 15px;
}

.gallery-nav:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

.gallery-nav span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.gallery-nav.prev {
    margin-left: -20px;
}

.gallery-nav.next {
    margin-right: -20px;
}

.product-summary {
    flex: 1;
    min-width: 300px;
    padding: 15px 0;
}

.product-title {
    font-family: 'Cal Sans', sans-serif;
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #333;
    line-height: 1.2;
}

.product-price-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    position: relative;
}

.regular-price {
    color: #999;
    text-decoration: line-through;
    font-size: 18px;
    margin-bottom: 5px;
}

.current-price-container {
    display: flex;
    align-items: baseline;
}

.current-price {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-right: 10px;
}

.price-guarantee {
    font-size: 16px;
    color: #666;
}

.product-color-selection {
    margin-bottom: 25px;
}

.product-color-selection h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-option.active {
    border-color: #4CAF50;
}

.color-swatch {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.product-description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.product-stock-info {
    display: flex;
    align-items: center;
    background-color: #fff3cd;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.stock-icon {
    color: #856404;
    margin-right: 10px;
    font-size: 18px;
}

.stock-text {
    color: #856404;
    font-size: 14px;
}

.product-sku {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.sku-label {
    font-weight: 600;
}

.product-inventory {
  margin: 15px 0;
  font-size: 14px;
  /* display: flex
; */
  align-items: center;
  border: 1px solid #79c986;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 35px;
  background-color: #79c986;
  color: #fff;
}

.inventory-label {
    font-weight: 600;
    margin-right: 5px;
    color: #ffffff;
}

.inventory-value {
    color: #666;
}

.inventory-value.in-stock {
    color: #ffffff;
}

.inventory-value.out-of-stock {
    color: #e74c3c;
}

.product-title {
    font-size: 35px;
    margin-bottom: 15px;
    color: #333;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.product-sku {
    margin-bottom: 20px;
    color: #777;
}

.product-attributes {
    margin-top: 20px;
}

.product-attributes h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-attributes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-attributes li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Color Selection Styles */
.product-color-selection {
    margin-bottom: 25px;
}

.product-color-selection h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border-color: #FCCB11;
    box-shadow: 0 0 0 2px rgba(252, 203, 17, 0.3);
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 0 0 2px rgba(0,0,0,0.8);
    font-size: 16px;
    font-weight: bold;
}

.color-swatch {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.color-selection-notification {
    position: absolute;
    background-color: #FCCB11;
    color: #2e2e2e;
    padding: 8px 15px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
    animation: fadeInOut 2s ease;
    z-index: 10;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.attribute-label {
    font-weight: bold;
    color: #555;
}

/* Step 2: Graduation Styles */
.graduation-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.graduation-title {
    font-family: 'Cal Sans', sans-serif;
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.graduation-step {
    font-family: 'Cal Sans', sans-serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.graduation-dropdown {
    margin-bottom: 30px;
}

.graduation-dropdown-btn {
    width: 100%;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 35px;
    text-align: left;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.upload-text {
    color: #FCCB11;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 20px;
    color: #FCCB11;
}

.graduation-options-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.graduation-options-left {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glasses-diagram {
    max-width: 100%;
    height: auto;
}

.graduation-options-right {
    flex: 0 0 60%;
}

.options-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.graduation-option {
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.graduation-option.selected {
    transform: translateY(-2px);
}

.graduation-option input[type="checkbox"],
.graduation-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.graduation-option label {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.graduation-option label:hover {
    border-color: #FCCB11;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.graduation-option input[type="checkbox"]:checked + label,
.graduation-option input[type="radio"]:checked + label {
    border-color: #FCCB11;
    background-color: rgba(252, 203, 17, 0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.graduation-option input[type="checkbox"]:checked + label::before,
.graduation-option input[type="radio"]:checked + label::before {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background-color: #FCCB11;
    color: #2e2e2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.option-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.option-description {
    font-size: 14px;
    color: #666;
}

.graduation-help-text {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.prescription-upload-section {
    margin-bottom: 30px;
}

.upload-title {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

.upload-container {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    background-color: #f9f9f9;
}

.prescription-file-input {
    display: none;
}

.upload-area {
    cursor: pointer;
    display: block;
}

.upload-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* Update step navigation for step 2 */
.step-2 .step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.step-2 .prev-step-btn {
    font-size: 16px;
    font-family: 'Cal Sans', sans-serif;
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
    padding: 10px 30px;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
}

.step-2 .next-step-btn {
    font-size: 16px;
    font-family: 'Cal Sans', sans-serif;
    background-color: #FCCB11;
    border: none;
    color: #2e2e2e;
    padding: 10px 30px;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* Step 3: Treatments Styles */
.treatment-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.treatment-main-title {
    font-family: 'Cal Sans', sans-serif;
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.treatment-step-title {
    font-family: 'Cal Sans', sans-serif;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.treatment-options-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.treatment-options-left {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #eee;
}

.treatment-options-right {
    flex: 0 0 60%;
}

.treatment-selection-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.treatment-option {
    margin-bottom: 15px;
    position: relative;
}

.treatment-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.treatment-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.treatment-option input[type="checkbox"]:checked + .treatment-label {
    background-color: rgba(252, 203, 17, 0.1);
}

.treatment-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 15px;
    margin-top: 3px;
    position: relative;
    flex-shrink: 0;
}

.treatment-option input[type="checkbox"]:checked + .treatment-label .treatment-checkbox {
    border-color: #FCCB11;
    background-color: #FCCB11;
}

.treatment-option input[type="checkbox"]:checked + .treatment-label .treatment-checkbox::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.treatment-info {
    flex: 1;
}

.treatment-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Update step navigation for step 3 */
.step-3 .step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.step-3 .prev-step-btn, .step-4 .prev-step-btn {
    font-size: 16px;
    font-family: 'Cal Sans', sans-serif;
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
    padding: 10px 30px;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
}

.step-3 .next-step-btn {
    font-size: 16px;
    font-family: 'Cal Sans', sans-serif;
    background-color: #FCCB11;
    border: none;
    color: #2e2e2e;
    padding: 10px 30px;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* Step 4: Review & Add to Cart Styles */
.step-4 {
    background-color: #f9f9f9;
    padding: 30px;
}

.summary-container {
    max-width: 900px;
    margin: 0 auto;
}

.summary-main-title {
    font-family: 'Cal Sans', sans-serif;
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.summary-step-title {
    font-family: 'Cal Sans', sans-serif;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.order-summary {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.summary-section {
    margin-bottom: 25px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.summary-section:last-child {
    border-bottom: none;
}

.summary-section h3 {
    margin-top: 0;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 20px;
    font-family: 'Cal Sans', sans-serif;
    color: #333;
}

.product-summary-section .summary-content {
    display: flex;
    align-items: center;
}

.product-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-family: 'Cal Sans', sans-serif;
    font-size: 18px;
}

.product-sku {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.summary-item {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.treatment-summary-name {
    font-weight: 500;
}

.treatment-summary-price {
    font-weight: 600;
    color: #333;
}

.empty-summary {
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 10px 0;
}

.base-price,
.treatments-price,
.total-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 5px 0;
}

.price-label {
    font-weight: 500;
}

.price-value {
    font-weight: 600;
}

.total-price {
    font-weight: bold;
    font-size: 1.3em;
    border-top: 2px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    color: #333;
}

.step-4 .step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.step-4 .prev-step-btn:hover {
    background-color: #eee;
}

.step-4 .add-to-cart-btn {
    background-color: #FCCB11;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.step-4 .add-to-cart-btn:hover {
    background-color: #e9bc0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.secure-purchase {
    text-align: center;
    margin-top: 20px;
}

.secure-text {
    font-size: 14px;
    color: #666;
}

.secure-text i {
    color: #4CAF50;
    margin-right: 5px;
}

.order-summary {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.summary-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.product-summary-section .summary-content {
    display: flex;
    align-items: center;
}

.product-image {
    width: 80px;
    margin-right: 20px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.empty-summary {
    color: #999;
    font-style: italic;
}

.total-summary-section .summary-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.base-price, .treatments-price, .total-price {
    display: flex;
    justify-content: space-between;
}

.total-price {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.compra-segura {
    text-align: center;
    padding: 20px 10px;
}

.probartelos-encasa-btn {
    font-family: 'Cal Sans', sans-serif;
    display: inline-block;
    padding: 10px 30px;
    background-color: #ffffff;
    color: #2e2e2e;
    border: 1px solid #2e2e2e;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
    font-weight: 400;
    transition: all 0.3s ease;
    width: 100%;
}

.probartelos-encasa-btn:hover {
    background-color: #f0f0f0;
}

.sub-block {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    flex:1
}
.sub-block-2 {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 15px;
    flex:1
}
.sub-block-2 h2 {
    font-weight: 500;
    font-family: 'Cal Sans', sans-serif;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.5em;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .multi-step-progress {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .product-info-container {
        flex-direction: column;
    }
    
    .treatments-options {
        grid-template-columns: 1fr;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .prev-step-btn, .next-step-btn, .add-to-cart-btn {
        width: 100%;
        margin: 0;
    }
}
