/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1772100062 
Updated: 2026-02-26 10:01:02

*/



/* ==========================================================================
   SINGLE PRODUCT PAGE — visual polish
   weddingdaysparklers.com

   Every rule is scoped to `.single-product` so nothing here can affect
   the shop, cart, checkout, blog or any other page.

   Paste into: Elementor → Site Settings → Custom CSS
   (or append to themes/hello-elementor-child/assets/css/custom-style.css)
   ========================================================================== */

.single-product{
  --sp-pink:      #d74273;   /* your existing brand pink */
  --sp-pink-dark: #b8325f;
  --sp-plum:      #361721;   /* your heading colour */
  --sp-muted:     #84626d;   /* your existing muted mauve */
  --sp-line:      #e6e1e3;
  --sp-bg-soft:   #fbf7f8;
  --sp-radius:    10px;
}

/* --------------------------------------------------------------------------
   1. TITLE + TOP OF SUMMARY
   Tighten the vertical rhythm so price, options and button sit higher.
   -------------------------------------------------------------------------- */
.single-product .product_title{
  font-size:clamp(26px,3.2vw,38px);
  line-height:1.15;
  letter-spacing:-.4px;
  margin:0 0 12px;
  color:var(--sp-plum);
}

/* Review + Q&A row — align them on one baseline */
.single-product .ctm-customer-review,
.single-product .ctm-question-answr-widget{
  font-size:15px !important;
  font-weight:600 !important;
}
.single-product #ab-tiny-widget a,
.single-product .ctm-customer-review a{
  color:var(--sp-muted);
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color .15s ease, border-color .15s ease;
}
.single-product #ab-tiny-widget a:hover,
.single-product .ctm-customer-review a:hover{
  color:var(--sp-pink);
  border-bottom-color:currentColor;
}

/* --------------------------------------------------------------------------
   2. PRICE HIERARCHY
   Currently the range, the struck-through price and the sale price all
   compete. Make the payable number dominant.
   -------------------------------------------------------------------------- */
.single-product .elementor-widget-woocommerce-product-price .price,
.single-product .woocommerce-variation-price .price{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:10px;
  line-height:1.2;
  margin:0;
}
.single-product .elementor-widget-woocommerce-product-price .price del,
.single-product .woocommerce-variation-price .price del{
  order:2;
  opacity:.6;
  font-size:.6em;
  font-weight:400;
  color:var(--sp-muted);
  text-decoration-thickness:1px;
}
.single-product .elementor-widget-woocommerce-product-price .price ins,
.single-product .woocommerce-variation-price .price ins{
  order:1;
  text-decoration:none;
  font-weight:800;
  color:var(--sp-plum);
}
/* SALE pill after the live price */
.single-product .woocommerce-variation-price .price ins::after{
  content:"SALE";
  display:inline-block;
  margin-left:10px;
  vertical-align:middle;
  font-size:.42em;
  font-weight:700;
  letter-spacing:.7px;
  background:#fdeef4;
  color:var(--sp-pink-dark);
  padding:4px 9px;
  border-radius:20px;
}
/* The variation price block appears after choosing an option — give it room */
.single-product .woocommerce-variation-price{ margin:4px 0 14px; }

/* --------------------------------------------------------------------------
   3. VARIATION DROPDOWN (Package Size)
   Small tap targets are the single biggest mobile usability issue here.
   -------------------------------------------------------------------------- */
