/* =========================================================
   PET WEBSITE DESIGNS - DESKTOP SITE STYLES
   Consolidated desktop stylesheet
   Includes current desktop styles plus limited page-specific responsive rules.
   ========================================================= */

:root {
    --pws-pink: #ff239b;
    --pws-text: #555;
    --pws-muted: #777;
    --pws-border: #e2e2e2;
    --pws-black: #050505;
}

/* =========================================================
   01. BASE / GLOBAL STYLES
   ========================================================= */
@import url("https://fonts.googleapis.com/css?family=Roboto:400");

html *,
body {
	font-family:"Segoe UI", Roboto, helvetica, arial;
	font-size:19px;
    letter-spacing: -0.01em;
	font-weight:300;
	line-height:1.4;
	box-sizing: border-box;
	padding:0;
	margin:0;
}

html,
body {
    min-height: 100%;
}

body.home .nav-home a,
body.services .nav-services a,
body.templates .nav-templates a,
body.resources .nav-resources a,
body.contact .nav-contact a {
	color:#ff239b;
}

body.templates .pg-01 a,
body.templates .pg-02 a,
body.templates .pg-03 a,
body.blog .pg-01 a {
	background-color:#000;
	color:#fff;
}

.wrapper {
	width:100%;
	max-width:1140px;
	display:block;
	margin:0 auto;
}

.page-main {
    padding-top: 175px;
}

/*--- menu ---*/

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  top:0;
  right:0;
  left:0;
  transition: top 0.5s ease, background-color 0.5s ease;
  z-index:9999;
  padding:5px 0px 10px 0px;
}

