/*css of my photos page*/
/* Buttons Container */
.photo-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

/* Base Button Style */
.photo-actions button {
    color: #F05455;
    background-color: white;
    padding: 4px 6px;
    border: solid #F05455 1px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

	.photo-actions button:hover {
	color: white;
    background-color: #F05455 !important;
	}

/* Page layout */
.photos-page-wrapper {
    display: flex;
    width: 100%;
    margin: 30px auto;
    font-family: 'Inter', Arial, sans-serif;
    color: #1e293b;
    background: #fff;
    box-sizing: border-box;
    height: max-content; 
}

/* Sidebar */
.photos-sidebar {
    width: 240px;
    padding: 20px;
    border-right: 1px solid #e2e8f0;
    background: #f9fafb;
    box-sizing: border-box;
    overflow-y: auto; /* allows sidebar scrolling if content overflows */
}

/* Sidebar menu */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.sidebar-menu li {
    padding: 10px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #334155;
    transition: background 0.2s, color 0.2s;
}
.sidebar-menu li:hover {
    background: #e2e8f0;
    color: #1e293b;
}
.sidebar-menu li.active {
    background: #f0f4ff;
    font-weight: 600;
    color: #F05455;
}
.sidebar-menu .count {
    color: #64748b;
    font-size: 13px;
}

.sidebar-menu .count:active {
    color: #F05455;
    font-size: 13px;
}	


/* Main section */
.photos-main {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative; 
}

/* Photos header */
.photos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-shrink: 0; 
}
.photos-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
}
.tab-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
}
.upload-btn {
    background: #f05455;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, transform 0.1s;
}
.upload-btn:hover {
    background: #dc2626;
    transform: scale(1.02);
}

/* Photos grid */
.photos-grid {
	position:relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    flex-grow: 1; /* allow grid to take remaining space */
    overflow-y: auto; /* scrollable if too many photos */
    padding-right: 5px; 
}

.photo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
	height: max-content;
}
.photo-actions {
	position:absolute;
	right:5px;
	bottom:5px;
}
.photo-card:hover {
    transform: scale (1.02);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.photo-card img {
    width: 100%;
    height: 160px;;
    display: block;
    object-fit: cover;
}
.photo-card img:hover {
	border: solid 2px #f05455;
    transform: scale (1.02);
	border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.photo-card .badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #22c55e;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

/* Modal */
.vs-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.vs-modal-content {
    background: #fff;
    padding: 25px 20px 20px;
    border-radius: 12px;
    width: 420px;
    max-width: 90%;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.vs-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s;
}
.vs-close:hover {
    color: #111827;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s;
}
.close-modal:hover {
    color: #111827;
}

/* Form elements */
.vs-form-wrapper input,
.vs-form-wrapper select {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    transition: border 0.2s;
}
.vs-form-wrapper input:focus,
.vs-form-wrapper select:focus {
    border-color: #3b82f6;
    outline: none;
}
.vs-form-wrapper button {
    padding: 10px 15px;
    border: none;
    background: #48bb78;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s, transform 0.1s;
}
.vs-form-wrapper button:hover {
    background: #38a169;
    transform: scale(1.02);
}

/* Status + result */
#vs-progress {
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #475569;
}
#vs-result img {
    margin-top: 12px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


/* responsive */
@media (max-width: 768px) {
    .photos-page-wrapper {
        flex-direction: column;
    }
    .photos-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}

.vs-create-render {
    background: #f05455;
	margin-top:35px;
	width:100%;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, transform 0.1s;
}
.vs-create-render:hover {
	background: #dc2626;
    transform: scale(1.02);
}		
.photo-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
	overflow-y: auto;
}
.photo-modal-content {
    background: #fff;
    border-radius: 10px;
    width: 90%; max-width: 1100px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.close-modal {
    position: absolute; line-height: 20px; top: 0px; right: 5px;
    background: none; border: none; font-size: 28px;
    cursor: pointer;
}

.photo-original img, .photo-generated img {
    width: 100%;
}

.photo-modal-content {
  width: 92%;
  max-width: 1200px;
}

.photo-modal-body {
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 20px;
}


.photo-original {
    padding: 6px 0px;
	max-height:40%;
}

.photo-original img#modal-original-img {
  width: 100%;
  max-height: 60vh;           
  object-fit: contain;
  border-radius: 10px;
  display: block;

}

