/*
Theme Name: Stepforadder
Theme URI: https://stepforadder.com
Author: Stepforadder Print & Packaging
Author URI: https://stepforadder.com
Description: Stepforadder Print & Packaging company website theme. Premium corrugated box manufacturing with custom solutions. Static HTML/CSS/JS design, no build process required.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stepforadder
Tags: business, manufacturing, packaging, print, static, custom-theme, responsive, seo-friendly
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ==========================================================================
   CSS Variables (Design System)
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: #FE445C;
    --color-primary-light: #FE445C;
    --color-primary-dark: #FE445C;
    --color-primary-foreground: hsl(0, 0%, 98%);

    --color-secondary: hsl(210, 17%, 92%);
    --color-secondary-foreground: hsl(210, 12%, 16%);

    --color-background: hsl(0, 0%, 98%);
    --color-foreground: hsl(210, 12%, 16%);

    --color-muted: hsl(210, 17%, 95%);
    --color-muted-foreground: hsl(210, 8%, 46%);

    --color-accent: hsl(0, 73%, 96%);
    --color-accent-foreground: hsl(0, 73%, 41%);

    --color-border: hsl(210, 20%, 88%);
    --color-input: hsl(210, 20%, 88%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    --gradient-hero: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
    --gradient-bg: linear-gradient(180deg, var(--color-background), var(--color-muted));

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-elegant: 0 10px 30px -10px hsla(0, 73%, 41%, 0.2);
    --shadow-glow: 0 0 40px hsla(0, 73%, 51%, 0.15);

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border radius */
    --radius: 0.75rem;
    --radius-sm: 0.375rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ==========================================================================
   Reset and Base Styles
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-foreground);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid {
    display: grid;
    gap: 1rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--color-foreground);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-muted-foreground); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* ==========================================================================
   Button Components
   ========================================================================== */

.btn {
   	display: inline-flex;
   	align-items: center;
   	justify-content: center;
   	line-height: 1;
   	border: none;
   	border-radius: 8px;
   	cursor: pointer;
   	transition: var(--transition);
   	text-decoration: none;
   	gap: 0.5rem;
   	font-size: 14px;
   	padding: 9px 25px;
   	font-weight: 600;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-primary-foreground);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-primary-foreground);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-primary-foreground);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Card Components
   ========================================================================== */

.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
	background: rgba(255, 255, 255,1);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: var(--transition);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.site-logo img {
	width: 200px;
	height: auto;
}

.mobile-menu-header img {
	width: 200px;
	height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
	color: var(--color-foreground);
	font-weight: 600;
	padding: 0.5rem 0;
	border-bottom: 0;
	text-decoration: none;
	transition: var(--transition);
	font-size: 14px;
}

.nav-menu a:hover, .nav-menu li.current-menu-item a {
    color: var(--color-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gradient-bg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        var(--color-background) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
    font-weight: bold;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elegant);
}

.hero-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--color-primary);
    color: var(--color-primary-foreground);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-text-lg {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.badge-text-sm {
    font-size: 0.875rem;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--color-muted);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

/*--Footer--*/
.site-footer{
	background-color: #FE445C;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-foreground);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-input);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 73, 41, 0.1);
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #fe445c;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: var(--color-background);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
    font-size: 2rem;
    cursor: pointer;
    color: #fe445c;
    line-height: 1;
}

.mobile-nav-menu .menu-item {
	list-style: none;
	padding: 0;
	margin: 14px 0 0 0;
}

.mobile-nav-menu .menu-item a {
	color: #fe445c;
	font-weight: 600;
	padding: 0.5rem 0;
	border-bottom: 0;
	text-decoration: none;
	font-size: 14px;
	margin: 7px 0 0 0;
}

.mobile-auth ul li .open-login-modal {
	background: #fe445c;
	color: #fff;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
}
.mobile-auth ul li .open-signup-modal {
  background: #fe445c;
	color: #fff;
  padding: 12px 22px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
}

.mobile-auth ul li a {
  background: #fe445c;
	color: #fff;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	margin: 30px 0;
}

.mobile-auth ul li {
	list-style: none;
	margin: 30px 0;
}

.mobile-nav-menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.mobile-cart{
margin-top:15px;
}

.mobile-cart-link {
	display: flex;
	align-items: center;
	padding: 12px;
	border-radius: 8px;
	color: #fe445c;
	font-weight: 600;
	text-decoration: none;
	padding: 0 35px;
}

.mobile-cart-link i{
font-size:16px;
}

.mobile-cart-count{
background:#fff;
color:#FE445C;
padding:2px 8px;
border-radius:20px;
font-size:12px;
font-weight:700;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    padding-left: 1rem;
}

.logofooter img {
	width: 260px;
	height: auto;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .nav-menu {
        display: none;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WordPress Required Styles
   ========================================================================== */

.alignleft {
    float: left;
    margin: 0 1.5em 1em 0;
}

.alignright {
    float: right;
    margin: 0 0 1em 1.5em;
}

.aligncenter {
    display: block;
    margin: 0 auto 1em;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5em;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875em;
    color: var(--color-muted-foreground);
    margin-top: 0.5em;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.sticky {
    position: relative;
}

.bypostauthor {
    font-weight: bold;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.authbtns_wrap {
	display: flex;
}

.authbtns_wrap ul {
	display: flex;
	gap: 1rem;
	margin: 0;
}

.authbtns {
	list-style: none;
}

.authbtns a {
	background-color: #FE445C;
	color: #fff;
	padding: 9px 25px;
	border-radius: 8px 8px 8px 8px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}

.authbtns.profile a {
	background-color: #fff;
	color: #000;
	padding: 9px 0;
}

.carticon {
	display: inline-block;
	width: auto;
}

.carticon a {
	color: #FE445C;
	text-decoration: none;
}

.reset-close-btn{
position:absolute;
top:10px;
right:12px;
background:transparent;
border:none;
font-size:20px;
cursor:pointer;
color:#444;
z-index:9999;
pointer-events:auto;
}

.reset-close-btn:focus{
outline:none;
box-shadow:none;
}
.authbtns a{
padding:8px 16px;
border-radius:6px;
font-weight:500;
}

.authbtns.login a{
border:1px solid #ff4d5a;
color:#ff4d5a;
background:transparent;
padding: 12px 22px;
}

.authbtns.signup a{
background:#ff4d5a;
color:#fff;
padding: 12px 22px;
}

.forgot_password_link {
	color: #fe445c;
}

#loginsignup .modal-dialog {
	max-width: 400px;
}

#loginsignup .modal-content {
	border-radius: 8px 8px 8px 8px;
}

#loginsignup .modal-body {
	padding: 0;
}

#loginsignup .login_signup_tabs {
	float: left;
	width: 100%;
}

#loginsignup .login_signup_tab:nth-child(1) {
	border-radius: 8px 0 0 0;
}

#loginsignup .login_signup_tab:nth-child(2) {
	border-radius: 0 8px 0px 0px;
}

#loginsignup .login_signup_tab {
	float: left;
	width: 50%;
	text-align: center;
	padding: 15px 0;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

#loginsignup .login_signup_tab.active {
	background-color: #FE445C;
	color: #ffffff;
}

.login_signup_tab_containers {
	float: left;
	width: 100%;
}

.login_signup_tab_container {
	float: left;
	width: 100%;
	padding: 30px 30px;
	display: none;
}

.login_signup_tab_container.active {
	display: block;
}

.login_signup_tab_container .form-label {
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 0;
}

.login_signup_tab_container .form-control:focus {
	border-color: none;
	outline: 0;
	box-shadow: none;
}

.login_signup_tab_container .loginerror {
    font-size: 13px;
    color: #FE445C;
}

.login_signup_tab_container .loginsuccess {
    font-size: 13px;
    color: #0b8400;
}

.login_signup_tab_container .form-check-label {
	cursor: pointer;
}

.login_signup_tab_container input {
	border-color: none;
	outline: 0;
	box-shadow: none;
}

.login_signup_tab_container .form-check-input:focus {
	border-color: #fe445c;
	outline: 0;
	box-shadow: none;
}

.login_signup_tab_container .form-check-input:checked {
	background-color: #fe445c;
	border-color: #fe445c;
}

/* ==========================================================================
   My Account – Modern Redesign
   ========================================================================== */

.ma-wrapper {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    min-height: 600px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Sidebar */
.ma-sidebar-col {
    background: #fff;
    border-right: 1px solid #eee;
}

.ma-sidebar {
    padding: 0;
    position: sticky;
    top: 0;
}


.ma-user-info {
    padding: 28px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, rgba(254,68,92,0.04), rgba(254,68,92,0.01));
}