nav .wrapper {
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo {
    width: 320px;
    height: auto;
    margin: 5px 0 0 0;
    transition:
        width 0.5s ease,
        margin 0.5s ease;
}

.main-nav {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    height:105px;
    margin-top:5px;
    margin-left:auto;
    float:none;
}

.main-nav li {
	list-style-type:none;
}

.main-nav li a {
    color:#fff;
    text-decoration:none;
    text-transform:capitalize;
    font-size:100%;
    letter-spacing:1px;
    padding:0 12px;
    font-weight:300;
}

.main-nav li a:hover {
	color:#ff239b;
}

.burger {
	display:none;
}

.burger div {
	width:35px;
	height:1px;
	background-color:#fff;
	margin:10px;
	transition: all 0.3s ease;
}

.cart-visible a {
	display:none;
	color:#fff;
	text-decoration:none;
	text-transform:capitalize;
	font-size:100%;
	letter-spacing:1px;
	padding:0px 12px;
	position:absolute;
	top:22px;
	right:60px;
}

.cart-visible a:hover {
	color:#ff239b;
}

/*--- end of menu ---*/

h1 {
	font-size:140%;
	color:#777;
	margin:0px;
	padding:0px;
	text-align:center;
}

h1.hero {
	display:block;
	width:100%;
	font-size:210%;
	color:#fff;
	margin:0px 0px 0px 0px;
	padding:0px;
	text-align:left;
}

h1.preview {
	font-size:150%;
	color:#777;
	margin:0px;
	padding:0px;
	text-align:center;
	text-transform:capitalize;
}

.pink {
	color:#ff239b;
}

.bold {
	font-weight:bold;
}

.med-font {
	font-size:34px;
}

.lg-font {
	font-size:200%;
}

.add-br{
	display:none;
}

.contact-add-br { display:none; }

a:active,
a:focus {
    outline: none;
}

.clear {
    clear: both;
}

img {
    border: 0px;
}

a[href^="mailto"]{
	color:#ff239b;
}

.main-img {
	display:flex;
	justify-content:center;
	margin:20px auto;
	padding:10px;
	border:1px solid #b2b2b2;
	width:900px;
	height: auto;
}

.service-img {
	display:flex;
	justify-content:center;
	margin:20px auto;
	padding:0px;
	width:780px;
	height: auto;
}

hr.main {
	border:0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	margin:30px auto 20px auto;
	padding:0px;
	width:65%;
}

hr.sml {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	margin:10px auto 10px auto;
	padding:0px;
	width:50%;
}

input[type=submit], ul.nav-buttons li a, a:link {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

header {
	background-image:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/pages/home-hero.jpg);
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	width:100%;
	height:100vh;
}

.hero-text-box {
	position:absolute;
	top:30%;
	padding:0;
	margin:0;
	display:block;
	width:100%;
	max-width:1140px;
}

.hero-button:link,
.hero-button:visited {
	display:inline-block;
	width:180px;
	padding:10px 20px;
	font-size:21px;
	color:#fff;
	text-decoration:none;
	letter-spacing:2px;
	border:1px solid #fff;
	text-align:center;
	margin:80px 20px 0px 0px;
	background-color:transparent;
}

.hero-button:hover {
	background-color:#ff239b;
}

h2 {
	font-size:120%;
	color:#777;
	text-align:center;
	margin:0px 0px 20px 0px;
}

h2.main {
	font-size:110%;
	color:#777;
	text-align:center;
	margin:20px 0px 20px 0px;
}

h2.body {
	font-size:130%;
	color:#777;
	text-align:center;
	margin:20px 0px 0px 0px;
}

h2.preview {
	font-size:110%;
	color:#777;
	text-align:center;
	margin:20px 0px 20px 0px;
}

h2.hero {
	font-size:140%;
	color:#fff;
	text-align:left;
	margin:0px 0px 20px 0px;
}

h2.light {
	font-size:110%;
	color:#fff;
	text-align:center;
	margin:0px 0px 0px 0px;
}

h3 {
	font-size:100%;
	color:#777;
	text-align:left;
}

h3.center {
	font-size:100%;
	color:#777;
	text-align:center;
}

h3.description {
	width:960px;
	margin:0 auto;
	font-size:19px;
	color:#2b2b2b;
	padding:10px;
	text-align:left;
}

h4 {
	font-size: 60%;
	text-align:center;
	color:#fff;
	letter-spacing:5px;
}

h4 a:link,
h4 a:visited {
	color:#fff;
	text-decoration:none;
	padding-bottom:0px;
	font-size:17px;
}

h4 a:hover {
	color:#ff239b;
}

.navbar-no-hero {
	background-color: rgba(0,0,0,0.83);
	width:100%;
	position:fixed;
	top:0;
	padding:0px 0px 5px 0px;
	margin:0;
	transition: ease .7s;
	height:115px;
}

.shrink {
  
  height:80px;
}

.logo-small {
    width:245px;
    height:auto;
    margin:4px 0 0 0;
}

.scrolled {
  background-color:rgba(0, 0, 0, 0.83);
}

.paypal {
	width:100%;
	margin:0 auto;
	text-align:center;
}

.paypal img {
	width:180px;
	height:auto;
}

.intro {
	width:100%;
	background-color:#000;
	padding:20px 0px;
	margin:0 auto;
}

.lft {
	float:left;
	width: 33%;
	height:290px;
	border-right:1px solid #000;
	margin:30px 0px 30px 0px;
	padding:5px;
}

.mdl {
	float:left;
	width:33%;
	height:290px;
	border-right:1px solid #000;
	margin:30px 0px 30px 0px;
	padding:5px;
}

.rgt {
	float:left;
	width: 33%;
	height:290px;
	border-right:1px solid transparent;
	margin:30px 0px 30px 0px;
	padding:5px;
}

ul.services {
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	list-style-type:none;
	margin:15px 0px 0px 0px;
	padding:0;
}

ul.services li {
	border:1px solid #7f7f7f;
	display:block;
	width:30%;
	height:210px;
	margin:5px;
	padding:15px 10px;
}

ul.services li .icons {
	align-items: center;
	display:block;
	color:#ff239b;
	font-size:48px;
	text-align:center;
}

ul.services li p.title {
	font-size:25px;
	color:#000;
	text-align:center;
	text-transform:capitalize;
	text-decoration:underline;
}

ul.services li p.details {
	font-size:19px;
	color:#222;
	text-align:center;
}

.blog {
	width:1140px;
	display:block;
	margin:0px auto 30px auto;
	padding:0px;
}

.blog .lft-blog {
	float:left;
	width:80%;
	border-right:1px solid #2f2f2f;
	padding:0px 10px 0px 10px;
}

.blog .lft-blog p.title {
	font-size:29px;
	color:#2b2b2b;
	text-align:center;
	text-transform:capitalize;
	font-weight:bold;
	margin:35px 0px 30px 0px;
}

.blog .lft-blog img {
	display:block;
	
	width:100%;
	height:auto;
	border:1px solid #7f7f7f;
	padding:5px;
	margin:0 auto;
}

.blog .lft-blog p.details {
	width:100%;
	margin:0 auto;
	color:#2b2b2b;
	padding:20px 10px 40px 10px;
	text-align:left;
}

.blog .lft-blog p.details a {
	color:#000;
	text-decoration:underline;
}

.blog .lft-blog p.details a:hover {
	color:#ff239b;
}

.blog .lft-blog .read-more a {
	display:flex;
	justify-content: center;
	width:290px;
	padding:10px 0px;
	font-size:21px;
	color:#fff;
	text-decoration:none;
	letter-spacing:2px;
	border:2px solid #2f2f2f;
	background-color:#000;
	text-align:center;
	margin:10px auto 0px auto;
	text-transform:capitalize;
}

.blog .lft-blog .read-more a:hover {
	color:#2f2f2f;
	background-color:#fff;
}

.blog .lft-blog hr.main {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	margin:50px auto 20px auto;
	padding:0px;
	width:75%;
}

.blog .rgt-blog {
	float:left;
	width:15%;
	padding:0px 10px;
}

.blog .rgt-blog p.title {
	display:block;
	background-color:#000;
	font-size:27px;
	color:#fff;
	text-align:center;
	text-transform:capitalize;
	padding:5px 0px;
	margin:0px auto 15px auto;
	width:205px;
}

.blog .rgt-blog p.details a,
.blog .rgt-blog p.details a:visited {
	display:block;
	font-size:21px;
	color:#2f2f2f;
	text-align:center;
	padding:0px 0px;
	text-decoration:none;
	letter-spacing:2px;
	margin:0 auto;
	width:205px;
}

.blog .rgt-blog p.details a:hover {
	color:#ff239b;
}

.btn-lg:link,
.btn-lg:visited {
	display:flex;
	justify-content: center;
	width:340px;
	padding:15px 15px;
	color:#fff;
	text-decoration:none;
	letter-spacing:2px;
	border:1px solid #2f2f2f;
	background-color:#000;
	text-align:center;
	margin:40px auto 40px auto;
	text-transform:capitalize;
}

.btn-lg:hover {
	background-color:#fff;
	color:#000;
}

.testimonial {
	display:flex;
	flex-flow: row wrap;
	justify-content:center;
	width:100%;
	margin-top:35px;
}

.testimonial img {
	display:block;
	height:350px;
	width:450px;
}

.testimonial p {
	display:block;
	height:350px;
	width:450px;
	margin:0px;
	font-size:165%;
	color:#b2b2b2;
	text-align:center;
}

.testimonial img.center {
	justify-content:center;
	height:350px;
	width:450px;
}

/* Image Style */

.blank-template-container {
	max-width:1170px;
	width:100%;
	margin:0 auto;
	padding:0;
	text-align:center;
	display:flex;
	justify-content:center;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

input[type=radio] + img {
	border:2px solid #c4c4c4;
	background-color:#c4c4c4;
	display:inline-block;
	height: 389px;
	width: 370px;
	padding:0;
	margin:0px 5px;
	text-align:center;
	cursor:pointer;
}

input[type=radio]:checked + img {
  	outline: 2px solid #ff239b;
}

input[type=radio] + img.templ-pre-img {
	outline:2px solid #c4c4c4;
	background-color:#c4c4c4;
	display:inline-block;
	width:740px;
	height: 350px;
	padding:0;
	margin:0px 5px;
	text-align:center;
	cursor:pointer;
	background-size:100%;
	background-position:top;
	border:10px solid #dfdfdf;
	box-shadow:0 20px 30px rgba(0, 0, 0, .5);
	transition:ease-in-out 5s all;
	border-radius:10px;
}

input[type=radio]:checked + img.templ-pre-img {
  	outline: 2px solid #ff239b;
}

/* Submit Order Button */

.ordering {
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	width:100%;
	margin:40px auto 40px auto;
	padding:0px;
}

.template-layout {
	margin:33px auto 35px auto;
	width:1140px;
	padding:10px;
	border:1px solid #8c8c8c;
	background-color:#f9f9f9;
	display:block;
	position:relative;
}

.template-layout .rgt-side {
	float:right;
	width:50%;
	margin:0;
    background-color:#fbfbfb;
}

.template-layout .rgt-side-lft {
	float:left;
	width:50%;
	margin:0;
    background-color:#fbfbfb;
}

.template-layout .lft-side {
	float:left;
	width:50%;
	margin:0px;
    background-color:#fbfbfb;
}

.template-layout .lft-side-rgt {
	float:right;
	width:50%;
	margin:0px;
    background-color:#fbfbfb;
}

.template-layout .desc-box {
	margin:0 auto;
	padding:0px 30px;
	width:100%;
	display:table-cell;
	vertical-align: middle;
	height:420px;
}

.template-layout img {
	display:block;
	width:100%;
	height:auto;
	border:1px solid #b2b2b2;
	margin:0;
	padding:10px;
	border-radius:10px;
	background-color:#fff;
}

.template-layout p.title {
	margin:0px 0px 30px 0px;
	font-size:25px;
	color:#ff239b;
	padding:0px;
	text-transform:uppercase;
	letter-spacing:1px;
}

.template-layout p.details {
	margin:0px 0px 0px 0px;
	font-size:19px;
	color:#2b2b2b;
	padding:0px;
}

.text-rgt {
	text-align:right;
}

.template-layout .btn-see-more a {
	display:block;
	background-color:#000;
	width:240px;
	padding:10px 0px;
	margin:40px 0px 0px 0px;
	font-size:19px;
	text-align:center;
	text-decoration:none;
	text-transform:capitalize;
	letter-spacing:2px;
	color:#fff;
	border:1px solid #000;
}

.template-layout .btn-see-more a:hover {
	background-color:#fff;
	color:#000;
}

.template-layout .btn-see-more-rgt a {
	display:block;
	float:right;
	background-color:#000;
	width:240px;
	padding:10px 0px;
	margin:40px 0px 0px 0px;
	font-size:19px;
	text-align:center;
	text-decoration:none;
	text-transform:capitalize;
	letter-spacing:2px;
	color:#fff;
	border:1px solid #000;
}


.template-layout .btn-see-more-rgt a:hover {
	background-color:#fff;
	color:#000;
}

ul.bottom-nav {
	display:flex;
	flex-direction: row;
	justify-content: center;
	list-style-type:none;
	margin:0 auto;
	padding:0;
}

ul.bottom-nav li a {
	display:block;
	padding:10px 20px;
	border:1px solid #b2b2b2;
	font-size:24px;
	text-align:center;
	text-decoration:none;
	color:#2f2f2f;
	margin:0px 5px;
}

ul.bottom-nav li a:hover {
	background-color:#000;
	color:#fff;
}

.back-to-top {
	color:#ff239b;
}

label {
	display:block;
	font-size:21px;
	color:#2b2b2b;
	text-align:left;
	margin:20px 0px 0px 0px;
}

input[type=text] {
	display:block;
	width:100%;
	border:1px solid #7b7b7b;
	margin:5px 0px 2px 0px;
	padding:15px 10px;
	font-family:helvetica, arial;
	font-size:21px;
	color:#7b7b7b;
	font-weight:normal;

}

textarea {
	display:block;
	width:100%;
	border:1px solid #7b7b7b;
	margin:5px 0px 2px 0px;
	padding:15px 10px;
	font-family:helvetica, arial;
	font-size:21px;
	color:#7b7b7b;
	font-weight:normal;
}

input[type=submit] {
	display:block;
	width:320px;
	background-color:#000;
	margin:20px 0px 0px 0px;
	padding:15px 10px;
	font-size:21px;
	color:#fff;
	letter-spacing:2px;
	border:1px solid #000;
}

input[type=submit]:hover {
	background-color:#fff;
	color:#000;
	border:1px solid #000;
	cursor:pointer;
}

.captcha {
	display:flex;
	justify-content: center;
	margin:15px auto 0px auto;
}

.validation {
	display:block;
	font-size:21px;
	color:#ff239b;
	letter-spacing:2px;
	padding:5px 0px 5px 0px;
}

.grey {
    width:100%;
    background-color:#363636;
    padding:20px 0px;
}

.grey p {
    font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-style:italic;
    font-size:110%;
    color:#fff;
    text-align:center;
    padding:0px;
    letter-spacing:2px;
}

/* =========================================================
   02. HOME PAGE
   Homepage-specific visual styles
   ========================================================= */

body.home {
    --home-pink:#ff239b;
}

/* ---------- Shared solid paw / icon circles ---------- */

body.home .home-step-icon,
body.home .home-paw-circle {
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid var(--home-pink);
    border-radius:50%;
    color:var(--home-pink);
    background:#fff;
}

body.home .home-step-icon {
    width:92px;
    height:92px;
    margin:0 auto 10px auto;
}

body.home .home-step-icon svg {
    width:47px;
    height:47px;
    fill:currentColor;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

body.home .home-step-icon-monitor svg {
    fill:none;
}

/* Approved standalone SVG paw */
body.home .home-step-icon-paw img,
body.home .home-paw-circle img,
body.home .cta-paw img {
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
}

/* ---------- Intro black strip ---------- */

body.home .intro {
    position:relative;
}

body.home .intro-home-row {
    display:flex;
    align-items:center;
    min-height:88px;
}

body.home .intro-home-row h2.light {
    flex:1;
    margin-right:92px;
}

body.home .home-paw-circle-intro {
    width:70px;
    height:70px;
    flex:0 0 70px;
    margin-left:10px;
    background:#111;
}

body.home .home-paw-circle-intro img {
    width:42px;
    height:39px;
}

/* ---------- Browse / Select / Download ---------- */

/* Keep the section exactly as-is horizontally.
   Only close up the EXTRA space below by roughly half. */
body.home .lft,
body.home .mdl,
body.home .rgt {
    height:315px;
    margin-top:30px;
    margin-bottom:30px;
}

body.home .lft h2,
body.home .mdl h2,
body.home .rgt h2 {
    margin-bottom:14px;
}

body.home .lft h3,
body.home .mdl h3,
body.home .rgt h3 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Pull the horizontal line upward without changing the content above */
body.home .wrapper + hr.main {
    margin-top:12px;
}

/* ---------- Hero / menu ---------- */

/* Preserve the original 100vh hero and original menu behavior */
body.home nav {
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.56) 48%,
        rgba(0,0,0,.18) 78%,
        rgba(0,0,0,0) 100%
    );
    transition:
        background-color .5s ease,
        background .5s ease,
        height .5s ease,
        padding .5s ease,
        box-shadow .5s ease;
}

body.home nav.scrolled {
    background:rgba(0,0,0,.83);
    box-shadow:0 2px 9px rgba(0,0,0,.18);
}

/* ---------- Buttons ---------- */

body.home .hero-button:link,
body.home .hero-button:visited,
body.home .btn-lg:link,
body.home .btn-lg:visited {
    border-radius:6px;
}

body.home .hero-button:first-of-type {
    background-color:var(--home-pink);
    border-color:var(--home-pink);
}

body.home .hero-button:first-of-type:hover {
    background-color:#fff;
    color:#000;
    border-color:#fff;
}

body.home .home-main-cta {
    display:flex;
    align-items:center;
    gap:12px;
}

body.home .cta-paw {
    width:27px;
    height:27px;
    display:inline-flex;
    color:var(--home-pink);
}


/* ---------- Main display ---------- */

body.home .main-img {
    border-radius:6px;
}

/* ---------- Final centered testimonial ---------- */

body.home .testimonial.testimonial-centered {
    display:block;
    width:100%;
    max-width:900px;
    margin:30px auto 45px auto;
    text-align:center;
}

body.home .testimonial-centered .testimonial-pets {
    display:block;
    width:100%;
    max-width:650px;
    height:auto;
    margin:0 auto 20px auto;
}

body.home .testimonial-quote {
    width:100%;
    max-width:820px;
    margin:0 auto;
    text-align:center;
}

body.home .testimonial-quote-mark {
    display:block;
    margin:0 auto 8px auto;
    color:#ff239b;
    font-family:Georgia, "Times New Roman", serif;
    font-size:78px;
    font-weight:bold;
    line-height:.85;
}

body.home .testimonial-quote p {
    display:block;
    width:100%;
    height:auto;
    margin:0 auto;
    padding:0 20px;
    color:#555;
    font-size:21px;
    line-height:1.55;
    text-align:center;
}

body.home .testimonial-heart {
    display:flex;
    align-items:center;
    width:210px;
    margin:25px auto 0 auto;
    gap:14px;
    color:#ff239b;
}

body.home .testimonial-heart::before,
body.home .testimonial-heart::after {
    content:"";
    flex:1;
    height:1px;
    background-color:#ff239b;
}

body.home .testimonial-heart span {
    font-size:30px;
    line-height:1;
}

/* ---------- Footer paw ---------- */

/* Decorative paw that sits over the existing bottom-message strip,
   without changing the shared include file. */
body.home .home-footer-paw-wrap {
    position:relative;
    width:1140px;
    max-width:100%;
    height:0;
    margin:0 auto;
    z-index:5;
}

body.home .home-paw-circle-footer {
    position:absolute;
    left:0;
    top:18px;
    width:70px;
    height:70px;
    background:#242424;
}

body.home .home-paw-circle-footer img {
    width:42px;
    height:39px;
}

/* Paw sizing */
body.home .home-step-icon-paw img {
    width:52px;
    height:48px;
}

body.home .home-paw-circle-intro img,
body.home .home-paw-circle-footer img {
    width:42px;
    height:39px;
}

body.home .cta-paw img {
    width:27px;
    height:25px;
}

/* =========================================================
   03. SERVICES PAGE
   Page-specific styles
   ========================================================= */

body.services {
    --services-pink: #ff239b;
    --services-text: #3f3f3f;
    --services-border: #dedede;
}

body.services .height-spacer {
    height: 72px;
}

body.services .row h1 {
    margin-bottom: 18px;
}

body.services h2.main {
    margin-bottom: 20px;
}

/* Long divider with paw at the top */
body.services .services-top-divider {
    width: min(760px, 82%);
    margin: 4px auto 24px;
    display: flex;
    align-items: center;
    gap: 15px;
}

body.services .services-top-divider span {
    flex: 1;
    height: 1px;
    background: #e4e4e4;
}

body.services .services-top-divider img {
    width: 25px;
    height: 23px;
    object-fit: contain;
}

body.services h2.body {
    margin-bottom: 14px;
}

body.services .service-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 32px auto 38px;
    border: 1px solid var(--services-border);
    border-radius: 18px;
}

