/* Main page spacing */
.product1 {
  /* desktop: 150px top, 20px around */
  padding-top: 150px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}

/* Centered, boxed content with vertical flow + gaps */
.product1__container {
  max-width: 1140px;         /* boxed width on desktop */
  margin-inline: auto;       /* center horizontally */
  display: flex;
  flex-direction: column;    /* vertical stack */
  gap: 20px;                 /* space between child sections */
}

/* Tablet & Mobile: 100px top, 10px around */
@media (max-width: 1024px) {
  .product1 {
    padding-top: 100px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
  }
}

/* (Optional) slightly tighter on small phones */
@media (max-width: 640px) {
  .product1__container {
    max-width: 100%;         /* naturally full width, padding controls edges */
  }
}



/* Product preview card */
.product-preview {
  background: #fff;
  border-radius: 10px;
  /* blur 8px with a subtle lift */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.22);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;            /* space between top and bottom sections */
  overflow: hidden;     /* ensures rounded corners clip inner content */
}

/* ===== 50/50 DESKTOP LAYOUT FOR THE TOP AREA ===== */
@media (min-width: 1025px) {
  .product-preview__top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); /* 50/50, clamp overflow */
    gap: 20px;
    align-items: start;
  }
}

/* Stack on tablet/mobile (already good) */
@media (max-width: 1024px) {
  .product-preview__top {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== NEUTRALIZE WOO GALLERY INSIDE OUR LEFT COLUMN ===== */
.product-preview__media .woocommerce-product-gallery {
  float: none !important;          /* cancel Woo float */
  width: 100% !important;          /* let the grid cell control width */
  max-width: 100% !important;
  margin: 0 !important;
  display: block !important;
}

.product-preview__media .woocommerce-product-gallery__wrapper,
.product-preview__media .flex-viewport {
  width: 100% !important;
  max-width: 100% !important;
}

.product-preview__media .woocommerce-product-gallery__image,
.product-preview__media .woocommerce-product-gallery__image a {
  display: block;
}

.product-preview__media .woocommerce-product-gallery__image img {
  display: block;
  width: 100% !important;
  height: auto !important;
}

/* Thumbs */
.product-preview__media .flex-control-thumbs {
  gap: 8px;
}
.product-preview__media .flex-control-thumbs li { margin: 0 !important; }
.product-preview__media .flex-control-thumbs img {
  width: 100%; height: auto; display: block;
}

/* ===== ENSURE THE RIGHT COLUMN DOESN'T OVERFLOW ===== */
.product-preview__details {
  min-width: 0;           /* critical for grid overflow */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* If something in details is too wide, clamp it */
.product-preview__details > * { max-width: 100%; }


/* Responsive fine-tuning (optional) */
@media (max-width: 1024px) {
  .product-preview {
    padding: 14px;
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .product-preview {
    padding: 12px;
    gap: 12px;
  }
}


.woocommerce div.product .product_title {
    margin: 0;
}

.product-subtitle {
    color: #000000;
    font-weight: bold;
    margin-bottom: 40px;
}




.image-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.image {
    width: calc(33.33% - 6.66px); /* 33.33% minus half of the total margin between images */
    height: auto; /* Ensures images maintain aspect ratio */
}

.image + .image {
    margin-left: 10px; /* Add margin between images */
}




  .pe-iconline {
    --pe-green: #2bb24b;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pe-green);
    line-height: 1.4;
    font-size: 18px;
    margin-bottom: 30px;
  }
  .pe-iconline .pe-icon svg { display: block; }
  .pe-iconline .pe-text { margin: 0; }







    /* Simple Price Container Styles */
    #simple-price-container {
        font-family: Comfortaa, sans-serif;
        font-weight: bold;
        font-size: 20px;
        color: #000000;
        margin-bottom: -10px;
    }
    
    #price-label {
        font-size: 1.9em;
        font-weight: bold;
        font-size: 1.7em;
        margin-right: 10px;
    }
    
    .simple-original-price {
        color: #6EC1E4;
        font-family: "Comfortaa", Sans-serif;
        font-size: 2.5em;
        font-weight: 900;
    }
    
    .simple-original-price.discounted {
        text-decoration: line-through;
        color: #a9a9a9;
        margin-right: 10px;
    }
    
    .simple-discounted-price {
        color: #6EC1E4;
        font-family: "Comfortaa", Sans-serif;
        font-size: 2.5em;
        font-weight: 900;
    }
    
    
    
    
    
/* ===== Bulk Calculator Card ===== */
.bulk-calc {
  display: block;
}

/* Header button */
.bulk-calc__header {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff !important;
  color: #111 !important;
  padding: 5px 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

/* Title & arrow */
.bulk-calc__title {
  font-weight: 700;
}
.bulk-calc__arrow {
  font-size: 20px;         /* bigger arrow */
  line-height: 1;
  display: inline-block;
  transform-origin: 50% 50%;
  transition: transform .2s ease;
}
.bulk-calc__header[aria-expanded="true"] .bulk-calc__arrow {
  transform: rotate(180deg);
}

/* Collapsible panel (card look when open) */
.bulk-calc__panel {
  margin-top: 8px;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 27%);
  border-radius: 10px;
  padding: 14px;
}

/* Slider layout */
.bulk-slider { display: grid; gap: 12px; }
.bulk-slider__header {
  display: flex; justify-content: space-between; align-items: center;
}
#bulkRange { width: 100%; }
.bulk-slider__prices {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-weight: 600;
}
.bulk-slider__prices span { font-weight: 700; }












#customize-button {
    width: 100%; /* Full width of the parent container */
    padding: 12px 20px; /* Padding for better text visibility */
    background-color: #6EC1E4; /* Light blue background */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 50px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    outline: none; /* Remove focus outline */
    transition: background-color 0.3s; /* Smooth transition for background color */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 0px 0px 4px #00000035;
    font-size: 25px;
}

#customize-button:hover, #customize-button:focus,
#fixed-button:hover, #fixed-button:focus {
    background-color: #5db2cf; /* Darker shade of blue on hover/click */
}