.ma-avatar-wrap {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

.ma-avatar {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    display: block;
}

.ma-avatar-fallback {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #e9e9e9;
    display: none;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-primary);
}

.ma-avatar-fallback.show {
    display: flex;
}

.ma-avatar-fallback i {
    font-size: 26px;
    color: #bbb;
}

.ma-avatar-edit {
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 9px;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 2;
    transition: background 0.15s;
}

.ma-avatar-edit:hover {
    background: #e53350;
}

.ma-user-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0 0 2px;
}

.ma-user-email {
    font-size: 12px;
    color: #999;
}

/* Navigation */
.ma-nav ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.ma-nav ul li {
    margin: 0;
}

.ma-nav ul li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.15s;
}

.ma-nav ul li a:hover {
    background: rgba(254,68,92,0.04);
    color: var(--color-primary);
}

.ma-nav ul li.is-active a {
    background: rgba(254,68,92,0.06);
    color: var(--color-primary);
    font-weight: 600;
    border-left-color: var(--color-primary);
}

.ma-nav-icon {
    width: 20px;
    margin-right: 10px;
    text-align: center;
    font-size: 14px;
}

/* Content */
.ma-content-col {
    background: #f8f8f8;
}

.ma-content {
    padding: 28px;
}

/* Welcome */
.ma-welcome {
    margin-bottom: 24px;
}

.ma-welcome h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px;
}

.ma-welcome p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Stat Cards */
.ma-stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ma-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(254,68,92,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ma-stat-icon i {
    font-size: 18px;
    color: var(--color-primary);
}

.ma-stat-info {
    display: flex;
    flex-direction: column;
}

.ma-stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.ma-stat-number .woocommerce-Price-amount {
    font-size: 18px;
}

.ma-stat-label {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

/* Sections */
.ma-section {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-bottom: 16px;
}

.ma-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.ma-section-header h6 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.ma-section-header a {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary) !important;
    text-decoration: none;
}

.ma-order-action .btn-outline-primary {
    color: #fff !important;
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.ma-order-action .btn-outline-primary:hover {
    background: #e53350 !important;
    border-color: #e53350 !important;
}

.ma-section-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
}

/* Orders List */
.ma-orders-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ma-order-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 16px;
    font-size: 14px;
}

.ma-order-row:last-child {
    border-bottom: none;
}

.ma-order-id a {
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.ma-order-date {
    color: #888;
    font-size: 13px;
    flex: 1;
}

.ma-order-total {
    font-weight: 600;
    color: #222;
}

/* Status Badges */
.ma-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ma-status-processing {
    background: rgba(254,68,92,0.1);
    color: var(--color-primary);
}

.btn.btn-outline-primary.btn-sm {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: #fe445c;
}

.btn.btn-sm.btn-outline-primary.ma-action-btn:hover {
	background: #e53350 !important;
	border-color: #e53350 !important;
}

.woocommerce-order-details {
	border: 1px solid rgba(0,0,0,.1);
	margin: 0 -1px 24px 0;
	text-align: left;
	width: 100%;
	border-radius: 10px;
}

.woocommerce table.shop_table {
	margin: 0 -1px 24px 0;
	text-align: left;
	width: 100%;
	border-collapse: separate;
  border: none;
  border-radius: none;
}

.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1 {
	border: 1px solid rgba(0,0,0,.1);
}

.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
	border: 1px solid rgba(0,0,0,.1);
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
	font-weight: 700;
	border-top: 1px solid rgba(0,0,0,.1);
	font-size: 13px;
}

.woocommerce-column__title {
	padding: 14px 18px;
	background: #fafafa;
	border-bottom: 1px solid #f0f0f0;
}

.woocommerce .woocommerce-customer-details address {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	font-style: normal;
	border: none;
}

.woocommerce-order-details__title {
	background: #fff;
	border-radius: 10px 10px 0 0;
	padding: 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
	font-size: 16px;
	font-weight: 700;
	color: #222;
	margin: 0;
	border-bottom: 1px solid #e4e4e4;
}

.ma-status-completed {
    background: rgba(40,167,69,0.1);
    color: #28a745;
}

.ma-status-on-hold,
.ma-status-pending {
    background: rgba(255,165,0,0.1);
    color: #e08800;
}

.ma-status-cancelled,
.ma-status-refunded,
.ma-status-failed {
    background: rgba(220,53,69,0.1);
    color: #dc3545;
}

/* Order Cards (Orders Page) */
.ma-order-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.ma-order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.ma-order-card-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ma-order-number {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
}

.ma-order-date-text {
    font-size: 13px;
    color: #888;
}

.ma-order-card-body {
    padding: 14px 18px;
}

.ma-order-items-summary {
    margin-bottom: 10px;
}

.ma-order-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.ma-order-more {
    font-size: 13px;
    color: #999;
    margin-left: 6px;
}

.ma-order-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ma-order-total-label {
    font-size: 13px;
    color: #888;
    margin-right: 8px;
}

.ma-order-total-amount {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.ma-order-actions {
    display: flex;
    gap: 6px;
}

.ma-action-btn {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 6px;
}

/* Quick Links */
.ma-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.15s;
}

.ma-quick-link:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.ma-quick-link i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(254,68,92,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-primary);
}

/* Address Cards */
.ma-address-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.ma-address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.ma-address-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.ma-address-edit {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.ma-address-body {
    padding: 16px 18px;
}

.ma-address-body address {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-style: normal;
    margin: 0;
}

.ma-no-address {
    font-size: 14px;
    color: #aaa;
    font-style: italic;
    margin: 0;
}

/* Form Styles */
.ma-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.15s;
}

.ma-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(254,68,92,0.1);
    outline: none;
}

.ma-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
    display: block;
}

.ma-label .required {
    color: var(--color-primary);
}

.ma-form-section {
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.ma-form-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Empty State */
.ma-empty-state {
    text-align: center;
    padding: 48px 24px;
}

.ma-empty-state i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.ma-empty-state h6 {
    font-size: 18px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
}

.ma-empty-state p {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

/* Pagination */
.ma-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .ma-sidebar-col {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .ma-sidebar {
        position: static;
    }

    .ma-user-info {
        padding: 16px;
    }

    .ma-avatar-wrap {
        width: 48px;
        height: 48px;
    }

    .ma-avatar {
        width: 48px;
        height: 48px;
    }

    .ma-avatar-edit {
        width: 18px;
        height: 18px;
        font-size: 8px;
    }

    .ma-nav ul {
        display: flex;
        overflow-x: auto;
        padding: 0 12px;
        gap: 0;
        -webkit-overflow-scrolling: touch;
    }

    .ma-nav ul li a {
        white-space: nowrap;
        padding: 10px 14px;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 13px;
    }

    .ma-nav ul li.is-active a {
        border-left-color: transparent;
        border-bottom-color: var(--color-primary);
    }

    .ma-content {
        padding: 16px;
    }
}

@media (max-width: 575px) {
    .ma-order-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .ma-order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ma-order-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ma-stat-card {
        padding: 14px;
    }

    .ma-stat-number {
        font-size: 16px;
    }
}

/* Override old WooCommerce defaults */
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
    padding: 0;
    min-height: auto;
    max-width: none;
    background: transparent;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
}

.woocommerce-account .woocommerce .color-primary {
    color: var(--color-primary);
}

#loginsignup .btn-primary {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
}

#loginsignup .form-check-label {
    font-size: 12px;
}

#loginsignup .form-check-label a {
    color: var(--color-primary);
    text-decoration: none;
}

#loginsignup .form-check-label a:hover {
    text-decoration: underline;
}

.login_signup_tab_container .signuperror {
    font-size: 13px;
    color: #FE445C;
}

.login_signup_tab_container .signupsuccess {
    font-size: 13px;
    color: #0b8400;
}

.productswrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 100%;
	gap: 30px;
	margin: 30px 0px;
}
.productswrapper .product {
	width: 100%;
	box-shadow: 0px 0px 2px 0px #bbb;
	border-radius: 8px;
}
.product_loop_image {
	display: inline-block;
	width: 100%;
	margin-bottom: 15px;
	border-bottom: 1px solid #f3f3f3;
	min-height: 180px;
	background-color: rgba(249, 26, 26, 0.7);
}
.productswrapper .product .product_loop_image img {
	width: 100%;
	height: auto;
	display: inline-block;
	max-height: 180px;
	object-fit: contain;
}
.product_loop_rating {
	float: left;
	width: 100%;
	padding: 5px 15px;
}