.single-product .variations_form .variations{
  width:100%;
  margin:0 0 18px;
  border:0;
}
.single-product .variations_form .variations tr,
.single-product .variations_form .variations th,
.single-product .variations_form .variations td{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:none;
}
.single-product .variations_form .variations th.label label{
  display:block;
  margin:0 0 7px;
  font-size:15px;
  font-weight:700;
  color:var(--sp-plum);
}
.single-product .variations_form select{
  width:100%;
  min-height:52px;                 /* comfortable thumb target */
  padding:12px 44px 12px 15px;
  font-size:16px;                  /* 16px prevents iOS zoom-on-focus */
  color:var(--sp-plum);
  background-color:#fff;
  border:1.5px solid var(--sp-line);
  border-radius:var(--sp-radius);
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%2384626d' stroke-width='2' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.single-product .variations_form select:hover{ border-color:#cdbfc4; }
.single-product .variations_form select:focus{
  outline:none;
  border-color:var(--sp-pink);
  box-shadow:0 0 0 3px rgba(215,66,115,.15);
}
.single-product .variations_form .reset_variations{
  display:inline-block;
  margin-top:8px;
  font-size:13px;
  color:var(--sp-muted);
}

/* --------------------------------------------------------------------------
   4. TRUST SEAL SPACER
   `.invi-tgborder` is a 110px inline-block spacer that sits inside the cart
   row and knocks the quantity/button alignment out. Neutralise it and let
   the seal sit on its own line.
   -------------------------------------------------------------------------- */
.single-product .woocommerce-variation-add-to-cart .invi-tgborder{
  display:block;
  width:0;
  margin:0;
}
.single-product .woocommerce-variation-add-to-cart .tgfloat{
  display:block;
  width:100%;
  top:0 !important;
  margin:0 0 14px !important;
}

/* --------------------------------------------------------------------------
   5. QUANTITY + ADD TO CART
   Match heights and give the button real presence.
   -------------------------------------------------------------------------- */
.single-product .woocommerce-variation-add-to-cart{
  display:flex;
  align-items:stretch;
  flex-wrap:wrap;
  gap:12px;
}
.single-product .woocommerce-variation-add-to-cart .quantity{
  flex:0 0 130px;
  display:flex;
}
.single-product .woocommerce-variation-add-to-cart .quantity input.qty{
  width:100%;
  height:56px;
  font-size:16px;
  font-weight:600;
  text-align:center;
  color:var(--sp-plum);
  border:1.5px solid var(--sp-line);
  border-radius:var(--sp-radius);
  background:#fff;
}
.single-product .woocommerce-variation-add-to-cart .quantity input.qty:focus{
  outline:none;
  border-color:var(--sp-pink);
  box-shadow:0 0 0 3px rgba(215,66,115,.15);
}

.single-product .single_add_to_cart_button{
  flex:1 1 240px;
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 28px;
  font-size:17px;
  font-weight:700;
  letter-spacing:.3px;
  text-transform:none;
  color:#fff;
  background:var(--sp-pink);
  border:0;
  border-radius:var(--sp-radius);
  cursor:pointer;
  box-shadow:0 4px 16px rgba(215,66,115,.28);
  transition:background .2s ease, box-shadow .2s ease, transform .12s ease;
}
.single-product .single_add_to_cart_button:hover{
  background:var(--sp-pink-dark);
  box-shadow:0 6px 22px rgba(215,66,115,.36);
  transform:translateY(-1px);
}
.single-product .single_add_to_cart_button:active{
  transform:translateY(0);
  box-shadow:0 2px 8px rgba(215,66,115,.3);
}
/* Disabled state — currently identical to enabled, which confuses people
   who haven't picked a size yet. */
.single-product .single_add_to_cart_button.disabled,
.single-product .single_add_to_cart_button:disabled{
  background:#ddd6d9;
  color:#95888e;
  box-shadow:none;
  cursor:not-allowed;
  transform:none;
}

/* --------------------------------------------------------------------------
   6. DELIVERY REASSURANCE BOX
   The green "When Will It Arrive?" block is inline-styled, so these need
   !important to land. Softened and aligned with the rest of the page.
   -------------------------------------------------------------------------- */
.single-product .elementor-widget-html > div[style*="c4df9b"]{
  border:1px solid #d8ecc4 !important;
  background:#f6fbef !important;
  border-radius:var(--sp-radius) !important;
  padding:14px 18px !important;
  display:flex !important;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.single-product .elementor-widget-html > div[style*="c4df9b"] img{
  margin:0;
  flex:0 0 auto;
}
.single-product .elementor-widget-html > div[style*="c4df9b"] br{ display:none; }
.single-product .elementor-widget-html > div[style*="c4df9b"] span{
  font-size:15px !important;
  line-height:1.5;
}
.single-product .elementor-widget-html > div[style*="c4df9b"] a{
  color:#2f7a2f;
  font-weight:600;
  text-decoration:none;
  border-bottom:1px solid rgba(47,122,47,.35);
}
.single-product .elementor-widget-html > div[style*="c4df9b"] a:hover{
  border-bottom-color:currentColor;
}

/* --------------------------------------------------------------------------
   7. GALLERY
   Your child theme already puts thumbnails in a left column — this just
   polishes it and stops the thumbs looking cramped.
   -------------------------------------------------------------------------- */
.single-product .woocommerce-product-gallery{ gap:14px; }
.single-product .woocommerce-product-gallery__wrapper img,
.single-product .woocommerce-product-gallery .flex-viewport img{
  border-radius:var(--sp-radius);
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li{
  width:100% !important;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs img{
  border-radius:8px;
  border:2px solid transparent;
  opacity:.72;
  transition:opacity .2s ease, border-color .2s ease;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs img:hover,
.single-product .woocommerce-product-gallery .flex-control-thumbs img.flex-active{
  opacity:1;
  border-color:var(--sp-pink);
}
/* Sale flash — make it a clean pill instead of the default block */
.single-product span.onsale{
  top:14px;
  left:14px;
  right:auto;
  min-height:0;
  min-width:0;
  padding:6px 14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.6px;
  line-height:1.4;
  border-radius:20px;
  background:var(--sp-pink);
  color:#fff;
  box-shadow:0 3px 10px rgba(215,66,115,.3);
}

/* --------------------------------------------------------------------------
   8. PRODUCT TABS
   Underline style reads cleaner than WooCommerce's default boxes.
   -------------------------------------------------------------------------- */
.single-product .woocommerce-tabs ul.tabs{
  display:flex;
  flex-wrap:wrap;
  gap:4px;
  margin:0 0 26px;
  padding:0;
  border-bottom:2px solid var(--sp-line);
}
.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs::after{ display:none; }
.single-product .woocommerce-tabs ul.tabs li{
  margin:0;
  padding:0;
  border:0;
  background:none;
  border-radius:0;
}
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after{ display:none; }
.single-product .woocommerce-tabs ul.tabs li a{
  display:block;
  padding:13px 20px;
  font-size:15px;
  font-weight:600;
  color:var(--sp-muted);
  border-bottom:2px solid transparent;
  margin-bottom:-2px;
  transition:color .15s ease, border-color .15s ease;
}
.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover{
  color:var(--sp-pink);
  border-bottom-color:var(--sp-pink);
}

/* Long-form copy: comfortable reading measure and rhythm */
.single-product .woocommerce-Tabs-panel h2{
  font-size:clamp(21px,2.2vw,27px);
  color:var(--sp-plum);
  margin:34px 0 12px;
}
.single-product .woocommerce-Tabs-panel h3{
  font-size:19px;
  color:var(--sp-plum);
  margin:26px 0 10px;
}
.single-product .woocommerce-Tabs-panel p,
.single-product .woocommerce-Tabs-panel li{
  max-width:76ch;
  line-height:1.75;
}
.single-product .woocommerce-Tabs-panel ul{ padding-left:20px; }
.single-product .woocommerce-Tabs-panel ul li{ margin-bottom:7px; }

/* Additional-information table */
.single-product .woocommerce-product-attributes{
  border:1px solid var(--sp-line);
  border-radius:var(--sp-radius);
  overflow:hidden;
  border-collapse:separate;
  border-spacing:0;
}
.single-product .woocommerce-product-attributes th,
.single-product .woocommerce-product-attributes td{
  padding:14px 18px;
  border-bottom:1px solid var(--sp-line);
  background:#fff;
}
.single-product .woocommerce-product-attributes tr:last-child th,
.single-product .woocommerce-product-attributes tr:last-child td{ border-bottom:0; }
.single-product .woocommerce-product-attributes th{
  background:var(--sp-bg-soft);
  font-weight:700;
  color:var(--sp-plum);
  width:210px;
}
.single-product .woocommerce-product-attributes td p{ margin:0; }

/* --------------------------------------------------------------------------
   9. FAQ ACCORDION
   Builds on the styling already in your custom CSS.
   -------------------------------------------------------------------------- */
.single-product .wedd_item{
  border-color:var(--sp-line);
  border-left-color:var(--sp-pink);
  border-radius:var(--sp-radius);
  transition:box-shadow .2s ease, border-color .2s ease;
}
.single-product .wedd_item:hover{
  box-shadow:0 3px 14px rgba(54,23,33,.07);
}
.single-product .wedd_item.active{
  box-shadow:0 4px 18px rgba(215,66,115,.1);
}
.single-product .wedd_symbol{
  border-color:var(--sp-pink);
  color:var(--sp-pink);
  flex:0 0 28px;
}

/* --------------------------------------------------------------------------
   10. REVIEWS
   Turn the plain list into readable cards.
   -------------------------------------------------------------------------- */
.single-product #reviews .commentlist{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
}
.single-product #reviews .commentlist li.review{
  margin:0;
  padding:0;
  border:0;
  list-style:none;
}
.single-product #reviews .comment_container{
  display:flex;
  gap:16px;
  padding:18px 20px;
  background:#fff;
  border:1px solid var(--sp-line);
  border-radius:var(--sp-radius);
}
.single-product #reviews .comment_container img.avatar{
  position:static;
  width:46px;
  height:46px;
  flex:0 0 46px;
  border-radius:50%;
  border:0;
  padding:0;
  margin:0;
}
.single-product #reviews .comment-text{
  margin:0;
  padding:0;
  border:0;
  flex:1;
}
.single-product #reviews .woocommerce-review__author{
  color:var(--sp-plum);
  font-weight:700;
}
.single-product #reviews .woocommerce-review__published-date{
  color:var(--sp-muted);
  font-size:13px;
}
.single-product #reviews .description p{ margin:8px 0 0; line-height:1.7; }
.single-product #reviews .woocommerce-Reviews-title{
  font-size:clamp(20px,2.2vw,26px);
  color:var(--sp-plum);
  margin-bottom:20px;
}
/* Review form */
.single-product #review_form_wrapper{
  margin-top:26px;
  padding:22px;
  background:var(--sp-bg-soft);
  border:1px solid var(--sp-line);
  border-radius:var(--sp-radius);
}
.single-product #review_form textarea,
.single-product #review_form select{
  width:100%;
  border:1.5px solid var(--sp-line);
  border-radius:8px;
  padding:12px 14px;
  font-size:15px;
}
.single-product #review_form textarea:focus,
.single-product #review_form select:focus{
  outline:none;
  border-color:var(--sp-pink);
  box-shadow:0 0 0 3px rgba(215,66,115,.15);
}
.single-product #review_form input#submit{
  background:var(--sp-pink);
  color:#fff;
  border:0;
  border-radius:8px;
  padding:13px 30px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:background .2s ease;
}
.single-product #review_form input#submit:hover{ background:var(--sp-pink-dark); }