.hidden {
    display: none !important; /* Important to ensure it overrides any other display settings */
}


#fixed-button-container {
    position: fixed;
    bottom: 0;
    left: 50%; /* Center based on the entire window width */
    width: 1140px;
    max-width: 100%;
    background-color: white;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s ease-in-out;
    z-index: 995;
    padding: 20px 15px 20px 15px;
    border-radius: 10px 10px 0 0;
    transform: translateX(-50%);
}




#fixed-button {
    padding: 12px 20px !important;
    width: 100%; /* Full width to match the container */
    text-align: center;
    background-color: #6EC1E4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 0px 0px 4px #00000035;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
    font-size: 25px;
    
}











.info-toggle-container {
    display: flex;
    justify-content: space-between;
    background-color: #4A4A4A;
    border-radius: 20px;
    
    padding-top: 7px;
    padding-bottom: 7px;
    position: relative;
    width: 100%;
    box-shadow: 0 0px 5px rgba(0,0,0,0.5); /* Outer shadow for the whole toggle */
}

.info-toggle-indicator {
    background-color: #6EC1E4;
    border-radius: 20px; /* Adjusted for inner alignment */
    position: absolute;
    transition: left 0.4s ease, width 0.4s ease; /* Smooth transition for moving */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2); /* Inner shadow for the highlighter */
    /* Adjusted for a better starting alignment */
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 7px); /* Adjust based on the container's padding */
    margin-left: 2px; /* Left margin for initial alignment */
    margin-right: 2px; /* Right margin for alignment */
}

.info-toggle-menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    width: 100%;
    margin: 0;
    align-items: center; /* Align items vertically */
    height: 30px; /* Reduced height for a slimmer toggle */
}

.info-toggle-menu li {
    flex-grow: 1;
    text-align: center;
    position: relative;
    font-size: 14px; /* Smaller text size */
}

.info-toggle-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background-color: #FFFFFF; /* Thinner and lighter dividers */
    opacity: 0.5; /* Making dividers thinner visually */
}

.info-toggle-menu li a {
    color: #FFFFFF;
    display: block;
    padding: 10px 0;
}

/* Adjust this as per your need or remove if not required */
.info-toggle-menu li.active a {
    font-weight: bold;
}













/* Generic info card */
.info-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.22);
  padding: 16px;
}

/* Title */
.info-section__title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #6EC1E4; /* tweak if you want a different accent */
  text-align: center;
}

/* Content area (uses post content) */
.info-section__content {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

/* Tidy default WP content spacing inside the card */
.info-section__content > *:first-child { margin-top: 0; }
.info-section__content > *:last-child  { margin-bottom: 0; }

/* Lists inside content */
.info-section__content ul,
.info-section__content ol {
  padding-left: 1.25rem;
  margin: .5rem 0 1rem;
}
.info-section__content li { margin: .25rem 0; }

/* Responsive padding (optional) */
@media (max-width: 1024px) {
  .info-section { padding: 14px; }
}
@media (max-width: 640px) {
  .info-section { padding: 12px; }
}





/* FAQ card inherits base .info-section styles */
.info-section.faq .info-section__title {
  /* keep same look; tweak if you want a different accent for FAQ */
  /* color: #6EC1E4; */
  text-align: center;
}

.info-section.faq .faq__content {
  /* space for shortcode output; safe defaults */
  display: block;
}

/* If your FAQ shortcode outputs an accordion, these can help as defaults */
.info-section.faq .accordion,
.info-section.faq .faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-section.faq .accordion-item,
.info-section.faq .faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 10px 0;
}

.info-section.faq .accordion-button,
.info-section.faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.info-section.faq .accordion-body,
.info-section.faq .faq-answer {
  margin-top: 6px;
  color: #333;
  line-height: 1.6;
}






.printelo-faq-accordion .pe-faq-item { border-bottom: 1px solid rgba(0,0,0,.08); padding: 8px 0; }
.printelo-faq-accordion .pe-faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 10px 0;
  font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: #000000;
}

/* Bigger accordion arrow */
.printelo-faq-accordion .pe-faq-arrow {
  font-size: 20px;            /* ← make it bigger (try 22–24px if you want) */
  line-height: 1;
  display: inline-block;      /* so transform centers nicely */
  transform-origin: 50% 50%;
  transition: transform .2s ease;
}

/* keep your existing rotate-on-open */
.printelo-faq-accordion .pe-faq-q[aria-expanded="true"] .pe-faq-arrow {
  transform: rotate(180deg);
}

/* optional: a little extra spacing between text and arrow */
.printelo-faq-accordion .pe-faq-q {
  gap: 8px; /* if you're using display:flex on the button */
}