.woocommerce .product_loop_rating .star-rating span {
	color: #FE445C;
}
.product_loop_colors {
	float: left;
	width: 100%;
	padding: 0 15px;
	font-size: 13px;
	font-weight: 500;
}
.product_loop_title {
	display: inline-block;
	width: 100%;
	padding: 0 15px;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #fe445c;
	min-height: 60px;
}
.product_loop_price {
	display: inline-block;
	width: 100%;
	padding: 0 15px;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}
.product_loop_btn {
	display: inline-block;
	width: 100%;
	padding: 0 15px;
	margin-bottom: 25px;
	margin-top: 10px;
}

.product_loop_btn .btn.btn-primary.btn-customize-product {
	width: 100%;
	padding: 15px 0;
}

.filterwrapper {
	float: left;
	width: 100%;
	border: 1px solid #e4e4e4;
}

.filterheading {
	float: left;
	width: 100%;
	padding: 11px 15px;
	background-color: #FE445C;
	color: #fff;
	font-weight: 600;
}
.filters {
	float: left;
	width: 100%;
	padding: 0 15px;
	margin: 15px 0;
}
.filter {
	float: left;
	width: 100%;
	margin: 0 0 15px 0;
	border-bottom: 1px solid #FFAAB5;
	padding: 0 0 15px 0;
}

.filter:last-child {
	float: left;
	width: 100%;
	margin: 0;
	border-bottom: 0;
	padding: 0;
}

.filter_title {
	float: left;
	width: 100%;
	color: #000;
	font-size: 14px;
	font-weight: 600;
}

.filter_content {
	float: left;
	width: 100%;
	padding: 5px 0 0;
	font-size: 14px;
}

.filter_content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.filter_content ul li {
	cursor: pointer;
	float: left;
	width: 100%;
	margin: 0 0 5px;
}

.filter_content ul li.selected .fa-regular {
	color: #FE445C;
}

/* GRID LAYOUT */
.custom-product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* desktop 4 in row */
    gap: 30px;
}

/* CARD */
.category-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

/* HOVER EFFECT */
.category-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE SAME SIZE */
.category-box img {
    width: 100%;
    height: 220px;          /* SAME HEIGHT */
    object-fit: contain;    /* image cut nahi hogi */
    margin-bottom: 15px;
}

/* TITLE */
.category-box h3 {
    font-size: 18px;
    color: #ff2d55;         /* red like screenshot */
    margin: 0;
    font-weight: 600;
}

/* LINK REMOVE UNDERLINE */
.category-box a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* TABLET */
@media (max-width: 1024px) {
    .custom-product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .custom-product-categories {
        grid-template-columns: 1fr;
    }
}


.product-cat-carousel-wrapper {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 40px;
    position: relative;
}

.product-cat-carousel .product-cat-item {
    padding: 10px;
}