body.services h3.description {
    color: var(--services-text);
    line-height: 1.62;
    margin-bottom: 20px;
}

/* Main call-to-action */
body.services .services-cta {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 6px;
    text-transform: none;
}

body.services .services-cta img {
    width: 27px;
    height: 25px;
    object-fit: contain;
}

/* Short plain divider below CTA. Adjust width here. */
body.services .services-center-divider {
    width: 170px;
    height: 1px;
    margin: 28px auto 18px;
    background: #dddddd;
}

body.services .services-center-divider + .wrapper h2.body {
    margin-bottom: 22px;
}

/* Six service cards */
body.services ul.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

body.services ul.services li {
    float: none;
    width: auto;
    height: auto;
    min-height: 245px;
    margin: 0;
    padding: 22px 24px 25px;
    border: 1px solid var(--services-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .08);
    text-align: center;
}

body.services ul.services li .icons {
    width: 76px;
    height: 76px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--services-pink);
    border-radius: 50%;
    color: var(--services-pink);
    font-size: 35px;
    line-height: 1;
}

body.services ul.services li p.title {
    position: relative;
    margin: 0 0 23px;
    color: #222;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
}

body.services ul.services li p.title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 36px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--services-pink);
}

body.services ul.services li p.details {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.52;
}

body.services ul.services + .clear {
    display: none;
}

body.services .btn-lg:link,
body.services .btn-lg:visited {
    border-radius: 6px;
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

/* =========================================================
   04. PORTFOLIO / TEMPLATE PAGES
   Shared by templates-01, templates-02 and templates-03
   ========================================================= */

body.templates {
    --portfolio-pink: #ff239b;
    --portfolio-text: #444;
    --portfolio-muted: #777;
    --portfolio-border: #e2e2e2;
}

/* ---------------------------------------------------------
   Top spacing / introduction
   --------------------------------------------------------- */

body.templates .height-spacer {
    height: 28px;
}

body.templates .wrapper > h1 {
    margin-bottom: 10px;
}

body.templates h2.main {
    margin-bottom: 18px;
}

/* Long divider with approved paw */
body.templates .portfolio-top-divider {
    width: min(760px, 82%);
    margin: 4px auto 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

body.templates .portfolio-top-divider span {
    flex: 1;
    height: 1px;
    background: #e3e3e3;
}

body.templates .portfolio-top-divider img {
    width: 25px;
    height: 23px;
    object-fit: contain;
}

body.templates h2.body {
    margin-bottom: 22px;
}

/* ---------------------------------------------------------
   Template cards
   --------------------------------------------------------- */

body.templates .wrapper:has(.template-layout) {
    width: min(1280px, calc(100% - 48px));
}

body.templates .template-layout {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 360px;
    margin: 0 0 26px;
    overflow: hidden;
    border: 1px solid var(--portfolio-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

/* Featured first template on page 1 */
body.templates .template-layout.template-featured {
    min-height: 500px;
}

body.templates .template-layout.template-featured .lft-side {
    width: 68%;
    padding: 22px;
}

body.templates .template-layout.template-featured .rgt-side {
    width: 32%;
    padding: 46px 38px;
}

body.templates .template-layout.template-featured .lft-side img {
    width: 100%;
    max-height: 455px;
    object-fit: contain;
}

body.templates .template-layout.template-featured .desc-box p.title {
    margin-bottom: 20px;
    font-size: 30px;
}

body.templates .template-layout.template-featured .desc-box p.details {
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 1.65;
}

/* Neutralize old floats but keep the original alternating markup. */
body.templates .template-layout .lft-side,
body.templates .template-layout .lft-side-rgt,
body.templates .template-layout .rgt-side,
body.templates .template-layout .rgt-side-lft {
    float: none;
    width: 50%;
    height: auto;
    margin: 0;
}

/* Image columns */
body.templates .template-layout .lft-side,
body.templates .template-layout .lft-side-rgt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #fbfbfb;
}

/* Preserve screenshot aspect ratio — no stretching. */
body.templates .template-layout img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 330px;
    margin: 0;
    object-fit: contain;
}

/* Text columns */
body.templates .template-layout .rgt-side,
body.templates .template-layout .rgt-side-lft {
    display: flex;
    align-items: center;
    padding: 38px 32px;
}

/* For alternating rows, keep screenshot on the right. */
body.templates .template-layout .lft-side-rgt {
    order: 2;
}

body.templates .template-layout .rgt-side-lft {
    order: 1;
}

body.templates .desc-box {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

body.templates .desc-box p.title {
    margin: 0 0 18px;
    color: var(--portfolio-pink);
    font-size: 26px;
    line-height: 1.2;
    text-transform: uppercase;
}

body.templates .desc-box p.details {
    margin: 0 0 28px;
    color: var(--portfolio-text);
    font-size: 18px;
    line-height: 1.58;
}

/* Remove old right-alignment so alternating rows still read cleanly. */
body.templates .text-rgt,
body.templates .rgt-side-lft .desc-box,
body.templates .rgt-side-lft p {
    text-align: left;
}

/* ---------------------------------------------------------
   Preview buttons
   --------------------------------------------------------- */

body.templates .btn-see-more,
body.templates .btn-see-more-rgt {
    float: none;
    width: auto;
    height: auto;
    margin: 0;
    text-align: left;
}

body.templates .btn-see-more a,
body.templates .btn-see-more-rgt a {
    display: inline-flex;
    float: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 6px;
    background: #050505;
    color: #fff;
    font-size: 15px;
    letter-spacing: .4px;
    text-transform: none;
    transition: background-color .22s ease;
}

body.templates .btn-see-more a:hover,
body.templates .btn-see-more-rgt a:hover {
    background: #fff;
    color: #000;
}

/* Paw icon must stay isolated from the generic template image rule. */
body.templates .btn-see-more a img,
body.templates .btn-see-more-rgt a img {
    display: inline-block !important;
    width: 24px !important;
    height: 22px !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Old clear divs are unnecessary with flex. */
body.templates .template-layout > .clear {
    display: none;
}

/* ---------------------------------------------------------
   Pagination
   --------------------------------------------------------- */

body.templates ul.bottom-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px auto 26px;
    padding: 0;
}

body.templates ul.bottom-nav li {
    float: none;
    margin: 0;
}

body.templates ul.bottom-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
    color: #444;
}

body.templates ul.bottom-nav .pg-01 a,
body.templates ul.bottom-nav .pg-02 a,
body.templates ul.bottom-nav .pg-03 a {
    border-color: #050505;
    background: #050505;
    color: #fff;
}

/* ---------------------------------------------------------
   Template catalog showcase
   Shared by templates-01, templates-02 and templates-03
   --------------------------------------------------------- */

body.templates.templates-catalog-page .wrapper:has(.portfolio-showcase) {
    width: min(1280px, calc(100% - 48px));
}

body.templates.templates-catalog-page .portfolio-showcase {
    width: 100%;
    margin: 0 auto 28px;
}

body.templates.templates-catalog-page .portfolio-feature {
    margin-bottom: 24px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #f7f7f7;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .06);
}

body.templates.templates-catalog-page .portfolio-feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 465px;
    padding: 10px;
    overflow: hidden;
    background: transparent;
}

body.templates.templates-catalog-page .portfolio-feature-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    object-position: top;
    border: 1px solid #d0d0d0;
    border-radius: 7px;
    background: #fff;
}

body.templates.templates-catalog-page .portfolio-feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 22px 26px;
}

body.templates.templates-catalog-page .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

body.templates.templates-catalog-page .portfolio-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #f7f7f7;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .06);
}

body.templates.templates-catalog-page .portfolio-card-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 345px;
    padding: 10px 10px 0;
    overflow: hidden;
    background: transparent;
}

body.templates.templates-catalog-page .portfolio-card-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    object-position: top;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background: #fff;
}

body.templates.templates-catalog-page .portfolio-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px 20px;
}

body.templates.templates-catalog-page .portfolio-feature .title,
body.templates.templates-catalog-page .portfolio-card .title {
    margin: 0 0 14px;
    color: #ff239b;
    font-size: 27px;
    line-height: 1.2;
    text-transform: uppercase;
}

body.templates.templates-catalog-page .portfolio-feature .details,
body.templates.templates-catalog-page .portfolio-card .details {
    margin: 0 0 24px;
    color: #444;
    font-size: 17px;
    line-height: 1.58;
}

body.templates.templates-catalog-page .portfolio-preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    margin-top: auto;
    padding: 0 20px;
    border: 1px solid #050505;
    border-radius: 6px;
    background: #050505;
    color: #fff;
    font-size: 15px;
    letter-spacing: .35px;
    text-decoration: none;
}

body.templates.templates-catalog-page .portfolio-preview-btn:hover {
    background: #fff;
    color: #000;
}

body.templates.templates-catalog-page .portfolio-preview-btn img {
    display: inline-block !important;
    width: 23px !important;
    height: 21px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    object-fit: contain !important;
}

@media (max-width: 900px) {
    body.templates.templates-catalog-page .portfolio-feature {
        grid-template-columns: 1fr;
    }

    body.templates.templates-catalog-page .portfolio-grid {
        grid-template-columns: 1fr;
    }

    body.templates.templates-catalog-page .portfolio-feature-image,
    body.templates.templates-catalog-page .portfolio-card-image {
        min-height: 0;
    }
}

/* =========================================================
   05. BLOG INDEX + SHARED BLOG STYLES
   ========================================================= */

body.resources {
    --blog-pink: #ff239b;
    --blog-text: #444;
    --blog-muted: #777;
    --blog-border: #e2e2e2;
}

/* Compact non-hero page spacing */
body.resources .height-spacer {
    height: 38px;
}

body.resources .wrapper > h1 {
    margin-bottom: 10px;
}

body.resources h2.main {
    margin-bottom: 18px;
}

/* Intro divider */
body.resources .blog-top-divider {
    width: min(760px, 82%);
    margin: 4px auto 28px;
    display: flex;
    align-items: center;
    gap: 15px;
}

body.resources .blog-top-divider span {
    flex: 1;
    height: 1px;
    background: #e3e3e3;
}

body.resources .blog-top-divider img {
    width: 25px;
    height: 23px;
    object-fit: contain;
}

/* Main blog layout */
body.resources .blog {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr);
    gap: 24px;
    align-items: start;
}

body.resources .lft-blog,
body.resources .rgt-blog {
    float: none;
    width: auto;
    height: auto;
    margin: 0;
}

/* Blog cards */
body.resources .blog-card {
    margin: 0 0 22px;
    padding: 22px;
    border: 1px solid var(--blog-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

body.resources .blog-card p.title {
    margin: 0 0 16px;
    color: #333;
    font-size: 25px;
    line-height: 1.25;
    text-transform: capitalize;
}

body.resources .blog-card > img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 5px;
}

body.resources .blog-date {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 0 20px;
    color: #555;
    font-size: 14px;
}

body.resources .blog-date .date-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
}

body.resources .blog-card p.details {
    margin: 0;
    color: var(--blog-text);
    font-size: 16px;
    line-height: 1.58;
}

/* Continue reading CTA */
body.resources .read-more {
    margin: 0;
    text-align: center;
}

body.resources .read-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 43px;
    padding: 0 20px;
    border-radius: 6px;
    background: #050505;
    color: #fff;
    font-size: 14px;
    letter-spacing: .4px;
    transition: background-color .22s ease;
}

body.resources .read-more a:hover {
    background: #222;
}

body.resources .read-more a img {
    display: inline-block !important;
    width: 23px !important;
    height: 21px !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    object-fit: contain !important;
}

