/*
 Theme Name:   Printme Child
 Theme URI:    https://aimax.wpengine.com/
 Description:  Printme Child Theme
 Author:       the WeDesignTech team
 Author URI:   https://wedesignthemes.com/
 Template:     printme
 Version:      1.0.0
 Text Domain:  printme-child
*/
.uc_content {
	  height: fit-content;
	  margin: auto 0 0 0;
	  display: flex;
	  justify-content: space-between;
	  width: calc(100% - 40px);
	  left: 20px;
	  bottom: 20px;
	  padding: 30px;
	  /*background: linear-gradient(90deg, var(--wdtPrimaryColor) 0%, var(--wdtTertiaryColor) 100%);*/
	  background: linear-gradient(90deg, #6390ee 0%, #6390ee 100%);
	  align-items: center;
	  border-radius: var(--wdtRadius_2X);
	  top: -100px;
	  position: relative;
}
.wdt-custom-blob-bg-ani:after{background-color: #d9d9d9;}
#back-to-top {  background: linear-gradient(90deg, #6390ee 0%, #6390ee 100%);}
/*#header-wrapper {  margin: 0 0 0px;}*/
.wdt-custom-header-ii-header-icons .wdt-search-form-container #searchform { width: 500px;}
input[type="submit"], button, input[type="button"], input[type="reset"] {  background-color: #6390ee !important;}
/* stickymenu */
.my-sticky-widget.is-sticky  {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    padding: 1px !important;
    transition: all 0.5s ease !important;
	zoom:85%;
}
/* add animation for smooth transition */
.my-sticky-widget {
    transition: all 0.5s ease;
}
/* end stickymenu */
.woocommerce div.product .summary .product-buttons-wrapper .wc_inline_buttons .wc_btn_inline { width: 100%;}


/*kartes ektiposis*/
/* Custom styles for card calculator */
.card-calculator {
    background: #f9f9f9;
    padding: 30px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card-calculator h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

/* Grid layout for fields - 2 per row */
.calculator-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.calculator-field {
    margin-bottom: 0;
}

/* Special row wrapper to keep two fields together */
.calculator-field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    grid-column: 1 / -1; /* Span full width of parent grid */
}

.calculator-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.calculator-field label .required {
    color: #e74c3c;
}

.calculator-field select,
.calculator-field input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s;
}

.calculator-field select:focus {
    outline: none;
    border-color: #3498db;
}

.calculator-field .radio-group {
    display: flex;
    gap: 20px;
}

.calculator-field .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.calculator-field .radio-option input[type="radio"] {
    width: auto;
}

.price-display {
    background: white;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.price-display h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.final-price {
    font-size: 32px;
    font-weight: bold;
    color: #3498db;
    margin: 10px 0;
}

.price-breakdown {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    background: white;
    transition: all 0.3s;
}

.file-upload-area:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.file-upload-area.has-file {
    border-color: #27ae60;
    background: #e8f5e9;
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .card-calculator {
        padding: 20px;
    }
    
    /* Stack fields on mobile */
    .calculator-fields-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .final-price {
        font-size: 24px;
    }
}


/* eof kartes ektiposis*/

/* Product Page Buttons - Make Wishlist and Buy Now same size */
.woocommerce div.product .summary .product-buttons-wrapper .wc_inline_buttons .wc_btn_inline {
    flex: 1;
    min-width: 0;
}

.woocommerce div.product .summary .product-buttons-wrapper .wc_inline_buttons .wc_btn_inline a {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure both buttons have equal width */
.woocommerce div.product .summary .product-buttons-wrapper .wc_inline_buttons {
    display: flex;
    gap: 15px;
}

.woocommerce div.product .summary .product-buttons-wrapper .wc_inline_buttons .wc_btn_inline {
    flex: 1;
}

/* Mobile responsive - stack buttons */
@media (max-width: 768px) {
    .woocommerce div.product .summary .product-buttons-wrapper .wc_inline_buttons {
        flex-direction: column;
    }

    .woocommerce div.product .summary .product-buttons-wrapper .wc_inline_buttons .wc_btn_inline {
        width: 100%;
    }
}