.product-cat-carousel .product-cat-link {
    display: block;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-cat-carousel .product-cat-link:hover {
    transform: translateY(-5px);
}

.product-cat-carousel .product-cat-img-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    overflow: hidden;
    min-width: 250px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-cat-carousel .product-cat-link:hover .product-cat-img-box {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-cat-carousel .product-cat-img-box img {
    max-width: 100%;
    max-height: 180px;
    height: auto;
    object-fit: contain;
}

.product-cat-carousel .product-cat-name {
    font-size: 16px;
    font-weight: 600;
    color: #fe445c;
    margin: 0;
    padding: 8px 0;
}

/* ===== Owl Nav Arrows - No Border, Theme Color ===== */
.product-cat-carousel-wrapper .owl-nav {
	position: absolute;
	top: 35%;
	width: calc(100% + 30px);
	left: -15px;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	transform: translateY(-50%);
}

.product-cat-carousel-wrapper .owl-nav button.owl-prev,
.product-cat-carousel-wrapper .owl-nav button.owl-next {
    pointer-events: auto;
    background: transparent !important;
    border: none !important;
    font-size: 36px !important;
    font-weight: 600;
    color: #fe445c !important;
    padding: 0 !important;
    box-shadow: none;
    transition: all 0.3s ease;
}

.product-cat-carousel-wrapper .owl-nav button.owl-prev:hover,
.product-cat-carousel-wrapper .owl-nav button.owl-next:hover {
    background: transparent !important;
    color: #e63350 !important;
    box-shadow: none;
    transform: scale(1.2);
}

.product-cat-carousel-wrapper .owl-nav button.owl-prev span,
.product-cat-carousel-wrapper .owl-nav button.owl-next span {
    line-height: 1;
    margin-top: -2px;
}

/* ===== Dots - Theme Color ===== */
.product-cat-carousel-wrapper .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.product-cat-carousel-wrapper .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-cat-carousel-wrapper .owl-dots .owl-dot.active span {
    background: #fe445c !important;
    width: 25px;
    border-radius: 5px;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .product-cat-carousel-wrapper {
        padding: 0 30px;
    }
    .product-cat-carousel .product-cat-img-box {
        height: 180px;
        padding: 15px;
    }
    .product-cat-carousel .product-cat-img-box img {
        max-height: 150px;
    }
    .product-cat-carousel-wrapper .owl-nav button.owl-prev,
    .product-cat-carousel-wrapper .owl-nav button.owl-next {
        width: 32px;
        height: 32px;
        font-size: 18px !important;
    }
}

.price-range-slider { padding: 10px 5px; }
.price-input-group { display: flex; align-items: center; gap: 5px; }
.price-input-group input { width: 80px; }
.ui-slider { height: 6px; background: #e0e0e0; border-radius: 3px; margin: 15px 0; position: relative; border: none !important; }
.ui-slider .ui-slider-range { background: #FE445C; border-radius: 3px; position: absolute; height: 100%; }
.ui-slider .ui-slider-handle { width: 20px; height: 20px; border-radius: 50%; background: #FE445C; border: 3px solid #fff; top: -8px; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.3); outline: none !important; position: absolute; z-index: 2; margin-left: -10px; }
.ui-slider .ui-slider-handle:hover { background: #e63350; transform: scale(1.1); }
.ui-slider .ui-slider-handle:focus { outline: none !important; }
.ui-slider .ui-slider-handle:active { background: #d42a45; }
.filter_content ul { list-style: none; padding: 0; margin: 0; }
.filter_content ul li { padding: 0 0; cursor: pointer; }
.filter_content ul li:hover { color: #333; }
.filter_content ul li.selected { font-weight: 600; }


.modal .form-select:focus {
	border-color: #FE445c;
	outline: 0;
	box-shadow: none;
}

select {
    cursor: pointer;
}

.modal .form-control:focus {
	border-color: #FE445c;
	outline: 0;
	box-shadow: none;
}

/* ==========================================================================
   Product Table Page
   ========================================================================== */

/* Banner */
.pt-banner {
	float: left;
	min-height: 200px;
	background: url('images/products_banner.jpg') center center no-repeat;
	background-size: cover;
	position: relative;
	width: 100%;
}

.pt-banner-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
}

.pt-banner-content {
	width: 100%;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	height: 200px;
}

.breadcrumb {
	padding: 12px 0 6px 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumb-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-title {
	margin: 0;
  font-family: "Roboto", Sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: 1px;
	color: #fff;
}


.breadcrumb .woocommerce-breadcrumb {
	color: #FFFFFF;
	margin: 0px 0px 0px 0px;
	font-family: "Lato", Sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
}

.breadcrumb .woocommerce-breadcrumb a {
    text-decoration: none;
    color: #ffffff;
}

.breadcrumb span {
    color: #000;
}


/* Search by Size */
.pt-search-length,
.pt-search-width,
.pt-search-height {
    text-align: center;
    padding: 6px 4px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pt-search-length:focus,
.pt-search-width:focus,
.pt-search-height:focus {
    border-color: #FE445C;
    outline: 0;
    box-shadow: none;
}

/* Keyword Search */
.pt-keyword-search {
    font-size: 13px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.pt-keyword-search:focus {
    border-color: #FE445C;
    outline: 0;
    box-shadow: none;
}

/* Main Layout */
.pt-main {
	padding: 25px 0 40px;
	display: inline-block;
	width: 100%;
	background-color: #fff;
}

.pt-main .filterwrapper {
    position: sticky;
    top: 80px;
    align-self: flex-start;
}

/* Color Swatches */
.pt-color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 5px 0;
}

.pt-color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #ddd;
    display: inline-block;
    transition: all 0.2s ease;
}

.pt-color-swatch[data-colorslug="brown"] {
    background-color: #8B4513;
}

.pt-color-swatch[data-colorslug="white"] {
    background-color: #ffffff;
}

.pt-color-swatch[data-colorslug="blue"] {
    background-color: #1e73be;
}

.pt-color-swatch.selected {
    border-color: #FE445C;
    box-shadow: 0 0 0 2px #FE445C;
}

.pt-color-swatch:hover {
    border-color: #FE445C;
}

/* Range Slider Values */
.pt-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

/* Table Header Controls */
.pt-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: #777;
}

/* Product Table */
.pt-product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid #e4e4e4;
}

.pt-product-table thead th {
    background: #fe445c;
    color: #fff;
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    border: none;
}

.pt-product-table thead th.pt-th-name {
    text-align: left;
    padding-left: 12px;
}

.pt-product-table thead th.pt-th-size {
    text-align: left;
}

.pt-product-table thead .pt-th-subrow {
    background: #f5f5f5;
}

.pt-product-table thead .pt-th-subrow td {
    padding: 4px 8px;
    font-size: 11px;
    color: #888;
    text-align: center;
    border-bottom: 1px solid #e4e4e4;
}

.pt-product-table thead .pt-price-label {
    font-weight: 600;
    color: #555;
    font-size: 12px;
}

.pt-product-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.15s ease;
}

.pt-product-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.pt-product-table tbody tr:hover {
    background: #fff5f6;
}

.pt-product-table tbody td {
    padding: 8px 8px;
    vertical-align: middle;
}

.pt-col-img {
    width: 50px;
    padding: 4px 6px;
    text-align: center;
}

.pt-col-img img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 4px;
}

.pt-col-name {
    font-weight: 600;
    padding-left: 12px;
    min-width: 140px;
}

.pt-col-name a {
    color: #333;
    text-decoration: none;
}

.pt-col-name a:hover {
    color: #FE445C;
    text-decoration: underline;
}

.pt-col-size {
    white-space: nowrap;
    font-weight: 500;
    color: #555;
}

.pt-col-price {
    text-align: right;
    white-space: nowrap;
    font-weight: 500;
    color: #333;
    padding: 8px 10px;
}

.pt-col-qty {
    width: 75px;
    text-align: center;
}

.pt-qty-input {
    width: 65px;
    text-align: center;
    padding: 5px 4px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pt-qty-input:focus {
    border-color: #FE445C;
    outline: 0;
    box-shadow: none;
}

.pt-col-add {
    width: 70px;
    text-align: center;
}

.pt-add-btn {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
}

.pt-add-btn.pt-added {
    background: #fE445C;
    border-color: #fE445C;
}

/* Loading State */
.pt-loading {
    text-align: center;
    padding: 40px 10px;
    color: #999;
    font-size: 15px;
}

.pt-no-results {
    text-align: center;
    padding: 40px 10px;
    color: #999;
    font-size: 15px;
}

/* Table Footer */
.pt-table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 10px 0;
}

.pt-show-count {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.pt-show-count select {
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

/* Pagination */
.pt-pagination {
    display: flex;
    align-items: center;
    gap: 0;
}

.pt-page-list {
    list-style: none;
    display: inline-flex;
    gap: 3px;
    margin: 0;
    padding: 0;
}

.pt-page-list li {
    display: inline-block;
}

.pt-page-link {
    display: inline-block;
    padding: 6px 11px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    cursor: pointer;
}



/* Hover (normal links only) */
.pt-page-link:hover {
    background: #fe445c;
    color: #fff;
}

/* Click press effect (normal links only) */
.pt-page-link:active {
    background: #e03a4f;
    color: #fff;
}

/* Current active page */
.pt-page-link.active {
    background: #fe445c;
    color: #fff;
    cursor: pointer;
}

/* Prevent hover change on active */
.pt-page-link.active:hover {
    background: #fe445c;
    color: #fff;
}

.pt-page-link:active {
    transform: scale(0.96);
}


.pt-page-current {
    display: inline-block;
    padding: 6px 11px;
    background: #FE445C;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #FE445C;
}

.pt-page-link.pt-page-arrow {
    background: #FE445C;
    color: #fff;
    border-color: #FE445C;
    font-weight: 700;
}

.pt-page-link.pt-page-arrow:hover {
    background: #e63350;
    border-color: #e63350;
}

/* Responsive */
@media (max-width: 1024px) {
    .pt-main .col-lg-3 {
        display: none;
    }
    .pt-product-table {
        font-size: 12px;
    }
    .pt-col-name {
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .pt-banner-title {
        font-size: 1.8rem;
    }
    .pt-product-table thead th,
    .pt-product-table tbody td {
        padding: 6px 4px;
        font-size: 11px;
    }
    .pt-qty-input {
        width: 50px;
        font-size: 12px;
    }
    .pt-add-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    .pt-size-search .row {
        flex-wrap: wrap;
        gap: 5px;
    }
    .pt-size-search .form-control {
        width: 70px;
    }
    .pt-table-footer {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   Price Manager Page (Admin Only)
   ========================================================================== */

.pm-main {
    padding: 25px 0 40px;
}

.pm-filters {
    padding: 15px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e4e4e4;
}

.pm-label {
    font-weight: 600;
    font-size: 13px;
    margin-right: 5px;
    color: #333;
}

.pm-filters .form-control {
    display: inline-block;
    width: auto;
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pm-filters .form-control:focus {
    border-color: #FE445C;
    outline: 0;
    box-shadow: none;
}

.pm-status-msg {
    margin-bottom: 10px;
}

.pm-success {
    background: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.pm-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.pm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    border: 1px solid #e4e4e4;
}

.pm-table thead th {
    background: #333;
    color: #fff;
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}

.pm-table thead th.pm-th-product,
.pm-table thead th.pm-th-size {
    text-align: left;
}

.pm-table tbody tr {
    border-bottom: 1px solid #eee;
}

.pm-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.pm-table tbody tr:hover {
    background: #fff5f6;
}

.pm-table tbody td {
    padding: 6px 6px;
    vertical-align: middle;
}

.pm-col-id {
    font-size: 11px;
    color: #999;
    text-align: center;
    width: 60px;
}

.pm-col-product {
    font-weight: 600;
    color: #333;
    font-size: 12px;
    max-width: 200px;
}

.pm-col-size {
    white-space: nowrap;
    font-weight: 500;
    color: #555;
}

.pm-col-color {
    text-align: center;
    font-size: 12px;
    text-transform: capitalize;
}

.pm-col-base input,
.pm-col-tier input {
    width: 85px;
    text-align: center;
    padding: 4px 5px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pm-col-base input:focus,
.pm-col-tier input:focus {
    border-color: #FE445C;
    outline: 0;
    box-shadow: none;
}

.pm-save-area {
    padding: 20px 0;
    text-align: right;
}

.pm-save-btn {
    padding: 10px 40px;
    font-size: 15px;
    font-weight: 600;
}

/* ==========================================================================
   Single Product Page
   ========================================================================== */

/* --- Global: force theme font on ALL single product elements --- */
.single-product,
.single-product .product,
.single-product .summary,
.single-product .woocommerce-tabs,
.single-product .tiered-pricing-wrapper,
.single-product .tpt__tiered-pricing,
.single-product .tier-pricing-summary-table,
.single-product table,
.single-product select,
.single-product input,
.single-product button {
    font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif) !important;
}

/* --- Hide ALL notices, admin messages, plugin warnings --- */
.single-product .woocommerce-info,
.single-product .woocommerce-message,
.single-product .woocommerce-error,
.single-product .wc-block-components-notice-banner,
.single-product .tpt-admin-notice,
.single-product .tiered-pricing-wrapper .woocommerce-info,
.single-product .tpt__tiered-pricing .woocommerce-info,
.single-product div[style*="border: 1px dashed"] {
    display: none !important;
}

/* --- Page spacing --- */
.single-product .body_area {
    padding: 20px 0 40px;
    background-color: #f9f9fb;
}

.single-product .wc-content-area {
    display: contents;
}

/* --- Breadcrumbs --- */
.single-product .woocommerce-breadcrumb {
    font-size: 13px;
    color: #888;
    padding: 12px 0 20px;
    margin: 0;
    border-bottom: none;
}

.single-product .woocommerce-breadcrumb a {
    color: #888;
    text-decoration: none;
}

.single-product .woocommerce-breadcrumb a:hover {
    color: var(--color-primary);
}

/* --- Two-column layout --- */
.single-product .sp-top-row {
    margin-bottom: 40px;
}

.single-product .sp-gallery-col {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

/* --- Override WooCommerce 48% widths and floats --- */
.single-product .woocommerce div.product div.images,
.single-product .woocommerce-product-gallery,
.single-product div.product div.images {
    float: none !important;
    width: 100% !important;
}

.single-product .woocommerce div.product div.summary,
.single-product div.product div.summary {
    float: none !important;
    width: 100% !important;
}

/* --- Product Gallery --- */
.single-product .woocommerce-product-gallery {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 20px;
    overflow: hidden;
    max-width: 100%;
    opacity: 1 !important;
}

.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    display: block;
}

.single-product .body_area .product .images .woocommerce-product-gallery__image {
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
}

.single-product .woocommerce-product-gallery__image img,
.single-product .woocommerce-product-gallery .wp-post-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    max-height: 500px;
    border-radius: 8px;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding: 0;
    list-style: none;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    cursor: pointer;
    padding: 4px;
    background: #fff;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img:hover,
.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    border-color: var(--color-primary);
}

.single-product .onsale {
    background: var(--color-primary) !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    min-width: auto;
    min-height: auto;
    line-height: 1.5;
}

/* --- Summary column --- */
.single-product .sp-summary-col .summary.entry-summary {
	padding: 15px;
	background-color: #fff;
}

/* Product title */
.single-product .product_title.entry-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Rating */
.single-product .woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.single-product .woocommerce-product-rating .star-rating,
.single-product .woocommerce-product-rating .star-rating::before,
.single-product .woocommerce-product-rating .star-rating span,
.single-product .woocommerce-product-rating .star-rating span::before {
    color: var(--color-primary) !important;
    font-size: 14px;
}

.single-product .woocommerce-review-link {
    font-size: 13px;
    color: #888;
}

.single-product .woocommerce-review-link:hover {
    color: var(--color-primary);
}

/* Price */
.single-product p.price,
.single-product span.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.single-product p.price del,
.single-product span.price del {
    color: #aaa;
    font-size: 1rem;
    font-weight: 400;
}

.single-product p.price ins,
.single-product span.price ins {
    text-decoration: none;
    color: var(--color-primary);
}

.single-product p.price .amount,
.single-product span.price .amount {
    color: var(--color-primary);
}

/* Short description */
.single-product .woocommerce-product-details__short-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

/* --- Variation dropdowns --- */
.single-product .variations_form.cart {
    margin-bottom: 0;
}

.single-product table.variations {
    width: 100%;
    border: none !important;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin-bottom: 12px;
}

.single-product table.variations tr {
    background: none !important;
}

.single-product table.variations th.label {
    padding: 0 12px 0 0;
    vertical-align: middle;
    white-space: nowrap;
    border: none !important;
    width: auto;
}

.single-product table.variations th.label label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.single-product table.variations td.value {
    padding: 0;
    border: none !important;
    vertical-align: middle;
}

.single-product table.variations td.value select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.single-product table.variations td.value select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(254, 68, 92, 0.1);
}

.single-product .reset_variations {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    color: #999;
}

.single-product .reset_variations:hover {
    color: var(--color-primary);
}

/* --- Variation price display --- */
.single-product .woocommerce-variation-price .price,
.single-product .woocommerce-variation-price .price .amount {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    margin-bottom: 5px;
}

.single-product .woocommerce-variation-price .price del,
.single-product .woocommerce-variation-price .price del .amount {
    color: #aaa !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.single-product .woocommerce-variation-description {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.single-product .woocommerce-variation-availability {
    font-size: 13px;
    margin-bottom: 5px;
}

.single-product .stock.in-stock {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
}

.single-product .stock.out-of-stock {
    color: #999;
    font-weight: 600;
    font-size: 13px;
}

/* =================================================================
   TIER PRICING - Complete Override (Table + Blocks + Options)
   ALL colors forced to primary (#FE445C) only
   ================================================================= */

.single-product .tpt__tiered-pricing,
.single-product .tiered-pricing-wrapper {
    margin: 15px 0;
}

/* Hide plugin headings — optional, uncomment if cluttered */
/* .single-product .tiered-pricing-wrapper h3 { display: none; } */

.single-product .tiered-pricing-wrapper h3,
.single-product .tpt__tiered-pricing h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* --- Tier Pricing TABLE layout --- */
.single-product table.tiered-pricing-table,
.single-product .tiered-pricing-table {
    width: 100% !important;
    border-collapse: collapse !important;
    border: 1px solid #eee !important;
    border-radius: 8px;
    overflow: hidden;
    margin: 12px 0 !important;
}

.single-product .tiered-pricing-table thead tr th {
    background: #f7f7f7 !important;
    color: #333 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 10px 14px !important;
    border: none !important;
    border-bottom: 2px solid #eee !important;
    text-align: left !important;
}

.single-product .tiered-pricing-table tbody tr {
    background: #fff !important;
    transition: background 0.15s;
}

.single-product .tiered-pricing-table tbody tr:hover {
    background: #fef5f6 !important;
}

.single-product .tiered-pricing-table tbody tr td {
    padding: 10px 14px !important;
    font-size: 14px !important;
    color: #444 !important;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    background: transparent !important;
}

.single-product .tiered-pricing-table tbody tr td .amount {
    color: #444 !important;
    font-weight: 500;
}

/* Active tier row — PRIMARY COLOR ONLY */
.single-product .tiered-pricing-table tbody tr.tiered-pricing--active,
.single-product .tiered-pricing--active {
    background: var(--color-primary) !important;
}

.single-product .tiered-pricing-table tbody tr.tiered-pricing--active td,
.single-product .tiered-pricing--active td {
    background: var(--color-primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.single-product .tiered-pricing-table tbody tr.tiered-pricing--active td .amount,
.single-product .tiered-pricing--active td .amount {
    color: #fff !important;
}

/* --- Tier Pricing BLOCKS layout --- */
.single-product .tiered-pricing-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.single-product .tiered-pricing-block,
.single-product .tiered-pricing-block[style] {
    border: 2px solid #e5e5e5 !important;
    border-radius: 8px !important;
    background: #fff !important;
    padding: 8px 14px !important;
    cursor: pointer;
    text-align: center;
    min-width: 80px;
    flex: 1;
    transition: all 0.2s;
}

.single-product .tiered-pricing-block:hover {
    border-color: var(--color-primary) !important;
}

.single-product .tiered-pricing-blocks .tiered-pricing--active,
.single-product .tiered-pricing-block.tiered-pricing--active,
.single-product .tiered-pricing-block.tiered-pricing--active[style] {
    border-color: var(--color-primary) !important;
    background: rgba(254, 68, 92, 0.06) !important;
    box-shadow: 0 0 0 2px rgba(254, 68, 92, 0.15);
}

.single-product .tiered-pricing-block__quantity,
.single-product .tiered-pricing-block__quantity[style] {
    font-size: 11px !important;
    color: #666 !important;
    font-weight: 500 !important;
    background: transparent !important;
}

.single-product .tiered-pricing-block__price {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 0 !important;
}

.single-product .tiered-pricing--active .tiered-pricing-block__price {
    color: var(--color-primary) !important;
}

.single-product .tiered-pricing--active .tiered-pricing-block__quantity,
.single-product .tiered-pricing--active .tiered-pricing-block__quantity[style] {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
}

.single-product .tiered-pricing-block__price-discount {
    font-size: 11px !important;
    color: var(--color-primary) !important;
    font-weight: 600 !important;
}

/* Style-1 blocks (colored quantity headers) */
.single-product .tiered-pricing-blocks--style-1 .tiered-pricing-block {
    overflow: hidden;
    padding: 0 !important;
}

.single-product .tiered-pricing-blocks--style-1 .tiered-pricing-block .tiered-pricing-block__quantity,
.single-product .tiered-pricing-blocks--style-1 .tiered-pricing-block .tiered-pricing-block__quantity[style] {
    background: #f5f5f5 !important;
    color: #555 !important;
    padding: 6px 10px !important;
    display: block;
}

.single-product .tiered-pricing-blocks--style-1 .tiered-pricing-block .tiered-pricing-block__price {
    padding: 8px 10px;
}

.single-product .tiered-pricing-blocks--style-1 .tiered-pricing--active .tiered-pricing-block__quantity,
.single-product .tiered-pricing-blocks--style-1 .tiered-pricing--active .tiered-pricing-block__quantity[style] {
    background: var(--color-primary) !important;
    color: #fff !important;
}

/* --- Tier Pricing OPTIONS layout --- */
.single-product .tiered-pricing-option,
.single-product .tiered-pricing-option[style] {
    border: 2px solid #e5e5e5 !important;
    border-radius: 8px !important;
    background: #fff !important;
}

.single-product .tiered-pricing--active.tiered-pricing-option,
.single-product .tiered-pricing-option.tiered-pricing--active {
    border-color: var(--color-primary) !important;
    background: rgba(254, 68, 92, 0.04) !important;
}

.single-product .tiered-pricing--active .tiered-pricing-option-checkbox::after {
    background: var(--color-primary) !important;
}

/* --- Tier Pricing Horizontal Table --- */
.single-product .tiered-pricing-horizontal-table {
    border-color: #e5e5e5 !important;
    border-radius: 8px;
}

.single-product .tiered-pricing-horizontal-table-cell {
    border-color: #e5e5e5 !important;
}

/* --- Summary / Total table (below add-to-cart) --- */
.single-product .tier-pricing-summary-table {
    margin: 10px 0;
    font-size: 14px;
    color: #444;
}

.single-product .tier-pricing-summary-table__total,
.single-product .tier-pricing-summary-table__total .amount {
    font-size: 1.3em !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
}

.single-product .tier-pricing-summary-table .amount {
    color: var(--color-primary) !important;
}

/* "You save" text — use primary color not green */
.single-product .tiered-pricing-you-save {
    color: var(--color-primary) !important;
    font-size: 13px;
    font-weight: 600;
}

/* --- Quantity input --- */
.single-product .quantity {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.single-product .quantity .qty,
.single-product .quantity input[type="number"] {
    width: 70px;
    height: 48px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    -moz-appearance: textfield;
}

.single-product .quantity .qty:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(254, 68, 92, 0.1);
}

.single-product .quantity input[type="number"]::-webkit-inner-spin-button,
.single-product .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* --- Add to Cart button --- */
.single-product .single_variation_wrap {
    margin-top: 10px;
}

.single-product .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.single-product .single_add_to_cart_button,
.single-product button.single_add_to_cart_button {
    background: var(--color-primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 40px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(254, 68, 92, 0.25) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.4 !important;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease !important;
}

.single-product .single_add_to_cart_button:hover {
    background: #e63350 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(254, 68, 92, 0.35) !important;
}

.single-product .single_add_to_cart_button:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    transform: none !important;
}

/* --- Product meta --- */
.single-product .product_meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999;
    line-height: 2;
}

.single-product .product_meta > span {
    display: block;
}

.single-product .product_meta a {
    color: #555;
    font-weight: 500;
}

.single-product .product_meta a:hover {
    color: var(--color-primary);
}

/* =================================================================
   TABS — Flat, modern, primary-colored, matching theme
   ================================================================= */

.single-product .woocommerce-tabs {
    margin-top: 40px;
    clear: both;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Tab navigation — flat style */
.single-product .woocommerce-tabs ul.wc-tabs {
    list-style: none !important;
    display: flex !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: none !important;
    background: #f7f7f7;
    overflow: visible;
}

.single-product .woocommerce-tabs ul.wc-tabs::before,
.single-product .woocommerce-tabs ul.wc-tabs::after {
    display: none !important;
}

.single-product .woocommerce-tabs ul.wc-tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    border-radius: 0 !important;
    position: relative;
    flex: 1;
}

.single-product .woocommerce-tabs ul.wc-tabs li a {
    display: block !important;
    padding: 15px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #888 !important;
    text-decoration: none !important;
    text-align: center;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    margin: 0 !important;
    background: transparent !important;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.single-product .woocommerce-tabs ul.wc-tabs li a:hover {
    color: #555 !important;
    background: rgba(254, 68, 92, 0.03) !important;
}

.single-product .woocommerce-tabs ul.wc-tabs li.active {
    background: #fff !important;
}

.single-product .woocommerce-tabs ul.wc-tabs li.active a {
    color: var(--color-primary) !important;
    border-bottom-color: var(--color-primary) !important;
    background: #fff !important;
}

/* Tab content panels */
.single-product .woocommerce-tabs .wc-tab,
.single-product .woocommerce-tabs .panel {
    padding: 25px 25px !important;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.single-product .woocommerce-tabs .wc-tab h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.single-product .woocommerce-tabs .wc-tab p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* Additional info tab table */
.single-product .woocommerce-tabs .shop_attributes {
    width: 100%;
    border-collapse: collapse;
}

.single-product .woocommerce-tabs .shop_attributes th {
    font-weight: 600;
    padding: 10px 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-size: 13px;
    width: 35%;
    color: #444;
}

.single-product .woocommerce-tabs .shop_attributes td {
    padding: 10px 15px;
    border: 1px solid #eee;
    font-size: 13px;
    color: #555;
}

.single-product .woocommerce-tabs .shop_attributes td p {
    margin: 0;
}

/* =================================================================
   REVIEWS — Matching theme
   ================================================================= */

.single-product #reviews {
    padding-top: 0;
}

.single-product #reviews h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.single-product #reviews #comments ol.commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-product #reviews #comments ol.commentlist li {
    margin-bottom: 15px;
}

.single-product #reviews .comment-text {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
}

.single-product #reviews .comment-text .meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.single-product #reviews .comment-text .meta strong {
    color: #333;
}

.single-product #reviews .comment-text .description p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.single-product #reviews .star-rating,
.single-product #reviews .star-rating::before,
.single-product #reviews .star-rating span,
.single-product #reviews .star-rating span::before,
.single-product #reviews p.stars a,
.single-product #reviews p.stars a::before,
.single-product #reviews p.stars a:hover ~ a::before,
.single-product #reviews p.stars.selected a.active ~ a::before {
    color: var(--color-primary) !important;
}

.single-product #reviews .woocommerce-noreviews {
    display: block !important;
    font-size: 14px;
    color: #888;
    padding: 10px 0;
}

/* Review form */
.single-product #review_form #respond {
    padding: 0;
    margin: 0;
}

.single-product #review_form .comment-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.single-product #review_form .comment-form input[type="text"],
.single-product #review_form .comment-form input[type="email"],
.single-product #review_form .comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.single-product #review_form .comment-form input:focus,
.single-product #review_form .comment-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(254, 68, 92, 0.1);
}

.single-product #review_form .comment-form .form-submit input[type="submit"] {
    background: var(--color-primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
}

.single-product #review_form .comment-form .form-submit input[type="submit"]:hover {
    background: #e63350 !important;
}

.single-product #reviews p.stars a {
    color: var(--color-primary);
}

/* --- Related products --- */
.single-product section.related.products {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.single-product section.related.products > h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
}

.single-product section.related .productswrapper,
.single-product section.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.single-product section.related .productswrapper li.product,
.single-product section.related.products ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    list-style: none !important;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    padding: 0 !important;
}