/* Results (right) */
.generated-carousel {
position: relative; 
  width:100%;
}
	.photo-generated {
	max-width:900px;
	width:100%;		
	}	

#generated-slider {
	margin-top:20px;	
  text-align:center;
  height: clamp(500px, 46vh, 600px);
  border-radius: 10px;
  overflow: hidden; 
}


#generated-slider .slick-list,
#generated-slider .slick-track {
  height: 100%;
}
#generated-slider .slick-slide {
  height: 100%;
  display: flex !important;          
  align-items: center;
  justify-content: center;
  padding: 6px 10px;    
  border-radius: 10px;
  box-sizing: border-box;
}
#generated-slider .slick-slide img {
  max-width: 100%;
  max-height: 100%; 
  border-radius: 14px;
 /* width: auto;
  height: auto;*/
  object-fit: contain;
  display: block;
}

#generated-slider .slick-prev { width:26px;height:28px;padding:2px;left: 10px; z-index: 2; background-color:#f05455; }
#generated-slider .slick-next { width:26px;height:28px;padding:2px;right: 10px; z-index: 2; background-color:#f05455; }
	
#generated-slider .slick-prev:hover{  background-color:#dc2626; }
#generated-slider .slick-next:hover{  background-color:#dc2626; } 

.slick-prev:before, .slick-next:before {
color:#f05455;	
}

.slick-prev:hover, .slick-next:hover {
	color:#dc2626!important;
}	

#generated-thumbs .slick-list { margin: 0 -6px; }
#generated-thumbs .slick-slide { padding: 0 6px; box-sizing: border-box; }

#generated-thumbs .thumb {
  background: #fff;
  border-radius: 6px;
}
#generated-thumbs .thumb img {
  width: 100%;
  height: 80px;  
	min-width:80px;	
  object-fit: cover;               
  border-radius: 3px;
  display: block;
}
div#generated-thumbs {
    display: flex
;
    gap: 10px;
	overflow-x: scroll;
	margin-top:5px;
}
/* Active thumb outline */
#generated-thumbs .slick-current .thumb img {
  outline: 2px solid #111;
  outline-offset: 0;
}
.thumb.active {
	border-radius: 6px;
    border: solid 2px #f05455;
}
/* Small screens: stack columns and lower heights a bit */
@media (max-width: 900px) {
  .photo-modal-body {
    grid-template-columns: 1fr;
  }
  #generated-slider {

  }
  #generated-thumbs .thumb img {
    height: 70px;
  }
}



.vs-loading {
  position: absolute;
  inset: 0;   
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  border-radius: 10px;
}

.vs-loading-content {
  text-align: center;
  color: #fff;
  
}

/* Room layout box */
.vs-room-layout {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 25px auto;
}

/* SVG room drawing */
#room-outline {
  width: 100%;
  height: 100%;
}

.outline-path {
  fill: none;
  stroke: #dc2626;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation:
    drawRoom 8s linear infinite,        
    glowPulse 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 6px #f05455);
}


@keyframes drawRoom {
  0% {
    stroke-dashoffset: 400;   
  }
  50% {
    stroke-dashoffset: 0;    
  }
  50.01% {
    stroke-dashoffset: 800;   
  }
  100% {
    stroke-dashoffset: 400;   
  }
}