/* Archives card */
body.resources .rgt-blog {
    padding: 22px;
    border: 1px solid var(--blog-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

body.resources .rgt-blog p.title {
    position: relative;
    margin: 0 0 22px;
    padding: 0 0 12px;
    background: none;
    color: #333;
    font-size: 25px;
    line-height: 1.2;
    text-transform: capitalize;
}

body.resources .rgt-blog p.title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 2px;
    background: var(--blog-pink);
}

body.resources .rgt-blog p.details {
    margin: 0;
}

body.resources .archive-link {
    display: flex;
    align-items: center;
    gap: 9px;
}

body.resources .archive-link img {
    width: 20px;
    height: 18px;
    object-fit: contain;
}

body.resources .archive-link a {
    color: #555;
    font-size: 16px;
}

/* Grid handles clearing */
body.resources .blog > .clear {
    display: none;
}

/* Bottom pagination */
body.resources ul.bottom-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px auto 24px;
    padding: 0;
}

body.resources ul.bottom-nav li {
    float: none;
    margin: 0;
}

body.resources ul.bottom-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #050505;
    color: #fff;
}

/* Old horizontal rule below blog content can stay subtle */
body.resources .blog + hr.main,
body.resources .wrapper + hr.main {
    opacity: .55;
}

/* =========================================================
   06. BLOG ARTICLE-SPECIFIC STYLES
   Shared blog chrome is defined in Section 05.
   ========================================================= */
body.resources .blog-article-card {
    padding: 24px;
    border: 1px solid var(--blog-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

body.resources .blog-article-card p.title {
    margin: 0 0 18px;
    color: #333;
    font-size: 27px;
    line-height: 1.25;
    text-align: center;
    text-transform: capitalize;
}

body.resources .blog-article-card > img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 5px;
}

body.resources .blog-article-card p.details {
    margin: 0;
    color: var(--blog-text);
    font-size: 16px;
    line-height: 1.65;
}

body.resources .blog-article-card p.details a {
    color: #444;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.resources .blog-article-card p.details a:hover { color: var(--blog-pink); }

/* Article-only spacing formerly supplied by blog-article.css */
body.resources .blog-article-card .blog-date {
    margin-bottom: 0;
}

body.resources .blog-article-card .read-more {
    margin: 28px 0 0;
}

body.resources .blog-article-card .read-more a {
    min-width: 190px;
    letter-spacing: .5px;
    text-decoration: none;
}

@media (max-width: 800px) {
    body.resources .blog {
        grid-template-columns: 1fr;
    }

    body.resources .rgt-blog {
        order: -1;
    }
}

@media (max-width: 520px) {
    body.resources .height-spacer {
        height: 28px;
    }

    body.resources .blog-top-divider {
        width: 90%;
        margin-bottom: 20px;
    }

    body.resources .blog-article-card {
        padding: 16px;
    }

    body.resources .blog-article-card p.title,
    body.resources .rgt-blog p.title {
        font-size: 22px;
    }

    body.resources .blog-article-card p.details {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
    }
}

/* =========================================================
   07. CONTACT PAGE
   Existing PHP validation is preserved
   ========================================================= */

body.contact {
    --contact-pink: #ff239b;
    --contact-text: #555;
    --contact-dark: #222;
    --contact-border: #e2e2e2;
    --contact-soft-pink: #fff7fb;
}

body.contact .height-spacer {
    height: 38px;
}

body.contact .contact-intro {
    text-align: center;
}

body.contact .contact-intro h1 {
    margin: 0 0 12px;
    color: #222;
    line-height: 1.15;
}

body.contact .contact-intro h2.main {
    margin: 0;
    color: #666;
    font-weight: normal;
}

body.contact .contact-top-divider {
    width: min(760px, 82%);
    margin: 20px auto 28px;
    display: flex;
    align-items: center;
    gap: 15px;
}

body.contact .contact-top-divider span {
    flex: 1;
    height: 1px;
    background: #e3e3e3;
}

body.contact .contact-top-divider img {
    width: 25px;
    height: 23px;
    object-fit: contain;
}

/* Keep the information card and message card aligned */
body.contact .contact-directory,
body.contact .contact-form-card,
body.contact .contact-thanks {
    box-sizing: border-box;
    width: 100%;
}

/* Contact information */
body.contact .contact-directory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 24px;
    padding: 28px 20px;
    border: 1px solid var(--contact-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

body.contact .contact-directory-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-height: 180px;
    padding: 0 28px;

    text-align: center;
}

body.contact .contact-directory-item h3 {
    margin: 14px 0 8px;
    text-align: center;
}

body.contact .contact-directory-item p {
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

body.contact .contact-directory-item a {
    display: inline-block;
    margin-top: 12px;
    text-align: center;
}

body.contact .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #fdeaf4;
    color: var(--contact-pink);
    font-size: 29px;
}

body.contact .contact-directory-item + .contact-directory-item {
    border-left: 1px solid #e5e5e5;
}

body.contact .contact-social-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--contact-pink);
    text-decoration: none;
}

body.contact .contact-social-link:hover {
    text-decoration: underline;
}

/* Isolate the redesigned form from legacy contact-page CSS */
body.contact form.pws-contact-form {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    height: auto !important;
    overflow: visible !important;
    margin: 0;
    padding: 0;
}
body.contact form.pws-contact-form .contact-form-grid,
body.contact form.pws-contact-form .form-field,
body.contact form.pws-contact-form .captcha-row,
body.contact form.pws-contact-form .contact-submit {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Form card */
body.contact .contact-form-card {
    margin-bottom: 20px;
    padding: 30px;
    border: 1px solid var(--contact-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

body.contact .contact-form-heading {
    position: relative;
    display: block;
    margin-bottom: 28px;
    text-align: center;
}

body.contact .contact-form-heading > img {
    position: absolute;
    left: 0;
    top: 2px;
    width: 32px;
    height: 30px;
    margin: 0;
    object-fit: contain;
}

body.contact .contact-form-heading h2 {
    margin: 0 0 5px;
    color: #222;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

body.contact .contact-form-heading p {
    margin: 0;
    color: #666;
    font-size: 15px;
    text-align: center;
}

body.contact .contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
}

body.contact .form-field {
    min-width: 0;
}

body.contact .form-field-message,
body.contact .captcha-row {
    grid-column: 1 / -1;
}

body.contact .pws-contact-form label {
    display: block;
    margin: 0 0 8px;
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

body.contact .pws-contact-form label span {
    color: var(--contact-pink);
}

body.contact .pws-contact-form input[type="text"],
body.contact .pws-contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    color: #444;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

body.contact .pws-contact-form input[type="text"] {
    height: 52px;
    padding: 0 15px;
}

body.contact .pws-contact-form textarea {
    min-height: 145px;
    padding: 15px;
    resize: vertical;
}

body.contact .pws-contact-form input[type="text"]:focus,
body.contact .pws-contact-form textarea:focus {
    border-color: var(--contact-pink);
    box-shadow: 0 0 0 2px rgba(255,35,155,.08);
}

body.contact .pws-contact-form input::placeholder,
body.contact .pws-contact-form textarea::placeholder {
    color: #999;
}

body.contact .validation {
    display: block;
    min-height: 17px;
    margin-top: 5px;
    color: var(--contact-pink);
    font-size: 12px;
}

/* CAPTCHA */
body.contact .captcha-row {
    display: grid;
    grid-template-columns: minmax(230px, .75fr) 1.25fr;
    gap: 28px;
    align-items: center;
    margin-top: 2px;
}

body.contact .captcha-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.contact img.captcha {
    display: block;
    width: 150px;
    max-width: 150px;
    height: auto;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Button */
body.contact .contact-submit {
    margin-top: 14px;
    text-align: center;
}

body.contact .contact-submit .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 245px;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 6px;
    background: #050505;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background-color .22s ease;
}

body.contact .contact-submit .btn:hover {
    background: #222;
}

body.contact .contact-submit .btn img {
    width: 25px;
    height: 23px;
    object-fit: contain;
}

/* Simple thank-you panel */
body.contact .contact-thanks {
    margin: 0 0 26px;
    padding: 25px 30px;
    border-radius: 9px;
    background: var(--contact-soft-pink);
    text-align: center;
}

body.contact .contact-thanks h2 {
    margin: 0 0 8px;
    color: var(--contact-pink);
    font-size: 28px;
    font-weight: normal;
    text-align: center;
}

body.contact .contact-thanks p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.55;
    text-align: center;
}

body.contact .contact-thanks > img {
    display: block;
    width: 24px;
    height: 22px;
    margin: 12px auto 0;
    object-fit: contain;
}

/* =========================================================
   ORDER PAGE - PACKAGE SELECTOR
   ========================================================= */

body.starter-kit-order-page .order-package-section {
    margin-top: 28px;
}

body.starter-kit-order-page .order-package-heading {
    margin-bottom: 18px;
    text-align: center;
}

body.starter-kit-order-page .order-package-heading h2 {
    margin: 0 0 5px;
    color: #333;
    font-size: 29px;
    font-weight: 400;
}

body.starter-kit-order-page .order-package-heading p {
    margin: 0;
    color: #777;
    font-size: 16px;
}

body.starter-kit-order-page .order-package-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

body.starter-kit-order-page .order-package-card {
    position: relative;
    display: grid;
    grid-template-columns: 22px 50px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 112px;
    padding: 20px 22px;
    border: 1px solid var(--order-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--order-shadow);
    cursor: pointer;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

body.starter-kit-order-page .order-package-card:hover {
    border-color: #f3a8cf;
}

body.starter-kit-order-page .order-package-card.is-selected {
    border-color: var(--order-pink);
    background: #fff8fc;
    box-shadow: 0 8px 24px rgba(255, 35, 155, .08);
}

body.starter-kit-order-page .order-package-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.starter-kit-order-page .order-package-radio {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #cfcfcf;
    border-radius: 50%;
    background: #fff;
}

body.starter-kit-order-page .order-package-card.is-selected .order-package-radio {
    border-color: var(--order-pink);
}

body.starter-kit-order-page .order-package-card.is-selected .order-package-radio::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--order-pink);
}

body.starter-kit-order-page .order-package-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff0f8;
    color: var(--order-pink);
    font-size: 22px;
}

body.starter-kit-order-page .order-package-copy {
    min-width: 0;
}

body.starter-kit-order-page .order-package-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

body.starter-kit-order-page .order-package-copy strong span {
    color: var(--order-pink);
    font-size: inherit;
    white-space: nowrap;
}

body.starter-kit-order-page .order-package-copy small {
    display: block;
    color: #6f6f6f;
    font-size: 15px;
    line-height: 1.5;
}

body.starter-kit-order-page .order-package-details {
    display: none;
    margin-top: 18px;
    padding: 24px 26px;
    border: 1px solid #f1c7dd;
    border-radius: 10px;
    background: #fff8fc;
    box-shadow: 0 8px 24px rgba(255, 35, 155, .045);
}

body.starter-kit-order-page .order-package-details.is-visible {
    display: block;
    animation: orderPackageReveal .22s ease;
}

@keyframes orderPackageReveal {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.starter-kit-order-page .order-package-details-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

body.starter-kit-order-page .order-package-details-icon {
    display: flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--order-pink);
    color: #fff;
    font-size: 19px;
}

body.starter-kit-order-page .order-package-details-title h3 {
    margin: 0 0 3px;
    color: var(--order-pink);
    font-size: 22px;
    font-weight: 600;
}

body.starter-kit-order-page .order-package-details-title p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

body.starter-kit-order-page .order-package-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
}