.single-product section.related .productswrapper li.product:hover,
.single-product section.related.products ul.products li.product:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(254, 68, 92, 0.1);
    transform: translateY(-3px);
}

.single-product section.related li.product a.woocommerce-LoopProduct-link {
    display: block;
    text-decoration: none;
}

.single-product section.related li.product img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 16px;
    background: #fafafa;
    display: block;
}

.single-product section.related li.product .woocommerce-loop-product__title,
.single-product section.related li.product h2 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #333 !important;
    padding: 12px 16px 0 !important;
    margin: 0 !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-product section.related li.product .price {
    padding: 6px 16px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.single-product section.related li.product .price del {
    color: #999;
    font-weight: 400;
    font-size: 13px;
}

.single-product section.related li.product .price ins {
    text-decoration: none;
}

.single-product section.related li.product .button,
.single-product section.related li.product a.add_to_cart_button,
.single-product section.related li.product a.product_type_variable {
    display: block;
    text-align: center;
    margin: 12px 16px 16px;
    padding: 10px 16px;
    background: var(--color-primary);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.single-product section.related li.product .button:hover,
.single-product section.related li.product a.add_to_cart_button:hover,
.single-product section.related li.product a.product_type_variable:hover {
    background: #e63350;
}

/* Hide qty input in related products */
.single-product section.related li.product .quantity {
    display: none;
}

/* Remove bullet marker */
.single-product section.related li.product::marker,
.single-product section.related li.product::before {
    content: none !important;
    display: none !important;
}

/* View cart link after add to cart */
.single-product section.related li.product a.added_to_cart {
    display: block;
    text-align: center;
    margin: 0 16px 16px;
    padding: 10px 16px;
    background: #333;
    color: #fff !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.single-product section.related li.product a.added_to_cart:hover {
    background: #222;
}

/* Star rating in related */
.single-product section.related li.product .star-rating {
    margin: 6px 16px 0;
    font-size: 12px;
}

/* Black color swatch for product table */
.pt-color-swatch[data-colorslug="black"] {
    background-color: #222222;
}

.woocommerce .body_area div.product form.cart .variations th {
	vertical-align: middle;
}

.woocommerce .shop_table a.remove {
	font-size: 20px;
	height: 24px;
	width: 24px;
	line-height: 20px;
	color: #FE445c !important;
}

.woocommerce-cart-form {
	background-color: #ffffff;
}

.woocommerce .shop_table a.remove:hover {
	background: #fe445c;
	color: #ffffff !important;
}

.woocommerce table.shop_table tr th {
	font-weight: 600;
	font-size: 14px;
}

#coupon_code {
	min-width: 120px;
}

.elementor .shop_table .product-name a {
	color: #fe445c;
	font-size: 14px;
	font-weight: 600;
}

.cart_totals .checkout-button.button.alt.wc-forward {
	font-size: 14px;
	border-radius: 8px 8px 8px 8px;
}

.shop_table {
	background-color: #fff;
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */

/* Main form layout */
.woocommerce-checkout .col2-set,
.woocommerce .col2-set {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    float: none !important;
}

/* Kill WooCommerce clearfix pseudo-elements that break grid */
.woocommerce .col2-set::before,
.woocommerce .col2-set::after,
.woocommerce-checkout .col2-set::before,
.woocommerce-checkout .col2-set::after,
.woocommerce-page .col2-set::before,
.woocommerce-page .col2-set::after {
    content: none !important;
    display: none !important;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2,
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: none !important;
}

/* Section cards */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
}

.woocommerce-checkout #order_review {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
}