@keyframes glowPulse {
  from { filter: drop-shadow(0 0 4px #f05455); }
  to   { filter: drop-shadow(0 0 12px #f05455); }
}


.furniture {
  position: absolute;
  inset: 20px;
}


.furniture-item {
  position: absolute;
  background: #f05455;
	opacity : 0.7;	
  border: 1px solid #f05455;
  border-radius: 4px;
  opacity: 0;
  transform: scale(0.7);
  animation: popIn 0.6s ease forwards;
  box-shadow: 0 0 10px rgba(0,224,255,0.3);
}

.furniture-item.circle {
  border-radius: 50%;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* Step text */
.vs-loading-steps {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0.9;
  min-height: 24px;
}

.upload-box {
  border: 2px dashed #f05455;
  border-radius: 10px;
  background: #fafafa;
  padding: 30px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 20px;
  position: relative;
}

.upload-box:hover {
  border-color: #dc2626;
  background-color: #FFD6D6;

}

.upload-box.dragover {
  border-color: #dc2626;
  background-color: #FFD6D6;

}

.upload-box .upload-placeholder i {
  font-size: 32px;
  color: #dc2626;
  margin-bottom: 8px;
  display: block;
}

.upload-box .upload-placeholder p {
  color: #555;
  font-size: 15px;
}

.upload-box .upload-placeholder span.clickable {
  color: #dc2626;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.upload-box.previewing {
  padding: 0;
  border: none;
  background: none;
}

.upload-box.previewing img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.no-images-placeholder {
  text-align: center;
  padding: 50px 20px;
  color: #555;
}

.no-images-placeholder h4 {
  margin-top: 20px;
  font-size: 20px;
  color: #222;
}

.no-images-placeholder p {
  font-size: 15px;
  color: #666;
}

.empty-room {
  width: 120px;
  height: 120px;
  stroke: #dc2626;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: drawBlueprint 6s ease-in-out infinite;
  filter: drop-shadow(0 0 6px #f05455);
}

.empty-room .furniture {
  fill: none;
  stroke: #f05455;
  stroke-width: 1.5;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawFurniture 6s ease-in-out infinite;
}

@keyframes drawBlueprint {
  0% { stroke-dashoffset: 250; opacity: 0; }
  30% { opacity: 1; }
  50% { stroke-dashoffset: 0; }
  80% { opacity: 1; }
  100% { stroke-dashoffset: -250; opacity: 0; }
}

@keyframes drawFurniture {
  0% { stroke-dashoffset: 100; opacity: 0; }
  40% { stroke-dashoffset: 0; opacity: 1; }
  90% { opacity: 1; }
  100% { stroke-dashoffset: -100; opacity: 0; }
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu li {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.3s;
  border-left: 3px solid transparent;
}
.sidebar-menu li.active {
  background: #f5f8fa;
  border-left: 3px solid #f05455;
  font-weight: 600;
  color: #f05455;
}
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}






/* Optional animation for smooth entrance */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Close button (optional) */
.photo-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 20px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* ===== Mobile: full-page modal ===== */
@media (max-width: 768px){
  .photo-modal{ padding:0; }
  .photo-modal-content{
    width:100vw; height:100dvh; max-height:100dvh; border-radius:0;
  }
  .photo-modal-body{ padding:12px 12px 20px; }

  /* Fixed image sizes still apply; if you need slightly smaller for mobile, tweak here */
  :root{
    --img-w: 300px;
    --img-h: 200px;
    --thumb-w: 72px;
    --thumb-h: 48px;
  }

  /* Center stacks nicely */
  .photo-original, .photo-generated{ display:flex; flex-direction:column; align-items:center; }
}

/* Optional: make selects/buttons full width on mobile for better UX */
@media (max-width: 480px){
  .modal-actions select, .modal-actions button{
    width:100%; max-width:420px;
  }
}

/* Prevent background scroll when modal is open */
body.modal-open{ overflow:hidden; touch-action:none; overscroll-behavior:contain; }

/* ===== Mobile + modal final patch (append at end) ===== */

/* Prevent any side scroll inside the modal on mobile */
@media (max-width: 768px){
  .photo-modal,
  .photo-modal-content,
  .photo-modal-body{
    overflow-x: hidden;
  }

  /* Full-screen modal on mobile */
  .photo-modal{ position: fixed; inset: 0; }
  .photo-modal-content{
    height: 100dvh; max-height: 100dvh; overflow: hidden;
  }
  .photo-modal-body{
    height: 100%; overflow: auto; -webkit-overflow-scrolling: touch;

    
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }


  .photo-original,
  .photo-generated{
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100%;
	top:15px !important;
  }

 
  :root{
    --img-w: 100% ;
    --img-h: 200px;
    --thumb-w: 72px;
    --thumb-h: 48px;
  }
  /* Original (top) image */
  #modal-original-img{
    width: var(--img-w) !important;
    height: var(--img-h);
    object-fit: cover !important;
    display: block;
    margin: 0 auto;
  }

 
  .render-image-wrapper{
    width: var(--img-w) !important;
    height: var(--img-h);
    margin: 0 auto; 
    overflow: hidden;
  }
  .render-image-wrapper img{
    width: 100%; height: 100%; object-fit: contain; display: block;
  }


  #generated-slider{ overflow: hidden; max-width: 100%;  height:100% !important; }
  #generated-slider .slick-list{ height: auto !important; overflow: visible; }
  #generated-slider .slick-track{ display: flex; align-items: center; }
  #generated-slider .slick-slide{
    display: flex !important;         
    justify-content: center;
    align-items: center;
  }

 
  .carousel-thumbs{
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    display: flex; gap: 10px; flex-wrap: nowrap;
    padding: 8px 10px; margin-top: 0px !important;
    background: rgba(255,255,255,.95);
  }
  .carousel-thumbs .thumb{
    width: var(--thumb-w); height: var(--thumb-h);
    border: 2px solid transparent; border-radius: 8px; overflow: hidden;
    flex: 0 0 auto;
  }
  .carousel-thumbs .thumb.active{ border-color: #111; }
  .carousel-thumbs .thumb img{ width: 100%; height: 100%; object-fit: cover; display: block; }

 
  .modal-actions select,
  .modal-actions button,
  .modal-actions input{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ===== DESKTOP fixes (keep your mobile rules intact) ===== */
@media (min-width: 769px){

  /* Two equal columns, top-aligned */
 /* .photo-modal-body{
    display:grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items:start;
  }*/

 
  .photo-original #modal-original_img,
  .render-image-wrapper{
    max-width: 100%;            
    display:block;
    margin:0 auto;
	padding-top:40px; 
    overflow:hidden;
  }
  .photo-original img,
  .render-image-wrapper img{
    width:100%; height:100%; object-fit:contain; display:block;
  }

 
  .generated-carousel{ position:relative; }
  #generated-slider .slick-list{ overflow: visible; } 
  .slick-arrow{ z-index: 4; }                         
  
	
  .render-meta{
    position:absolute; 
	top: 1px;    
    z-index: 5;
    background: rgba(255,255,255,.96);
    padding: 2px 4px;
    border-radius: 8px;
    display:flex; 
	justify-content: center;  
	gap:16px; 
	align-items:center;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(224, 230, 237);	  
    white-space: nowrap;
  }

 
     

 
  #generated-slider:not(.slick-initialized){
    display:block;
  }
  #generated-slider:not(.slick-initialized) .slide{
    display:flex; justify-content:center; align-items:center;
  }

  
  .photo-original,
  .photo-generated,
  .generated-carousel,
  #generated-slider,
  #generated-slider .slick-slider,
  #generated-slider .slick-list,
  #generated-slider .slick-track,
  #generated-slider .slick-slide{
    margin-top:0 !important;
    padding-top:0 !important;
  }
}




header.entry-header .entry-title {
	display:none;
	}
	/* Core Layout and Typography */
  body {
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background-color: #fafbfc;
    }
    .my-settings-wrapper {
      width: 100%;
      margin: 40px auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .settings-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #0D0D0D;
    }
    .settings-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      padding: 24px;
      border: 1px solid #e0e6ed;
		margin-bottom: 20px;
    }
    .settings-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .settings-card p {
      font-size: 0.95rem;
      color: #333;
      margin: 4px 0;
    }
    /* Billing */
    .billing-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .next-payment {
      margin-top: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .strike {
      text-decoration: line-through;
      color: #888;
      margin-right: 4px;
    }
    /* Plan */
    .plan-card {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
    }
    .plan-features {
      list-style: none;
      padding: 0;
      margin: 10px 0 0 0;
      font-size: 0.9rem;
      color: #444;
    }
    .plan-features li::before {
      content: "✔";
      color: #38a169;
      margin-right: 8px;
    }
    .plan-meta {
      text-align: right;
    }
    .next-date {
      font-size: 0.85rem;
      color: #666;
    }
	
	.plan-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
}

.plan-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popular-badge {
    background-color: #f05455;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
}

	.plan-info {
	font-weight:500;	
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: #0D0D0D;
}

.plan-info li {
    margin-bottom: 4px;
}

/* Plan Meta Section */
.plan-meta {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 10px;
}

.plan-meta p {
    margin: 0;
    font-size: 0.95rem;
    color: #2d3748;
}

.plan-meta .next-date {
    font-size: 0.85rem;
    color: #718096;
}
	
    .plan-actions {
      margin-top: 12px;
      display: flex;
      gap: 10px;
      justify-content: flex-end;
    }
    /* Credits */
    .credits-progress-bar {
      width: 100%;
      height: 10px;
      background-color: #edf2f7;
      border-radius: 5px;
      margin: 10px 0;
      overflow: hidden;
    }
    .credits-progress {
      height: 100%;
      background: #2b6cb0;
      transition: width 0.4s ease;
    }

    .credits-progress-bar-2 {
      width: 100%;
      height: 10px;
      background-color: #edf2f7;
      border-radius: 5px;
      margin: 10px 0;
      overflow: hidden;
    }
    .credits-progress-2 {
      height: 100%;
      background: #2b6cb0;
      transition: width 0.4s ease;
    }
    .refill-note {
      font-size: 0.85rem;
      color: #666;
    }
    /* Buttons */
    .btn {
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 0.9rem;
      cursor: pointer;
      border: none;
      font-weight: 500;
    }
    .outline-btn {
      background: #F05455;
      color: #fff;;
    }
    .outline-btn:hover {
      background: #f56565;
    }
    .danger-btn {
      background: #f05455;
      color: #fff;
    }
    .danger-btn:hover {
      background: #f56565;
    }
.slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.render-image-wrapper {
  text-align: center;
}

.render-image-wrapper img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
}

.render-meta {
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;	
  padding: 2px 20px;

}

.render-meta p {
  margin: 4px 0;
  color: #333;
  font-size: 14px;
}

.no-meta {
  color: #888;
  font-style: italic;
}


.download-btn {
    display: inline-block;
    padding: 1px 5px;
    background: #f05455;
    color: #fff;
    border-radius: 4px;
	font-size:13px;
    text-decoration: none !important;
    transition: 0.2s 
ease-in-out;
}

.download-btn:hover {
  background: #dc2626;
  color: #fff;
}

.woocommerce-js button.button{
	background:#f05455 !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover{
	background:#f05455 !important;
	color:white !important;
}

.woocommerce .woocommerce-message a.button{
	background:#f05455 !important;
	border-radius:10px !important;
}

.woocommerce-message, {
    border-top-color: #cfcfcf !important;
}

.woocommerce-message:active {
    border:none !important;
}


	:root {
    --ast-global-color-0:#000000 !important;
}


/* Base border */
/*.woocommerce-notices-wrapper .woocommerce-message{
  border-top:1px solid #e5e7eb;           
       
}*/

/* Custom focus ring instead of blue */
.woocommerce-notices-wrapper .woocommerce-message:focus,
.woocommerce-notices-wrapper .woocommerce-message:focus-visible,
.woocommerce-notices-wrapper .woocommerce-message:focus-within{
  outline:none !important;
  outline-offset: 2px;
  box-shadow: none !important;
}

/* Same idea for info/error */
.woocommerce-notices-wrapper .woocommerce-info{ border-left-color:#3b82f6; }
.woocommerce-notices-wrapper .woocommerce-error{ border-left-color:#ef4444; }

/* Woo Blocks variant */
.wc-block-components-notice{
  border:1px solid #e5e7eb !important;
}
.wc-block-components-notice:focus,
.wc-block-components-notice:focus-visible{
  outline:2px solid gray !important;
  outline-offset:2px;
  box-shadow:none !important;
}

.loading-spinner {
	position:absolute;
	width:100%;
	height:100%;
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 14px;
}
.loading-spinner .spinner {
  border: 3px solid #ccc;
  border-top: 3px solid #f05455;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 auto 8px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

#loading-footer {
	position:relative;
	width:100%;
	height:100px;
}

.remove-furniture-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
}

.remove-furniture-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.remove-furniture-label span {
    color: #333;
    transition: color 0.3s ease;
}

.remove-furniture-label input[type="checkbox"]:checked + span {
    color: #dc2626;
}