body.starter-kit-order-page .order-package-checks-small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.starter-kit-order-page .order-package-checks span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #555;
    font-size: 15px;
    line-height: 1.45;
}

body.starter-kit-order-page .order-package-checks i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--order-pink);
    font-size: 14px;
}

body.starter-kit-order-page .order-package-notes {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #edc9dc;
}

body.starter-kit-order-page .order-package-notes p {
    display: flex;
    gap: 10px;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

body.starter-kit-order-page .order-package-notes p + p {
    margin-top: 9px;
}

body.starter-kit-order-page .order-package-notes i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--order-pink);
}

body.starter-kit-order-page .order-package-notes strong {
    color: #444;
}

@media (max-width: 760px) {
    body.starter-kit-order-page .order-package-options,
    body.starter-kit-order-page .order-package-checks,
    body.starter-kit-order-page .order-package-checks-small {
        grid-template-columns: 1fr;
    }

    body.starter-kit-order-page .order-package-card {
        grid-template-columns: 22px 44px minmax(0, 1fr);
        padding: 18px;
    }
}

@media (max-width: 480px) {
    body.starter-kit-order-page .order-package-card {
        grid-template-columns: 22px minmax(0, 1fr);
    }

    body.starter-kit-order-page .order-package-icon {
        display: none;
    }

    body.starter-kit-order-page .order-package-details {
        padding: 21px 18px;
    }
}

/* Responsive */

/* =========================================================
   08. THANK YOU PAGE
   ========================================================= */

html,
body.thank-you-page {
    min-height: 100%;
}

body.thank-you-page {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    margin: 0;
}

/* Main area fills unused screen height */

body.thank-you-page .thank-you-main {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    padding: 40px 20px;

    box-sizing: border-box;
}

/* Message card */

body.thank-you-page .thank-you-card {
    width: 100%;
    max-width: 720px;

    padding: 38px 55px;

    box-sizing: border-box;

    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);

    text-align: center;

    transform: translateY(25px);
}

/* Paw */

body.thank-you-page .thank-you-icon img {
    display: block;

    width: 30px;
    height: auto;

    margin: 0 auto 18px;
}

/* Heading */

body.thank-you-page .thank-you-card h1 {
    margin: 0 0 25px;

    color: #777;
    font-size: 28px;
    font-weight: 400;
}

body.thank-you-page .thank-you-card h1 span {
    color: #ff2b91;
    font-size: 41px;
}

/* Confirmation */

body.thank-you-page .thank-you-response {
    margin: 0 0 14px;

    color: #555;
    font-size: 19px;
}

/* Date */

body.thank-you-page .thank-you-date {
    margin: 0;

    color: #888;
    font-size: 15px;
}

/* Small divider */

body.thank-you-page .thank-you-divider {
    width: 55px;
    height: 1px;

    margin: 28px auto;

    background: #ff2b91;
}

/* Redirect */

body.thank-you-page .thank-you-redirect {
    margin: 0;

    color: #777;
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile */

/* =========================================================
   09. 403 / 404 ERROR PAGES
   Shared error-page styles
   ========================================================= */

html,
body.error-page {
    min-height: 100%;
}

body.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

body.error-page .responsiveWrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.error-page .error-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

body.error-page .error-card {
    width: 100%;
    max-width: 720px;
    padding: 42px 55px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transform: translateY(35px);
}

body.error-page .error-eyebrow {
    margin: 0;
    color: #777;
    font-size: 30px;
    font-weight: 400;
}

body.error-page .error-eyebrow span {
    color: #ff239b;
    font-size:34px;
}

body.error-page .error-divider {
    width: min(420px, 82%);
    margin: 22px auto 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

body.error-page .error-divider span {
    flex: 1;
    height: 1px;
    background: #e3e3e3;
}

body.error-page .error-divider img {
    width: 24px;
    height: 22px;
    object-fit: contain;
}

body.error-page .error-code {
    margin: 0 0 20px;
    color: #555;
    font-size: 48px;
    font-weight: 400;
}

body.error-page .error-message {
    margin: 0 0 30px;
    color: #707070;
    font-size: 18px;
    line-height: 1.6;
}

body.error-page .error-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 235px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 6px;
    background: #050505;
    color: #fff;
    font-size: 15px;
    letter-spacing: .5px;
    text-decoration: none;
    transition: background-color .22s ease;
}

body.error-page .error-home-btn:hover {
    background: #222;
}

body.error-page .error-home-btn img {
    width: 24px;
    height: 22px;
    object-fit: contain;
}

/* =========================================================
   10. TERMS & CONDITIONS
   ========================================================= */

body.terms-page {
    --terms-pink: #ff239b;
    --terms-text: #555;
    --terms-muted: #777;
    --terms-border: #e3e3e3;
}

body.terms-page .terms-main {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding: 150px 0 34px;
    box-sizing: border-box;
}

body.terms-page .terms-intro {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

body.terms-page .terms-intro h1 {
    margin: 0;
    color: #444;
    font-size: 34px;
    font-weight: 400;
}

body.terms-page .terms-intro h1 span {
    color: var(--terms-pink);
    font-size: 41px;
}

body.terms-page .terms-intro p {
    margin: 18px auto 0;
    max-width: 650px;
    color: var(--terms-text);
    font-size: 16px;
    line-height: 1.6;
}

body.terms-page .terms-divider {
    width: min(450px, 78%);
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

body.terms-page .terms-divider span {
    flex: 1;
    height: 1px;
    background: #e4e4e4;
}

body.terms-page .terms-divider img {
    width: 24px;
    height: 22px;
    object-fit: contain;
}

body.terms-page .terms-card {
    padding: 10px 38px;
    border: 1px solid var(--terms-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

.terms-section {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px 0;
}

body.terms-page .terms-section + .terms-section {
    border-top: 1px solid #e7e7e7;
}

body.terms-page .terms-section h2 {
    margin: 0 0 8px;
    color: #222;
    font-size: 21px;
    font-weight: 400;
    text-align:left;
}

body.terms-page .terms-section p {
    margin: 0;
    color: var(--terms-text);
    font-size: 15px;
    line-height: 1.65;
}

body.terms-page .terms-updated {
    margin: 20px 0 0;
    color: var(--terms-muted);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 700px) {
    body.terms-page .terms-main {
        width: min(100% - 28px, 1080px);
        padding-top: 38px;
    }

    body.terms-page .terms-intro h1 {
        font-size: 31px;
    }

    body.terms-page .terms-intro h1 span {
        font-size: 36px;
    }

    body.terms-page .terms-card {
        padding: 4px 22px;
    }

    body.terms-page .terms-section {
        grid-template-columns: 1fr;
        padding: 21px 0;
    }

    body.terms-page .terms-section h2 {
        font-size: 17px;
    }

    body.terms-page .terms-section p {
        font-size: 14px;
    }
}

/* =========================================================
   11. FAQ PAGE
   Clean line-based accordion with smooth open / close motion
   ========================================================= */

body.faq-page .terms-main {
    width: min(980px, calc(100% - 40px));
}

body.faq-page .faq-card {
    width: min(760px, 100%);
    margin: 0 auto 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.faq-page .faq-group {
    margin: 0 0 42px;
    padding: 0;
}

body.faq-page .faq-group + .faq-group {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

body.faq-page .faq-category {
    margin: 0 0 10px;
    padding: 0 0 12px;
    color: #000;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: .9px;
    text-align: left;
    text-transform: uppercase;
}

body.faq-page .faq-category::after {
    display: none;
}

body.faq-page .faq-item {
    margin: 0;
    border-bottom: 1px solid #d8d8d8;
}

body.faq-page .faq-item:first-of-type {
    border-top: 1px solid #d8d8d8;
}

body.faq-page .faq-question {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px 2px;
    border: 0;
    background: transparent;
    color: #242424;
    font: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

body.faq-page .faq-question:hover {
    color: var(--terms-pink);
}

body.faq-page .faq-question:focus-visible {
    outline: 2px solid var(--terms-pink);
    outline-offset: 4px;
}

body.faq-page .faq-toggle {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

body.faq-page .faq-toggle::before,
body.faq-page .faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.5px;
    background: #333;
    transform: translate(-50%, -50%);
    transition:
        transform .28s ease,
        background-color .22s ease;
}

body.faq-page .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

body.faq-page .faq-question:hover .faq-toggle::before,
body.faq-page .faq-question:hover .faq-toggle::after {
    background: var(--terms-pink);
}

body.faq-page .faq-question[aria-expanded="true"] .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

body.faq-page .faq-question[aria-expanded="true"] {
    color: #242424;
}

body.faq-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height .38s cubic-bezier(.4, 0, .2, 1),
        opacity .24s ease;
}

body.faq-page .faq-question[aria-expanded="true"] + .faq-answer {
    opacity: 1;
}

body.faq-page .faq-answer-inner {
    padding: 4px 46px 22px 2px;
}

body.faq-page .faq-answer p {
    margin: 0;
    color: var(--terms-text);
    font-size: 15px;
    line-height: 1.65;
}

body.faq-page .faq-contact {
    width: min(760px, 100%);
    margin: 6px auto 0;
    padding: 25px 0 0;
    border-top: 1px solid #d8d8d8;
    border-radius: 0;
    background: transparent;
    text-align: center;
}

body.faq-page .faq-contact h2 {
    margin: 0 0 8px;
    color: #222;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

body.faq-page .faq-contact p {
    margin: 0;
    color: var(--terms-text);
    font-size: 15px;
    line-height: 1.6;
}

body.faq-page .faq-contact a {
    color: var(--terms-pink);
    text-decoration: none;
}

body.faq-page .faq-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    body.faq-page .terms-main {
        width: min(100% - 28px, 980px);
    }

    body.faq-page .faq-group {
        margin-bottom: 34px;
    }

    body.faq-page .faq-category {
        font-size: 13px;
    }

    body.faq-page .faq-question {
        gap: 20px;
        padding: 18px 0;
        font-size: 16px;
    }

    body.faq-page .faq-answer-inner {
        padding: 2px 36px 19px 0;
    }

    body.faq-page .faq-answer p,
    body.faq-page .faq-contact p {
        font-size: 14px;
    }
}

/* =========================================================
   TEMPLATE PREVIEW / PRODUCT PAGE
   ========================================================= */

body.template-preview-page {
    --preview-pink: #ff239b;
    --preview-text: #555;
    --preview-muted: #777;
    --preview-border: #e2e2e2;
}

/* =========================================================
    DO NOT DELETE — LIVE TEMPLATE PREVIEW CONTROLS
    Required for Fullscreen and Mobile Preview
    ========================================================= */

body.template-preview-page #box,
body.template-preview-page #box-resp {
    width: 100%;
    height: 500px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    border: 10px solid #dfdfdf;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .20);
    overflow: hidden;
    cursor: pointer;
}

body.template-preview-page #box {
    display: block;
    transition: background-position 5s ease;
}

body.template-preview-page #box-resp {
    display: none;
    transition: background-position 9s ease;
}

body.template-preview-page #box:hover,
body.template-preview-page #box-resp:hover {
    background-position: bottom center;
}

/* Main Page
   --------------------------------------------------------- */

body.template-preview-page .template-preview-main {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding-bottom: 38px;
}

/* Introduction
   --------------------------------------------------------- */

body.template-preview-page .template-preview-intro {
    text-align: center;
}

body.template-preview-page .template-preview-intro h1 {
    margin: 0 0 15px;
    color: #333;
    font-size: 28px;
    font-weight: 400;
}

body.template-preview-page .template-preview-intro h1 .pink {
    font-size: 34px;
    font-weight: 300;
    letter-spacing: -0.02em;
}

body.template-preview-page .template-preview-intro p {
    margin: 0;
    color: #555;
    font-size: 17px;
    line-height: 1.55;
}

body.template-preview-page .template-intro-note {
    font-size: 15px;
    color: #777;
}

body.template-preview-page .template-divider {
    width: min(700px, 80%);
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 25px auto 20px;
}

body.template-preview-page .template-divider span {
    flex: 1;
    height: 1px;
    background: #ddd;
}

body.template-preview-page .template-divider img {
    width: 27px;
    height: 25px;
    object-fit: contain;
}

/* Product Heading
   --------------------------------------------------------- */

body.template-preview-page .template-product-heading {
    text-align: center;
}

body.template-preview-page .template-product-heading h2 {
    margin: 0;
    color: #333;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
}

body.template-preview-page .template-type {
    margin: 3px 0 20px;
    color: #444;
    font-size: 21px;
}

body.template-preview-page .template-price {
    margin: 0 0 10px;
    color: #444;
    font-size: 18px;
}

body.template-preview-page .template-price .pink {
    margin-left: 5px;
    font-size: 34px;
}

body.template-preview-page .template-hover-note {
    margin: 0 0 15px;
    color: #666;
    font-size: 14px;
}

/* Preview Buttons
   --------------------------------------------------------- */

body.template-preview-page .template-preview-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

body.template-preview-page .template-preview-btn {
    min-width: 175px;
    height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 6px;
    background: #050505;
    color: #fff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color .25s ease;
}

body.template-preview-page .template-preview-btn:hover {
    background: #222;
}

body.template-preview-page .template-preview-btn.active-preview-btn {
    background-color: #ff239b;
}

body.template-preview-page .preview-btn-icon {
    margin-right: 8px;
    font-size: 19px;
}

/* Preview Window
   --------------------------------------------------------- */

body.template-preview-page .template-preview-display {
    margin: 0 auto 55px;

    opacity: 1;

    transition:
        opacity .25s ease,
        width .35s ease,
        max-width .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background-color .35s ease;
}

body.template-preview-page .template-preview-display.preview-fade {
    opacity: 0;
}

body.template-preview-page .template-preview-display.preview-transitioning {
    pointer-events: none;
}

body.template-preview-page .template-preview-image {
    opacity: 1;
}

body.template-preview-page .template-preview-display.mobile-mode {
    width: 375px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

body.template-preview-page .template-preview-mobile {
    display: none;
}

/* Description
   --------------------------------------------------------- */

body.template-preview-page .template-description {
    max-width: 850px;
    margin: 30px auto 50px auto;
    text-align: left;
}

body.template-preview-page .template-description p {
    margin: 0;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

/* Purchase Area
   --------------------------------------------------------- */

body.template-preview-page .template-purchase-area {
    width: min(680px, 100%);
    margin: 0 auto 30px;
    padding: 24px 25px 28px;
    border-radius: 8px;
    background: #fff5fa;
    text-align: center;
}

body.template-preview-page .template-faq {
    margin: 0 0 18px;
    color: #333;
    font-size: 16px;
}

body.template-preview-page .template-faq a {
    color: var(--preview-pink);
    text-decoration: underline;
}

body.template-preview-page .template-select-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 315px;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 7px;
    background: var(--preview-pink);
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color .25s ease;
}

body.template-preview-page .template-select-btn:hover {
    background: #e91889;
}

body.template-preview-page .template-select-btn img {
    width: 31px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

body.template-preview-page .template-back-link {
    margin: 16px 0 0;
    text-align: center;
}

body.template-preview-page .template-back-link a {
    color: #ff239b;
    font-size: 21px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.template-preview-page .template-back-link a:hover {
    color: #222;
}


/* =========================================================
   INDIVIDUAL TEMPLATE STARTER KIT DETAILS
   Shared by all individual template product pages
   ========================================================= */

body.template-preview-page .template-benefit-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(900px, calc(100% - 48px));
    margin: 28px auto 54px;
    border: 1px solid #e5e5e5;
    border-radius: 9px;
    background: #fff;
}

body.template-preview-page .template-benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 92px;
    padding: 20px 24px;
    text-align: left;
}

body.template-preview-page .template-benefit-item + .template-benefit-item {
    border-left: 1px solid #e5e5e5;
}

body.template-preview-page .template-benefit-item i {
    flex: 0 0 auto;
    color: #ff239b;
    font-size: 37px;
}

body.template-preview-page .template-benefit-item h3 {
    margin: 0 0 5px;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
}

body.template-preview-page .template-benefit-item p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.45;
}

/* =========================================================
   INDIVIDUAL TEMPLATE PRODUCT PAGE
   Reusable structure for future Starter Kits.
   ========================================================= */

body.template-preview-page .template-kit-details,
body.template-preview-page .template-layout-section,
body.template-preview-page .template-faq-section,
body.template-preview-page .template-purchase-area-final {
    width: min(1000px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

body.template-preview-page .template-kit-details {
    margin-top: 58px;
}

body.template-preview-page .template-layout-section {
    margin-top: 34px;
}

body.template-preview-page .template-kit-heading {
    margin-bottom: 26px;
    text-align: center;
}

body.template-preview-page .template-kit-heading h2 {
    margin: 0 0 10px;
    color: #333;
    font-size: 29px;
    font-weight: 400;
}

body.template-preview-page .template-kit-heading p {
    width: min(760px, 100%);
    margin: 0 auto;
    color: #707070;
    font-size: 17px;
    line-height: 1.65;
}

body.template-preview-page .template-kit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
    margin: 0 auto;
}

body.template-preview-page .template-kit-card {
    padding: 25px 27px;
    border: 1px solid #e5e5e5;
    border-radius: 9px;
    background: #fff;
}

body.template-preview-page .template-kit-card h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: #444;
    font-size: 17px;
    font-weight: 500;
}

body.template-preview-page .template-kit-card h3 i {
    color: #ff239b;
}

body.template-preview-page .template-kit-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.template-preview-page .template-kit-card li {
    position: relative;
    margin: 9px 0;
    padding-left: 22px;
    color: #666;
    font-size: 14px;
    line-height: 1.45;
}

body.template-preview-page .template-kit-card li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 1px;
    color: #ff239b;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

body.template-preview-page .template-file-note {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid #ececec;
    color: #858585;
    font-size: 12px;
    line-height: 1.5;
}


/* Layout carousel */

body.template-preview-page .template-layout-panel {
    position: relative;
    padding: 24px 34px 18px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #fff;
}

body.template-preview-page .template-layout-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

body.template-preview-page .template-layout-tab {
    min-width: 92px;
    padding: 9px 22px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #666;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: .2s ease;
}

body.template-preview-page .template-layout-tab.active {
    border-color: #ff239b;
    background: #ff239b;
    color: #fff;
}

body.template-preview-page .template-layout-stage {
    overflow: hidden;
}

body.template-preview-page .template-layout-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}


body.template-preview-page .template-layout-grid.is-fading-out {
    opacity: 0;
    transform: translateX(-8px);
}

body.template-preview-page .template-layout-grid.is-fading-in {
    opacity: 0;
    transform: translateX(8px);
}

body.template-preview-page .template-layout-grid.active {
    display: grid;
    opacity: 1;
    transform: translateX(0);
    transition: opacity .28s ease, transform .28s ease;
}

body.template-preview-page .template-layout-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
    background: #fff;
}

body.template-preview-page .template-layout-card img {
    display: block;
    width: 100%;
    height: auto;
}

body.template-preview-page .template-layout-card figcaption {
    padding: 10px 12px;
    color: #777;
    font-size: 13px;
    text-align: center;
}

body.template-preview-page .template-layout-arrow {
    position: absolute;
    top: 54%;
    z-index: 2;
    display: flex;
    width: 64px;
    height: 84px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 84px;
    font-weight: 100;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: .72;
    transition: opacity .2s ease, transform .2s ease;
}

body.template-preview-page .template-layout-arrow:hover {
    opacity: 1;
}

body.template-preview-page .template-layout-arrow:active {
    transform: translateY(-50%) scale(.94);
}

body.template-preview-page .template-layout-arrow span {
    display: block;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 84px;
    font-weight: 100;
    line-height: 1;
}


body.template-preview-page .template-layout-prev {
    left: -58px;
}

body.template-preview-page .template-layout-next {
    right: -58px;
}

body.template-preview-page .template-layout-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
}