/* Merge payment into order review — remove separate card */
.woocommerce-checkout #order_review .woocommerce-checkout-payment {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-top: 20px !important;
    box-shadow: none !important;
}

/* Section headings */
.woocommerce-checkout h3,
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid #f5f5f5;
}

.woocommerce-checkout h3#order_review_heading {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px 0;
    padding: 0;
    border: none;
}

/* Form fields */
.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

.woocommerce-checkout .form-row label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

.woocommerce-checkout .form-row label .required {
    color: var(--color-primary);
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
    height: auto;
    line-height: 1.5;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(254, 68, 92, 0.08);
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
    height: 44px;
    display: flex;
    align-items: center;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
}

.woocommerce-checkout .form-row textarea,
.woocommerce-checkout #order_comments {
    min-height: 100px;
    resize: vertical;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    outline: none !important;
}

/* 2-column field grid */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row {
    margin-bottom: 0;
    width: 100% !important;
    float: none !important;
}

/* All fields default to single column cell */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row {
    grid-column: auto;
}

/* Only these fields span full width */
.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #shipping_address_1_field,
.woocommerce-checkout #shipping_address_2_field {
    grid-column: 1 / -1;
}

/* Kill old float layout */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-checkout .form-row-wide {
    width: 100% !important;
    float: none !important;
    clear: none !important;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    border: none !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-checkout-review-order-table thead th {
    font-weight: 700;
    color: #333;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eee;
}

.woocommerce-checkout-review-order-table .product-name {
    color: #444;
}

.woocommerce-checkout-review-order-table .product-total {
    text-align: right;
    font-weight: 600;
    color: #333;
}

.woocommerce-checkout-review-order-table .product-quantity {
    color: #888;
    font-weight: 500;
}

.woocommerce-checkout-review-order-table tfoot th {
    font-weight: 600;
    color: #555;
}

.woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
    font-weight: 600;
}