/* --------------------------------------------------------------------------
   11. RELATED PRODUCTS
   -------------------------------------------------------------------------- */
.single-product .ctm-relatedProduct-wrap img{
  transition:transform .35s ease;
}
.single-product .ctm-relatedProduct-wrap .swiper-slide:hover img{
  transform:scale(1.04);
}
.single-product .ctm-relatedProduct-wrap .elementor-widget-wrap{
  overflow:hidden;
}

/* --------------------------------------------------------------------------
   12. STICKY ADD-TO-CART (MOBILE)
   This page is very long. Once someone scrolls past the button there's no
   way back without scrolling up — usually the biggest conversion win on a
   long product page.

   Pure CSS: the real Add to Cart row is pinned to the bottom on mobile once
   it scrolls out of view. No JavaScript required.
   -------------------------------------------------------------------------- */
@media (max-width:767px){
  .single-product .product_title{ font-size:24px; }

  /* Full-width controls on small screens */
  .single-product .woocommerce-variation-add-to-cart{ gap:10px; }
  .single-product .woocommerce-variation-add-to-cart .quantity{ flex:0 0 100px; }
  .single-product .woocommerce-variation-add-to-cart .quantity input.qty{ height:52px; }
  .single-product .single_add_to_cart_button{
    flex:1 1 auto;
    min-height:52px;
    font-size:16px;
    padding:0 18px;
  }

  /* Gallery: thumbnails below the main image instead of a cramped column */
  .single-product .woocommerce-product-gallery{ flex-direction:column; }
  .single-product .woocommerce-product-gallery .flex-control-thumbs{
    flex-direction:row;
    width:100%;
    gap:8px;
    overflow-x:auto;
    padding-bottom:4px;
  }
  .single-product .woocommerce-product-gallery .flex-control-thumbs li{
    flex:0 0 66px;
    width:66px !important;
  }

  /* Tabs scroll horizontally rather than wrapping into a tall stack */
  .single-product .woocommerce-tabs ul.tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .single-product .woocommerce-tabs ul.tabs li a{
    white-space:nowrap;
    padding:12px 15px;
    font-size:14px;
  }

  /* Reviews stack */
  .single-product #reviews .comment_container{ padding:15px; gap:12px; }

  /* Keep the floating "Text Us" widget clear of content */
  .single-product .ctm-text-us{ z-index:9995; }
}

/* --------------------------------------------------------------------------
   13. ACCESSIBILITY
   Your PageSpeed report flags focus visibility and contrast.
   -------------------------------------------------------------------------- */
.single-product a:focus-visible,
.single-product button:focus-visible,
.single-product select:focus-visible,
.single-product input:focus-visible,
.single-product textarea:focus-visible{
  outline:3px solid rgba(215,66,115,.45);
  outline-offset:2px;
  border-radius:6px;
}