body.template-preview-page .template-layout-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
}

body.template-preview-page .template-layout-dot.active {
    background: #ff239b;
}


/* Frequently Asked Questions */

body.template-preview-page .template-faq-section {
    margin-top: 54px;
    text-align: center;
}

body.template-preview-page .template-files-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

body.template-preview-page .template-files-heading span {
    flex: 1;
    height: 1px;
    background: #e2e2e2;
}

body.template-preview-page .template-files-heading h2 {
    margin: 0;
    color: #444;
    font-size: 27px;
    font-weight: 400;
    white-space: nowrap;
}

body.template-preview-page .template-faq-section p {
    width: min(620px, 100%);
    margin: 0 auto 8px;
    color: #777;
    font-size: 17px;
    line-height: 1.55;
}

body.template-preview-page .template-faq-section a {
    display: inline-block;
    margin-bottom: 16px;
    color: #ff239b;
    font-size: 27px;
    font-weight: 500;
    text-decoration: none;
}


/* Final CTA — pink panel from reference */

body.template-preview-page .template-purchase-area-final {
    margin-top: 0px;
    margin-bottom: 64px;
    padding: 24px 28px 26px;
    border-radius: 9px;
    background: #fff2f8;
    text-align: center;
}

body.template-preview-page .template-purchase-area-final h2 {
    margin: 0 0 14px;
    color: #444;
    font-size: 19px;
    font-weight: 400;
}

body.template-preview-page .template-purchase-area-final .template-select-btn {
    display: inline-flex;
    margin: 0;
}

body.template-preview-page .template-top-link {
    margin: 8px 0 0;
    text-align: center;
}

body.template-preview-page .template-top-link a {
    color: #ff239b;
    font-size: 19px;
    text-decoration: none;
}

body.template-preview-page .template-top-link a:hover {
    color: #222;
}

body.template-preview-page .template-preview-cta {
    margin: 18px 0 0px;
    text-align: center;
}

body.template-preview-page .template-preview-cta a {
    color: #ff239b;
    font-size: 21px;
    text-decoration: none;
}

body.template-preview-page .template-preview-cta a:hover {
    color: #222;
}

@media (max-width: 1100px) {
    body.template-preview-page .template-layout-prev {
        left: 4px;
    }

    body.template-preview-page .template-layout-next {
        right: 4px;
    }

    body.template-preview-page .template-layout-panel {
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (max-width: 800px) {

    body.template-preview-page .template-benefit-strip {
        grid-template-columns: 1fr;
    }

    body.template-preview-page .template-benefit-item + .template-benefit-item {
        border-left: 0;
        border-top: 1px solid #e5e5e5;
    }

    body.template-preview-page .template-kit-grid,
body.template-preview-page .template-layout-grid {
        grid-template-columns: 1fr;
    }

    body.template-preview-page .template-kit-grid {
        width: 100%;
    }

    body.template-preview-page .template-layout-prev {
        left: 5px;
    }

    body.template-preview-page .template-layout-next {
        right: 5px;
    }
}

@media (max-width: 520px) {
    body.template-preview-page .template-benefit-strip,
body.template-preview-page .template-kit-details,
body.template-preview-page .template-layout-section,
body.template-preview-page .template-faq-section,
body.template-preview-page .template-purchase-area-final {
        width: calc(100% - 30px);
    }

    body.template-preview-page .template-layout-tabs {
        flex-wrap: wrap;
    }

    body.template-preview-page .template-layout-panel {
        padding-left: 38px;
        padding-right: 38px;
    }
}

/* Scroll-to-top control (created by site.js) */
#topcontrol {
    position: fixed;
    right: 25px;
    bottom: 15px;
    z-index: 9998;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--pws-pink);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

#topcontrol.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#topcontrol i {
    color: var(--pws-pink);
    font-size: 38px;
}