.woocommerce-checkout-review-order-table tfoot .order-total th {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    border-bottom: none;
    padding-top: 16px;
}

.woocommerce-checkout-review-order-table tfoot .order-total td {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: none;
    padding-top: 16px;
}

/* Payment section */
.woocommerce-checkout-payment {
    background: #fff !important;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: none !important;
}

/* Clean single borders on review table */
.woocommerce-checkout-review-order-table {
    border-collapse: collapse !important;
    border: none !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.woocommerce-checkout-payment .wc_payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 16px 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce-checkout-payment .wc_payment_methods li {
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: border-color 0.2s;
    background: #fff !important;
}

.woocommerce-checkout-payment .wc_payment_methods li:hover,
.woocommerce-checkout-payment .wc_payment_methods li.active {
    border-color: var(--color-primary);
}

.woocommerce-checkout-payment .wc_payment_methods li label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: inline;
    margin-left: 6px;
}

.woocommerce-checkout-payment .wc_payment_methods li .payment_box {
    margin-top: 10px;
    padding: 12px 14px;
    background: #f5f5f5 !important;
    border-radius: 6px;
    font-size: 13px;
    color: #555 !important;
    line-height: 1.5;
}

.woocommerce-checkout-payment .wc_payment_methods li .payment_box p {
    color: #555 !important;
}

.woocommerce-checkout-payment .wc_payment_methods li .payment_box::before {
    display: none !important;
}

.woocommerce-checkout-payment .place-order {
    background: transparent !important;
    padding: 16px 0 0 !important;
    text-align: left;
}

/* Place order button */
.woocommerce-checkout #place_order {
    background: var(--color-primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 16px 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    width: auto !important;
    float: none !important;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(254, 68, 92, 0.25);
    text-transform: none;
    letter-spacing: 0.5px;
    display: inline-block !important;
}

.woocommerce-checkout #place_order:hover {
    background: #e63350 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 68, 92, 0.35);
}

/* Privacy text */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: var(--color-primary);
}

/* Hide coupon & login form on checkout */
.woocommerce-form-coupon-toggle,
.woocommerce-form-coupon.checkout_coupon,
.woocommerce-form-login.login {
    display: none !important;
}

/* Coupon notice at top */
.woocommerce-form-coupon-toggle .woocommerce-info {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 14px 20px;
    color: #555;
    font-size: 14px;
    margin-bottom: 24px;
    border-left: 3px solid var(--color-primary);
}

.woocommerce-form-coupon-toggle .woocommerce-info a {
    color: var(--color-primary);
    font-weight: 600;
}

.woocommerce-form-coupon-toggle .woocommerce-info::before {
    color: var(--color-primary);
}

/* Coupon form */
.checkout_coupon.woocommerce-form-coupon {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.checkout_coupon .form-row-first input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}

.checkout_coupon .form-row-last button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
}

.woocommerce .cart .coupon button.button {
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    background-color: #FE445C;
    color: #fff;
    border-radius: 8px 8px 8px 8px;
}


td.woocommerce-product-attributes-item__value p a {
    color: #fe445c;
}
/* Ship to different address toggle */
.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address label {
    cursor: pointer;
    font-size: 16px;
}

/* ==========================================================================
   THANK YOU / ORDER RECEIVED PAGE
   ========================================================================== */

.ty-success-banner {
    text-align: center;
    padding: 32px 20px;
    margin-bottom: 24px;
}

.ty-check-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.ty-check-icon i {
    color: #fff;
    font-size: 28px;
}

.ty-success-banner h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px;
}

.ty-success-banner p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Summary grid */
.ty-summary-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.ty-summary-item {
    flex: 1 1 150px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 18px;
}

.ty-summary-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ty-summary-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    word-break: break-all;
}

.ty-summary-value.ty-total {
    color: var(--color-primary);
    font-size: 16px;
}

.ty-payment-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
}

.ty-payment-note i {
    color: var(--color-primary);
}

/* Cards */
.ty-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.ty-card.ty-error {
    text-align: center;
    border-color: #f5c6cb;
    background: #fff5f5;
}

