/*
Theme Name: WPStoreTools
Theme URI: https://wpstoretools.com
Author: WPStoreTools
Author URI: https://wpstoretools.com
Description: Premium WooCommerce & WordPress solutions company theme. A conversion-focused home page for selling plugins, themes, and WooCommerce development services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: addition-pro
Tags: e-commerce, custom-menu, featured-images, full-width-template, translation-ready
*/

/* This file intentionally left minimal — real styles live in assets/css/style.css
   so we can safely enqueue with proper versioning/cache-busting. Do not remove: WP requires this header. */

.custom-logo-link img{
	    width: 100px;
    height: 69px;
    object-fit: contain;
}
/* ---- REVIEW MODAL: sirf form dikhana hai, upar wali reviews list chhupani hai ---- */

/* WooCommerce template ka #comments block = heading + reviews list + "no reviews" msg — ye poora chhupana hai */
#spd-review-modal-overlay #comments{
  display:none;
}

/* Baaki sirf form wrapper hi dikhega */
#spd-review-modal-overlay #review_form_wrapper{
  margin:0;
}
#spd-review-modal-overlay #review_form_wrapper #reply-title{
  display:none; /* "Add a review" wala default heading agar dikhe to hide, hum apna heading chahein to alag se likh lenge */
}

/* Modal box ke andar generic spacing/typography match karne ke liye */
#spd-review-modal-overlay .comment-form-rating label,
#spd-review-modal-overlay label{
  font-size:12.5px;font-weight:600;color:var(--ink);
}
/* ---- Rating stars: WooCommerce ke asal markup/classes ke mutabiq ---- */
#spd-review-modal-overlay p.stars{
  margin:6px 0 14px;padding:0;
}
#spd-review-modal-overlay p.stars a{
  position:relative;
  display:inline-block;
  width:20px;height:20px;
  font-size:0;              /* "1 of 5 stars" text chhupana */
  text-decoration:none;
  margin-right:2px;
}
#spd-review-modal-overlay p.stars a::before{
  content:"\2605";           /* ★ */
  font-size:20px;
  line-height:1;
  color:#dfe3ea;             /* default grey star */
  position:absolute;
  left:0;top:0;
}

/* Hover state: jitne stars pe cursor jaye utne amber ho jayen */
#spd-review-modal-overlay p.stars:hover a::before{
  color:#dfe3ea;
}
#spd-review-modal-overlay p.stars a:hover::before,
#spd-review-modal-overlay p.stars a:hover ~ a::before{
  color:#f5a623;
}

/* Selected/active state — WooCommerce JS in classes ko click par add karta hai */
#spd-review-modal-overlay p.stars a.active::before,
#spd-review-modal-overlay p.stars a.selected::before{
  color:#f5a623;
}

/* "Clear rating" (x) link ko chhupana agar dikhe */
#spd-review-modal-overlay p.stars a.star-clear{
  display:none;
}
#spd-review-modal-overlay p.comment-form-comment{margin:14px 0;}
#spd-review-modal-overlay textarea{
  width:100%;border:1px solid var(--line);border-radius:10px;padding:10px 12px;
  font-size:13px;font-family:inherit;color:var(--ink);resize:vertical;margin-top:6px;
}
#spd-review-modal-overlay textarea:focus{outline:none;border-color:var(--blue);}
#spd-review-modal-overlay .form-submit input[type="submit"]{
      background: linear-gradient(120deg, #3b7dfb, #8b5cf6);
    color: #fff !important;;border:none;border-radius:10px;
  padding:11px 22px;font-weight:700;font-size:13.5px;cursor:pointer;margin-top:6px;
}
#spd-review-modal-overlay .form-submit input[type="submit"]:hover{transform:translateY(-2px);}
/* Modal overlay/box (agar pehle add nahi kiya) */
.spd-modal-overlay{
  display:none;position:fixed;inset:0;background:rgba(15,27,45,.55);
  z-index:9999;align-items:center;justify-content:center;padding:20px;
}
.spd-modal-overlay.is-open{display:flex;}
.spd-modal-box{
  background:#fff;border-radius:16px;max-width:480px;width:100%;
  max-height:88vh;overflow-y:auto;padding:26px;position:relative;
}
.spd-modal-close{
  position:absolute;top:14px;right:16px;background:none;border:none;
  font-size:26px;line-height:1;color:var(--muted);cursor:pointer;
}
.spd-modal-close:hover{color:var(--ink);}