/* =========================================================
   ORDER PAGE - REFRESH
   ========================================================= */

body.order-page {
    --order-pink: #ff239b;
    --order-text: #555;
    --order-muted: #777;
    --order-border: #e2e2e2;
}

/* ---------- Intro ---------- */

body.order-page .order-intro {
    text-align: center;
}

body.order-page .order-intro h1 {
    margin: 0 0 10px;
    color: #555;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
}

body.order-page .order-intro h1 .pink,
body.order-page .order-intro h1 .med-font,
body.order-page .order-intro h1 .lg-font {
    color: var(--order-pink) !important;
}

body.order-page .order-intro h1 .med-font {
    font-size: 38px;
}

body.order-page .order-intro h1 .lg-font {
    font-size: 38px;
}

body.order-page .order-intro h2 {
    margin: 0;
    color: #777;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.55;
    text-align: center;
}

/* ---------- Top divider ---------- */

body.order-page .order-top-divider {
    width: min(760px, 82%);
    margin: 22px auto 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

body.order-page .order-top-divider span {
    flex: 1;
    height: 1px;
    background: #e3e3e3;
}

body.order-page .order-top-divider img {
    display: block;
    width: 25px;
    height: 23px;
    object-fit: contain;
}

/* ---------- Individual sections ---------- */

body.order-page .order-page-section {
    width: 100%;
    margin: 0 auto 56px;
    text-align: center;
}

body.order-page .order-section-heading {
    margin: 0 auto 24px;
    text-align: center;
}

body.order-page .order-section-heading h2 {
    margin: 0 0 8px;
    color: #555;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.25;
    text-align: center;
}

body.order-page .order-section-heading h2 span {
    color: var(--order-pink) !important;
    font-size: 30px;
}

body.order-page .order-section-heading p {
    margin: 0;
    color: #555;
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
}

body.order-page .order-section-heading strong {
    display: inline-block;
    margin-top: 4px;
    color: #444;
    font-size: 41px;
    font-weight: 300;
}

/* ---------- Preview containers ---------- */

body.order-page .blank-template-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

body.order-page .blank-template-container label {
    display: block;
    margin: 0;
    padding: 0;
}

/* Hide radio buttons but keep labels clickable */

body.order-page .blank-template-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* ---------- About / Gallery / Contact images ---------- */

body.order-page .blank-template-container input[type="radio"] + img {
    display: block;
    width: 100%;
    max-width: 335px;
    height: 430px;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: top center;
    border: 1px solid #d8d8d8;
    background: #fff;
    cursor: pointer;
    box-sizing: border-box;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

/* Selected layout */

body.order-page .blank-template-container input[type="radio"]:checked + img {
    outline: none;
    border: 2px solid var(--order-pink);
    box-shadow: 0 3px 12px rgba(255, 35, 155, .12);
}

/* ---------- Main Home preview ---------- */

body.order-page .order-home-section .blank-template-container {
    max-width: 760px;
}

body.order-page .order-home-section label {
    width: 100%;
}

body.order-page .order-home-section input[type="radio"] + img.templ-pre-img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: 430px;
    margin: 0 auto;
    padding: 0;
    object-fit: contain;
    object-position: top center;
    border: 2px solid var(--order-pink);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}

/* ---------- Bottom review area ---------- */

body.order-page .order-review-area {
    width: 100%;
    margin: 10px auto 0;
    padding: 4px 0 48px;
    text-align: center;
}

body.order-page .order-review-area h2 {
    margin: 0 0 12px;
    color: #555;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
}

body.order-page .order-review-area p {
    margin: 0 0 4px;
    color: #555;
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
}

body.order-page .order-review-area a {
    color: var(--order-pink);
}

/* ---------- Buttons ---------- */

body.order-page .ordering {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 26px auto 0;
    padding-bottom: 15px;
}

body.order-page .btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    min-height: 48px;
    padding: 0 24px;
    margin: 0;
    border: 0;
    border-radius: 6px;
    background: #050505;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background-color .22s ease;
}

body.order-page .btn-order:hover {
    background: #222;
}

body.order-page .btn-order img {
    display: block;
    width: 25px;
    height: 23px;
    object-fit: contain;
}

body.order-page .order-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    background: #fff;
    color: #555;
    font-size: 15px;
    text-decoration: none;
}

body.order-page .order-back-btn:hover {
    border-color: #222;
    color: #222;
}

/* ==========================================================
   SHOPPING CART — WEBSITE STARTER KITS
   ========================================================== */

body.cart-page {
    --cart-pink: #ff239b;
    --cart-text: #555;
    --cart-muted: #777;
    --cart-border: #e2e2e2;
    --cart-black: #050505;
}

body.cart-page .cart-main {
    flex: 1;
    padding-top: 150px;
}

body.cart-page .cart-intro {
    text-align: center;
}

body.cart-page .cart-intro h2 {
    margin: 10px 0 0;
    color: var(--cart-text);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
}

body.cart-page .cart-top-divider {
    display: flex;
    width: min(620px, 76%);
    align-items: center;
    gap: 14px;
    margin: 20px auto 34px;
}

body.cart-page .cart-top-divider span {
    flex: 1;
    height: 1px;
    background: #e3e3e3;
}

body.cart-page .cart-top-divider img {
    display: block;
    width: 27px;
    height: 25px;
    object-fit: contain;
}

body.cart-page .cart-wrapper {
    padding-bottom: 54px;
}

body.cart-page .cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 28px;
    align-items: start;
}

body.cart-page .cart-items {
    display: grid;
    gap: 16px;
}

body.cart-page .cart-item-card {
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 22px;
    padding: 18px 20px;
    border: 1px solid var(--cart-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

body.cart-page .cart-item-home {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.cart-page .cart-item-home img {
    display: block;
    width: 100%;
    max-width: 248px;
    height: auto;
    object-fit: contain;
    object-position: top center;
    border: 1px solid #dedede;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .07);
}

body.cart-page .cart-item-details {
    min-width: 0;
}

body.cart-page .cart-item-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 4px;
}

body.cart-page .cart-item-eyebrow {
    margin: 0 0 3px;
    color: var(--cart-muted);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .55px;
    text-transform: uppercase;
}

body.cart-page .cart-item-heading h2 {
    margin: 0;
    color: #333;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.2;
}

body.cart-page .cart-template-id {
    margin: 4px 0 14px;
    color: var(--cart-muted);
    font-size: 14px;
}

body.cart-page .cart-remove-form {
    flex: 0 0 auto;
    margin: 0;
}

body.cart-page .cart-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    color: var(--cart-muted);
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: color .2s ease;
}

body.cart-page .cart-remove-btn:hover {
    color: var(--cart-pink);
}

body.cart-page .cart-kit-includes {
    display: flex;
    gap: 12px;
    max-width: 590px;
    padding: 13px 15px;
    border: 1px solid #ededed;
    border-radius: 7px;
    background: #fcfcfc;
}

body.cart-page .cart-kit-includes-icon {
    flex: 0 0 auto;
    padding-top: 2px;
    color: var(--cart-pink);
    font-size: 18px;
}

body.cart-page .cart-kit-includes strong {
    display: block;
    margin-bottom: 3px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

body.cart-page .cart-kit-includes p {
    margin: 0;
    color: #6a6a6a;
    font-size: 13px;
    line-height: 1.42;
}

body.cart-page .cart-kit-includes .cart-kit-line + .cart-kit-line {
    margin-top: 1px;
}

body.cart-page .cart-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 590px;
    margin-top: 14px;
}

body.cart-page .cart-digital-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cart-muted);
    font-size: 12px;
}

body.cart-page .cart-digital-note i {
    color: var(--cart-pink);
    font-size: 15px;
}

body.cart-page .cart-item-price {
    flex: 0 0 auto;
    text-align: right;
}

body.cart-page .cart-item-price span,
body.cart-page .cart-item-price strong {
    display: block;
}