.ty-card.ty-error i {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.ty-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

/* Order table */
.ty-order-table {
    width: 100%;
    border-collapse: collapse;
}

.ty-order-table th,
.ty-order-table td {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.ty-order-table thead th {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eee;
}

.ty-order-table tbody td {
    color: #444;
}

.ty-order-table tfoot th {
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.ty-order-table tfoot td {
    font-weight: 600;
    color: #333;
}

.ty-order-table .ty-total-row th,
.ty-order-table .ty-total-row td {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    border-bottom: none;
    padding-top: 14px;
}

.ty-order-table .ty-total-row td {
    color: var(--color-primary);
}

.ty-qty {
    color: #888;
    font-weight: 500;
}

/* Addresses grid */
.ty-addresses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ty-address {
    font-style: normal;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.ty-address-meta {
    font-size: 13px;
    color: #666;
    margin: 6px 0 0;
}

.ty-address-meta i {
    color: var(--color-primary);
    font-size: 12px;
}

/* Hide default WC order details that fire via hooks */
.woocommerce-order section.woocommerce-order-details,
.woocommerce-order section.woocommerce-customer-details {
    display: none !important;
}

.mobilefilter {
	position: fixed;
	left: -100%;
	width: 80%;
	top: 0;
	z-index: 101;
	transition: all 0.3s linear;
	background-color: #fff;
	height: 100vh;
    overflow-y: auto;
}

.mobilefilter.in {
	left: 0;
}

.mobile_close_icon {
	position: absolute;
	right: 15px;
	top: 12px;
	color: #fff;
	cursor: pointer;
}

.mobile_filter_icon {
	display: none;
	cursor: pointer;
	font-size: 17px;
	color: #fe445c;
}

@media (max-width: 768px) {
    .ty-addresses-grid {
        grid-template-columns: 1fr;
    }

    .ty-summary-grid {
        flex-direction: column;
    }

    .mobile_filter_icon {
        display: inline-block;
    }

}

/* Checkout responsive */
@media (max-width: 768px) {
    .woocommerce-checkout .col2-set,
    .woocommerce .col2-set {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-checkout .woocommerce-billing-fields,
    .woocommerce-checkout .woocommerce-shipping-fields,
    .woocommerce-checkout .woocommerce-additional-fields,
    .woocommerce-checkout #order_review,
    .woocommerce-checkout-payment {
        padding: 20px;
    }
}


/* Responsive - Single Product */
@media (max-width: 991px) {
    .single-product .sp-gallery-col {
        position: static;
        margin-bottom: 25px;
    }

    .single-product .sp-summary-col .summary.entry-summary {
        padding: 0;
    }

    .single-product section.related .productswrapper,
    .single-product section.related.products ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .single-product .body_area {
        padding: 10px 0 30px;
    }

    .single-product .product_title.entry-title {
        font-size: 1.4rem;
    }

    .single-product p.price,
    .single-product span.price {
        font-size: 1.25rem;
    }

    .single-product .woocommerce-product-gallery {
        padding: 15px;
    }

    .single-product .woocommerce-product-gallery__image img {
        max-height: 350px;
    }

    .single-product .woocommerce-tabs ul.wc-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .single-product .woocommerce-tabs ul.wc-tabs li a {
        padding: 10px 16px;
        font-size: 13px;
    }

    .single-product .woocommerce-variation-add-to-cart {
        flex-direction: row;
    }

    .single-product .single_add_to_cart_button {
        padding: 12px 25px !important;
        flex: 1;
    }

    .single-product section.related .productswrapper,
    .single-product section.related.products ul.products {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .single-product .tiered-pricing-blocks {
        gap: 6px;
    }

    .single-product .tiered-pricing-block {
        min-width: 65px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .single-product section.related .productswrapper,
    .single-product section.related.products ul.products {
        grid-template-columns: 1fr;
    }

    .single-product .woocommerce-tabs ul.wc-tabs li a {
        padding: 8px 12px;
        font-size: 12px;
    }
}


/* ==========================================================================
   Box Customizer – 3D Preview Modal
   ========================================================================== */

.btn-customize-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    color: #fff;
    background: var(--color-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    outline: none !important;
    box-shadow: 0 4px 14px rgba(254, 68, 92, 0.25);
    line-height: 1.4;
    margin-left: 10px;
}

.btn-customize-box:hover {
    background: #e63350;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 68, 92, 0.35);
}

.btn-customize-box:focus,
.btn-customize-box:focus-visible,
.btn-customize-box:active {
    outline: none !important;
    box-shadow: 0 4px 14px rgba(254, 68, 92, 0.25) !important;
    background: var(--color-primary);
    color: #fff;
}



/* Modal */
#boxCustomizerModal .modal-content {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.bc-modal-header {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 0;
}

.bc-modal-header .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.bc-modal-header .btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.bc-modal-header .btn-close-white:hover {
    opacity: 1;
}

.bc-modal-body {
    height: 75vh;
    max-height: 700px;
    overflow: hidden;
    padding: 0;
}

.bc-modal-body > .row {
    height: 100%;
}

.bc-preview-col {
    height: 100%;
    background: #f5f5f5;
    position: relative;
}

#bc-threejs-container {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

#bc-threejs-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.bc-controls-col {
    height: 100%;
    overflow-y: auto;
    border-left: 1px solid #eee;
    background: #fff;
}

.bc-controls-panel {
    padding: 24px;
}

.bc-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Upload dropzone */
.bc-logo-upload {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
}

.bc-logo-upload:hover,
.bc-logo-upload.bc-dragover {
    border-color: var(--color-primary);
    background: rgba(254, 68, 92, 0.04);
}

.bc-logo-upload i {
    font-size: 36px;
    color: #bbb;
    display: inline-block;
    margin-bottom: 10px;
    text-align: center;
}

.bc-logo-upload:hover i,
.bc-logo-upload.bc-dragover i {
    color: var(--color-primary);
}

.bc-logo-upload p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.bc-upload-hint {
    font-size: 12px;
    color: #aaa;
    display: block;
    margin-top: 4px;
}

/* Logo preview */
.bc-logo-preview {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.bc-logo-preview img {
    max-width: 100%;
    max-height: 80px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Side selector */
.bc-side-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.bc-side-thumb {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
}

.bc-side-thumb:hover {
    border-color: var(--color-primary);
}

.bc-side-thumb.active {
    border-color: var(--color-primary);
    background: rgba(254, 68, 92, 0.06);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.bc-side-thumb img {
    width: 100%;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 4px;
}

.bc-side-placeholder {
    width: 100%;
    height: 50px;
    background: #e8e8e8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.bc-side-placeholder i {
    font-size: 18px;
    color: #999;
}

.bc-side-thumb span {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.bc-side-thumb.active span {
    color: var(--color-primary);
}

/* 2D Canvas */
.bc-2d-canvas-wrapper {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

#bc2dCanvas {
    width: 100%;
    height: auto;
    display: block;
    cursor: crosshair;
}

.bc-size-control label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 4px;
}

.bc-size-control .form-range::-webkit-slider-thumb {
    background: var(--color-primary);
}

.bc-size-control .form-range::-moz-range-thumb {
    background: var(--color-primary);
}

/* Actions */
.bc-save-customization {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
}

img.bc-cart-preview {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 991px) {
    .bc-modal-body {
        height: auto;
        max-height: 85vh;
        overflow-y: auto;
    }

    .bc-modal-body > .row {
        flex-direction: column;
        height: auto;
    }

    .bc-preview-col {
        height: 45vh;
    }

    .bc-controls-col {
        height: auto;
        border-left: none;
        border-top: 1px solid #eee;
    }
}

button#btn-razorpay {
    background-color: #FE445C;
    color: #fff;
    padding: 9px 25px;
    border-radius: 8px 8px 8px 8px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    border: navajowhite;
}

button#btn-razorpay-cancel {
    background-color: #FE445C;
    color: #fff;
    padding: 9px 35px;
    border-radius: 8px 8px 8px 8px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    border: none;
}

a.woocommerce-button.button.pay.order-actions-button {
    background-color: #FE445C;
    color: #fff;
    padding: 9px 30px;
    border-radius: 8px 8px 8px 8px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    border: none;
}

a.woocommerce-button.button.cancel.order-actions-button {
    background-color: #FE445C;
    color: #fff;
    padding: 9px 30px;
    border-radius: 8px 8px 8px 8px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    border: none;
}

.elementor-10 .elementor-element.elementor-element-7856f53 .elementor-form-fields-wrapper {
	margin-left: calc( -10px/2 );
	margin-right: calc( -10px/2 );
	margin-bottom: -10px;
	background-color: #fff;
	padding: 30px 30px 70px 30px;
}

ul.wc-item-meta {
    margin: 0;
    padding: 0;
}

ul.wc-item-meta li strong.wc-item-meta-label {
    font-size: 13px;
}

@media (max-width: 575px) {
    .bc-controls-panel {
        padding: 16px;
    }

    .bc-side-selector {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .bc-preview-col {
        height: 35vh;
    }
}

@media (max-width:480px){

.container{
padding-left:10px;
padding-right:10px;
}

.pt-product-table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

.pt-product-table th,
.pt-product-table td{
font-size:12px;
padding:8px;
}

}