body.cart-page .cart-item-price span {
    margin-bottom: 1px;
    color: var(--cart-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .45px;
}

body.cart-page .cart-item-price strong {
    color: var(--cart-pink);
    font-size: 21px;
    font-weight: 500;
}

body.cart-page .cart-summary {
    position: sticky;
    top: 105px;
    padding: 24px;
    border: 1px solid var(--cart-border);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

body.cart-page .cart-summary h2 {
    margin: 0 0 20px;
    color: #333;
    font-size: 24px;
    font-weight: 400;
}

body.cart-page .cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid #eee;
    color: var(--cart-text);
    font-size: 15px;
}

body.cart-page .cart-summary-row strong {
    font-weight: 500;
}

body.cart-page .cart-summary-total {
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid #e9e9e9;
    border-bottom: 0;
    font-size: 19px;
}

body.cart-page .cart-summary-total strong {
    color: #333;
    font-size: 21px;
}

body.cart-page .cart-price-note {
    margin: 4px 0 18px;
    color: var(--cart-muted);
    font-size: 12px;
    line-height: 1.45;
}

body.cart-page .cart-checkout-btn,
body.cart-page .cart-primary-btn {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    background: var(--cart-black);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .4px;
    text-decoration: none;
    box-sizing: border-box;
}

body.cart-page .cart-checkout-btn:disabled {
    opacity: .42;
    cursor: not-allowed;
}

body.cart-page .cart-continue-link {
    display: block;
    margin: 15px 0 0;
    color: var(--cart-pink);
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

body.cart-page .cart-continue-link:hover {
    text-decoration: underline;
}

body.cart-page .cart-empty-card {
    width: min(620px, 100%);
    margin: 10px auto 0;
    padding: 42px 34px;
    border: 1px solid var(--cart-border);
    border-radius: 9px;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
    box-sizing: border-box;
}

body.cart-page .cart-empty-card h2 {
    margin: 0 0 8px;
    color: #333;
    font-size: 28px;
    font-weight: 400;
}

body.cart-page .cart-empty-card p {
    width: min(470px, 100%);
    margin: 0 auto 24px;
    color: var(--cart-muted);
    font-size: 16px;
    line-height: 1.55;
}

body.cart-page .cart-empty-card .cart-primary-btn {
    width: auto;
    min-width: 210px;
}

body.cart-page .responsiveWrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

@media (max-width: 960px) {
    body.cart-page .cart-layout {
        grid-template-columns: 1fr;
    }

    body.cart-page .cart-summary {
        position: static;
        width: min(520px, 100%);
        margin: 0 auto;
        box-sizing: border-box;
    }
}

@media (max-width: 720px) {
    body.cart-page .cart-item-card {
        grid-template-columns: 1fr;
    }

    body.cart-page .cart-item-home img {
        max-width: 430px;
    }
}

@media (max-width: 520px) {
    body.cart-page .cart-main {
        padding-top: 125px;
    }

    body.cart-page .cart-item-card {
        padding: 16px;
    }

    body.cart-page .cart-kit-includes,
    body.cart-page .cart-item-footer {
        max-width: none;
    }

    body.cart-page .cart-item-heading,
    body.cart-page .cart-item-footer {
        align-items: flex-start;
    }

    body.cart-page .cart-item-footer {
        flex-direction: column;
    }

    body.cart-page .cart-item-price {
        text-align: left;
    }

    body.cart-page .cart-remove-btn span {
        display: none;
    }
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    width:100%;
    padding:32px 0 22px;
    background:#050505;
}

.footer-inner {
    width:min(1040px, calc(100% - 48px));
}

.footer-top {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-brand {
    color:#fff;
    font-size:13px;
    font-weight:300;
    letter-spacing:5px;
    white-space:nowrap;
}

.footer-brand span {
    font-weight:600;
}

.footer-nav {
    display:flex;
    align-items:center;
    gap:26px;
}

.footer-nav a,
.footer-nav a:visited {
    color:#aaa;
    font-size:14px;
    letter-spacing:.3px;
    text-decoration:none;
}

.footer-nav a:hover {
    color:var(--pws-pink);
}

.footer-divider {
    width:100%;
    height:1px;
    margin:24px 0 17px;
    background:#2d2d2d;
}

.footer-bottom {
    color:#777;
    font-size:12px;
    letter-spacing:1.5px;
    text-align:center;
}

/* =========================================================
   ORDER PAGE - WEBSITE STARTER KIT
   Shared styles for /templates/order
   ========================================================= */

/* =========================================================
   PET WEBSITE DESIGNS — ORDER PAGE
   Approved Order Mockup
   ========================================================= */

body.starter-kit-order-page {
--order-pink: #ff239b;
    --order-text: #666;
    --order-dark: #333;
    --order-border: #e6e6e6;
    --order-soft-pink: #fff2f8;
    --order-shadow: 0 8px 24px rgba(0, 0, 0, .055);
}

body.starter-kit-order-page .order-main {
width: min(1000px, calc(100% - 48px));
    margin: 0 auto;
    padding: 150px 0 62px;
}

/* Intro */

body.starter-kit-order-page .order-intro,
body.starter-kit-order-page .order-missing {
text-align: center;
}

body.starter-kit-order-page .order-divider {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

body.starter-kit-order-page .order-divider span {
width: 42px;
    height: 1px;
    background: #e3e3e3;
}

body.starter-kit-order-page .order-divider img {
width: 22px;
    height: 22px;
}

body.starter-kit-order-page .order-intro h1,
body.starter-kit-order-page .order-missing h1 {
margin: 0 0 8px;
    color: #2f2f2f;
    font-size: 36px;
    font-weight: 500;
}

body.starter-kit-order-page .order-intro > p,
body.starter-kit-order-page .order-missing > p {
margin: 0;
    color: #707070;
    font-size: 17px;
    line-height: 1.5;
}

body.starter-kit-order-page .order-missing {
padding: 80px 0 110px;
}

body.starter-kit-order-page .order-primary-btn {
display: inline-flex;
    margin-top: 24px;
    padding: 12px 22px;
    border-radius: 6px;
    background: var(--order-pink);
    color: #fff;
    text-decoration: none;
}

/* Cart feedback */

body.starter-kit-order-page .order-cart-notice {
display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 24px 0 0;
    padding: 13px 18px;
    border: 1px solid #f2bfdc;
    border-radius: 8px;
    background: #fff7fb;
    color: #555;
    font-size: 17px;
}

body.starter-kit-order-page .order-cart-notice a {
color: var(--order-pink);
    font-size: 21px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

/* Product summary */

body.starter-kit-order-page .order-summary-grid {
display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, .9fr);
    gap: 24px;
    margin-top: 36px;
}

body.starter-kit-order-page .order-preview-card,
body.starter-kit-order-page .order-product-card,
body.starter-kit-order-page .order-info-card,
body.starter-kit-order-page .order-horizontal-card {
border: 1px solid var(--order-border);
    border-radius: 10px;
    background: #fff;
}

body.starter-kit-order-page .order-preview-card {
overflow: hidden;
    padding: 14px;
    box-shadow: var(--order-shadow);
}

body.starter-kit-order-page .order-preview-image {
display: block;
    width: 100%;
    height: auto;
    border: 1px solid #dedede;
    border-radius: 5px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .08);
}

body.starter-kit-order-page .order-product-card {
display: flex;
    flex-direction: column;
    padding: 24px 27px;
    box-shadow: var(--order-shadow);
}

body.starter-kit-order-page .order-product-title {
display: flex;
    align-items: flex-start;
    gap: 14px;
}

body.starter-kit-order-page .order-product-paw {
display: flex;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--order-pink);
}

body.starter-kit-order-page .order-product-paw img {
width: 19px;
    height: 19px;
    filter: brightness(0) invert(1);
}

body.starter-kit-order-page .order-product-title h2 {
margin: -2px 0 4px;
    color: #333;
    font-size: 31px;
    font-weight: 500;
}

body.starter-kit-order-page .order-product-title p {
margin: 0;
    color: #666;
    font-size: 17px;
}

body.starter-kit-order-page .order-product-price {
margin: 27px 0 20px 48px;
}

body.starter-kit-order-page .order-product-price span {
display: block;
    margin-bottom: 4px;
    color: #555;
    font-size: 17px;
}

body.starter-kit-order-page .order-product-price strong {
color: var(--order-pink);
    font-size: 31px;
    font-weight: 400;
}

body.starter-kit-order-page .order-product-divider {
height: 1px;
    margin: 0 0 20px 48px;
    background: #e4e4e4;
}

body.starter-kit-order-page .order-digital-note {
display: flex;
    gap: 15px;
    margin-left: 48px;
    color: #555;
}

body.starter-kit-order-page .order-digital-note > i {
flex: 0 0 auto;
    margin-top: 2px;
    color: var(--order-pink);
    font-size: 27px;
}

body.starter-kit-order-page .order-digital-note strong {
display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 17px;
    font-weight: 600;
}

body.starter-kit-order-page .order-digital-note p {
margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.45;
}

body.starter-kit-order-page .order-back-link {
margin: auto 0 0 48px;
    padding-top: 18px;
    color: var(--order-pink);
    font-size: 21px;
    text-decoration: underline;
}

/* Three information cards */

body.starter-kit-order-page .order-info-grid {
display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 26px;
}

body.starter-kit-order-page .order-info-card {
min-height: 230px;
    padding: 30px 26px 26px;
    text-align: center;
}

body.starter-kit-order-page .order-info-card > i {
margin-bottom: 17px;
    color: var(--order-pink);
    font-size: 42px;
}

body.starter-kit-order-page .order-info-card h2 {
margin: 0 0 14px;
    color: #333;
    font-size: 27px;
    font-weight: 400;
}

body.starter-kit-order-page .order-info-card p {
margin: 0 auto;
    color: #666;
    font-size: 17px;
    line-height: 1.6;
}

/* FAQ + policy strips */

body.starter-kit-order-page .order-horizontal-card {
display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 22px;
    padding: 20px 28px;
}

body.starter-kit-order-page .order-horizontal-icon {
display: flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--order-pink);
    border-radius: 50%;
    color: var(--order-pink);
    font-size: 20px;
}

body.starter-kit-order-page .order-horizontal-copy {
flex: 1;
    text-align: left;
}

body.starter-kit-order-page .order-horizontal-copy h2 {
margin: 0 0 6px;
    color: #333;
    font-size: 27px;
    font-weight: 400;
    text-align: left;
}

body.starter-kit-order-page .order-horizontal-copy p {
margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
}

body.starter-kit-order-page .order-horizontal-link {
margin-left: auto;
    color: var(--order-pink);
    font-size: 21px;
    font-weight: 500;
    text-decoration: underline;
    white-space: nowrap;
}

body.starter-kit-order-page .order-policy-card {
align-items: flex-start;
}

body.starter-kit-order-page .order-policy-icon {
position: relative;
    flex: 0 0 56px;
    width: 56px;
    min-height: 48px;
    color: var(--order-pink);
}

body.starter-kit-order-page .order-policy-icon .fa-file-lines {
position: absolute;
    left: 3px;
    top: 1px;
    font-size: 40px;
}

body.starter-kit-order-page .order-policy-icon .fa-circle-check {
position: absolute;
    left: 29px;
    top: 27px;
    padding: 2px;
    border-radius: 50%;
    background: #fff;
    font-size: 18px;
}

/* CTA */

body.starter-kit-order-page .order-cta {
margin-top: 22px;
    padding: 25px 28px 27px;
    border-radius: 10px;
    background: var(--order-soft-pink);
    text-align: center;
}

body.starter-kit-order-page .order-cta h2 {
margin: 0 0 7px;
    color: #333;
    font-size: 27px;
    font-weight: 400;
}

body.starter-kit-order-page .order-cta h2 span {
color: var(--order-pink);
    font-size: 31px;
    font-weight: 400;
}

body.starter-kit-order-page .order-cta p {
margin: 0 0 16px;
    color: #666;
    font-size: 17px;
}

body.starter-kit-order-page .order-add-form {
margin: 0;
}

body.starter-kit-order-page .order-add-btn {
display: inline-flex;
    min-width: 280px;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 28px;
    border: 0;
    border-radius: 6px;
    background: var(--order-pink);
    color: #fff;
    font: inherit;
    font-size: 17px;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}

body.starter-kit-order-page .order-add-btn:hover {
opacity: .9;
}

body.starter-kit-order-page .order-add-btn:active {
transform: translateY(1px);
}

body.starter-kit-order-page .order-cta-back {
display: inline-block;
    margin-top: 15px;
    color: var(--order-pink);
    font-size: 21px;
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 900px) {
body.starter-kit-order-page .order-summary-grid {
grid-template-columns: 1fr;
}

body.starter-kit-order-page .order-product-card {
min-height: 0;
}

body.starter-kit-order-page .order-back-link {
margin-top: 24px;
}

body.starter-kit-order-page .order-info-grid {
grid-template-columns: 1fr;
}

body.starter-kit-order-page .order-info-card {
min-height: 0;
}
}

@media (max-width: 650px) {
body.starter-kit-order-page .order-main {
width: calc(100% - 30px);
        padding-top: 110px;
}

body.starter-kit-order-page .order-intro h1,
body.starter-kit-order-page .order-missing h1 {
font-size: 30px;
}

body.starter-kit-order-page .order-preview-card {
padding: 10px;
}

body.starter-kit-order-page .order-product-card {
padding: 25px 22px;
}

body.starter-kit-order-page .order-product-price,
body.starter-kit-order-page .order-product-divider,
body.starter-kit-order-page .order-digital-note,
body.starter-kit-order-page .order-back-link {
margin-left: 0;
}

body.starter-kit-order-page .order-product-price {
margin-top: 24px;
}

body.starter-kit-order-page .order-horizontal-card {
align-items: flex-start;
        flex-wrap: wrap;
        padding: 20px;
}

body.starter-kit-order-page .order-horizontal-link {
width: 100%;
        margin: 0 0 0 66px;
}

body.starter-kit-order-page .order-add-btn {
width: 100%;
        min-width: 0;
}

body.starter-kit-order-page .order-cart-notice {
align-items: flex-start;
        flex-direction: column;
}
}

@media (max-width: 420px) {
body.starter-kit-order-page .order-product-title {
gap: 10px;
}

body.starter-kit-order-page .order-product-title h2 {
font-size: 24px;
}

body.starter-kit-order-page .order-info-card {
padding: 26px 20px;
}

body.starter-kit-order-page .order-horizontal-link {
margin-left: 0;
}
}

body.cart-page .cart-package-name {
    margin: 5px 0 18px;
    color: #666;
    font-size: 15px;
}

body.cart-page .cart-package-name strong {
    color: #333;
    font-size: inherit;
    font-weight: 600;
}
