:root { --wpo-primary: #10b981;
--wpo-primary-dark: #059669;
--wpo-primary-light: #d1fae5; --wpo-surface: #ffffff;
--wpo-background: #f8fafc;
--wpo-foreground: #1e293b;
--wpo-muted: #64748b;
--wpo-border: #e2e8f0; --wpo-success: #10b981;
--wpo-warning: #f59e0b;
--wpo-danger: #ef4444; --wpo-gradient-primary: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #0ea5e9 100%); --wpo-container: 1280px;
--wpo-container-wide: 1440px; --wpo-radius: 0.5rem;
--wpo-radius-lg: 1rem;
--wpo-radius-xl: 1.5rem; --wpo-transition: 150ms ease;
} .dark {
--wpo-surface: #1e293b;
--wpo-background: #0f172a;
--wpo-foreground: #f1f5f9;
--wpo-muted: #94a3b8;
--wpo-border: #334155;
} html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
-webkit-font-smoothing: antialiased;
} .text-gradient {
background: var(--wpo-gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} .container {
width: 100%;
max-width: var(--wpo-container);
margin: 0 auto;
padding: 0 1.5rem;
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
height: 2.5rem;
padding: 0 1.25rem;
font-size: 0.875rem;
font-weight: 600;
border-radius: var(--wpo-radius);
cursor: pointer;
transition: all var(--wpo-transition);
text-decoration: none;
border: none;
}
.btn--primary {
background: var(--wpo-gradient-primary);
color: #fff !important;
}
.btn--primary:hover {
opacity: 0.9;
transform: translateY(-1px);
}
.btn--outline {
background: transparent;
color: var(--wpo-foreground);
border: 1px solid var(--wpo-border);
}
.btn--outline:hover {
border-color: var(--wpo-primary);
color: var(--wpo-primary);
}
.btn--ghost {
background: transparent;
color: var(--wpo-foreground);
}
.btn--ghost:hover {
background: var(--wpo-border);
}
.btn--full {
width: 100%;
}
.btn--lg {
height: 3rem;
padding: 0 1.75rem;
font-size: 1rem;
} .section-title {
font-size: 2rem;
font-weight: 700;
text-align: center;
color: var(--wpo-foreground);
} .pricing-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.25rem;
max-width: 72rem;
margin: 0 auto;
align-items: start;
}
@media (max-width: 1023px) {
.pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
.pricing-grid { grid-template-columns: 1fr; max-width: 24rem; }
}
.pricing-card {
position: relative;
display: flex;
flex-direction: column;
padding: 2rem 1.75rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: 1rem;
transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pricing-card:hover {
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
} .pricing-card--featured {
border-color: var(--wpo-primary);
border-width: 2px;
padding: 2rem 1.75rem 2rem;
box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}
.pricing-card--featured:hover {
box-shadow: 0 12px 40px rgba(16, 185, 129, 0.18);
transform: translateY(-2px);
}
.pricing-card__badge {
display: inline-flex;
align-items: center;
justify-content: center;
align-self: center;
padding: 0.3125rem 1rem;
background: var(--wpo-gradient-primary);
color: white;
font-size: 0.6875rem;
font-weight: 700;
border-radius: 9999px;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 1.25rem;
} .pricing-card__name {
font-size: 1.125rem;
font-weight: 700;
color: var(--wpo-foreground);
margin-bottom: 0.25rem;
text-align: center;
}
.pricing-card__description {
font-size: 0.8125rem;
color: var(--wpo-muted);
margin-bottom: 1.5rem;
line-height: 1.5;
text-align: center;
} .pricing-card__price-block {
text-align: center;
margin-bottom: 1.5rem;
min-height: 4.75rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
}
.pricing-card__price {
display: flex;
align-items: baseline;
justify-content: center;
line-height: 1;
}
.pricing-card__currency {
font-size: 1.25rem;
font-weight: 600;
color: var(--wpo-foreground);
align-self: flex-start;
margin-top: 0.375rem;
margin-right: 0.125rem;
}
.pricing-card__amount {
font-size: 3rem;
font-weight: 800;
color: var(--wpo-foreground);
letter-spacing: -0.04em;
line-height: 1;
}
.pricing-card__cents {
font-size: 1rem;
font-weight: 700;
color: var(--wpo-foreground);
align-self: flex-start;
margin-top: 0.375rem;
}
.pricing-card__period {
font-size: 0.8125rem;
color: var(--wpo-muted);
margin-left: 0.25rem;
align-self: flex-end;
margin-bottom: 0.25rem;
} .pricing-card__discount {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-bottom: 0.375rem;
}
.pricing-card__original {
font-size: 0.9375rem;
color: var(--wpo-muted);
text-decoration: line-through;
font-weight: 500;
}
.pricing-card__save {
display: inline-flex;
align-items: center;
padding: 0.125rem 0.5rem;
font-size: 0.6875rem;
font-weight: 700;
color: #059669;
background: rgba(16, 185, 129, 0.1);
border-radius: 9999px;
letter-spacing: 0.02em;
} .pricing-card__divider {
height: 1px;
background: var(--wpo-border);
margin-bottom: 1.5rem;
} .pricing-card__features-label {
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--wpo-muted);
margin-bottom: 0.75rem;
} .pricing-card__features {
flex: 1;
list-style: none;
padding: 0;
margin: 0 0 1.5rem;
}
.pricing-card__features li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.5rem;
font-size: 0.8125rem;
color: var(--wpo-foreground);
line-height: 1.6;
}
.pricing-card__features li::before {
content: '';
position: absolute;
left: 0;
top: 0.35rem;
width: 14px;
height: 14px;
background: var(--wpo-success);
mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing-card__features li strong {
font-weight: 600;
color: var(--wpo-foreground);
} .pricing-card .btn {
font-weight: 600;
font-size: 0.875rem;
padding: 0.6875rem 1.5rem;
border-radius: 0.5rem;
text-align: center;
}
.pricing-card--featured .btn--primary {
box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}
.pricing-card--featured .btn--primary:hover {
box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
transform: translateY(-1px);
} .section-subtitle {
font-size: 1.125rem;
color: var(--wpo-muted);
max-width: 42rem;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
} .feature-card {
position: relative;
padding: 2rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-xl);
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
border-color: var(--wpo-primary);
}
.feature-card__icon {
display: flex;
align-items: center;
justify-content: center;
width: 3rem;
height: 3rem;
border-radius: 0.75rem;
background: var(--wpo-primary-light);
color: var(--wpo-primary-dark);
margin-bottom: 1.25rem;
}
.feature-card__title {
font-size: 1.125rem;
font-weight: 700;
color: var(--wpo-foreground);
margin-bottom: 0.5rem;
}
.feature-card__text {
font-size: 0.9375rem;
color: var(--wpo-muted);
line-height: 1.6;
} .testimonial-card {
padding: 2rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-xl);
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}
.testimonial-card__text {
font-size: 0.9375rem;
color: var(--wpo-foreground);
line-height: 1.7;
margin-bottom: 1.5rem;
font-style: italic;
}
.testimonial-card__author {
display: flex;
align-items: center;
gap: 0.75rem;
}
.testimonial-card__avatar {
display: flex;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
border-radius: 9999px;
background: var(--wpo-gradient-primary);
color: #fff;
font-size: 0.75rem;
font-weight: 700;
flex-shrink: 0;
}
.testimonial-card__info {
display: flex;
flex-direction: column;
}
.testimonial-card__info strong {
font-size: 0.875rem;
font-weight: 600;
color: var(--wpo-foreground);
}
.testimonial-card__info span {
font-size: 0.8125rem;
color: var(--wpo-muted);
} .pillar-card {
position: relative;
padding: 2.5rem 2rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-xl);
transition: all 0.3s ease;
text-align: center;
}
.pillar-card:hover {
transform: translateY(-6px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}
.pillar-card--featured {
border: 2px solid var(--wpo-primary);
box-shadow: 0 0 40px rgba(16, 185, 129, 0.1);
}
.pillar-card--featured:hover {
box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
}
.pillar-card__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 4rem;
height: 4rem;
border-radius: 1rem;
margin-bottom: 1.5rem;
}
.pillar-card__icon--smtp {
background: linear-gradient(135deg, #dbeafe, #ede9fe);
color: #6366f1;
}
.pillar-card__icon--newsletter {
background: linear-gradient(135deg, #d1fae5, #ccfbf1);
color: #10b981;
}
.pillar-card__icon--automation {
background: linear-gradient(135deg, #fef3c7, #ffedd5);
color: #f59e0b;
}
.pillar-card__title {
font-size: 1.25rem;
font-weight: 700;
color: var(--wpo-foreground);
margin-bottom: 0.75rem;
}
.pillar-card__text {
font-size: 0.9375rem;
color: var(--wpo-muted);
line-height: 1.7;
margin-bottom: 1.5rem;
}
.pillar-card__list {
list-style: none;
padding: 0;
margin: 0;
text-align: left;
}
.pillar-card__list li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.625rem;
font-size: 0.875rem;
color: var(--wpo-foreground);
}
.pillar-card__list li::before {
content: '';
position: absolute;
left: 0;
top: 0.35rem;
width: 12px;
height: 12px;
background: var(--wpo-success);
mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
} .solar-system {
position: relative;
width: 100%;
max-width: 900px;
height: 400px;
margin: 0 auto;
} .solar-orbits-svg {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}
.solar-orbit-path {
fill: none;
stroke: var(--wpo-border);
stroke-dasharray: 6 6;
}
.solar-orbit-path--1 {
stroke-width: 1.5;
stroke-opacity: 0.9;
}
.solar-orbit-path--2 {
stroke-width: 1.2;
stroke-opacity: 0.6;
}
.solar-orbit-path--3 {
stroke-width: 1.2;
stroke-opacity: 0.7;
} .solar-sun {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
}
.solar-sun__glow {
position: absolute;
inset: -28px;
border-radius: 9999px;
background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
animation: sun-pulse 4s ease-in-out infinite;
}
.solar-sun__core {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.25rem;
width: 88px;
height: 88px;
border-radius: 9999px;
background: linear-gradient(135deg, #10b981, #06b6d4);
color: #fff;
box-shadow:
0 0 0 4px rgba(16, 185, 129, 0.15),
0 0 40px rgba(16, 185, 129, 0.2),
0 8px 20px rgba(0, 0, 0, 0.12);
}
.solar-sun__core svg {
width: 22px;
height: 22px;
stroke: #fff;
}
.solar-sun__core span {
font-size: 0.6875rem;
font-weight: 800;
letter-spacing: 0.02em;
text-transform: uppercase;
} .solar-planet {
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
transform: translate(var(--x), var(--y));
z-index: 5;
}
.solar-planet__pill {
display: inline-flex;
align-items: center;
gap: 0.375rem;
padding: 0.4rem 0.75rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: 9999px;
white-space: nowrap;
font-size: 0.75rem;
font-weight: 600;
color: var(--wpo-foreground);
transform: translate(-50%, -50%);
animation: planet-float 5s ease-in-out infinite;
animation-delay: var(--d, 0s);
transition: border-color 0.2s ease, box-shadow 0.2s ease;
cursor: default;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.solar-planet__pill:hover {
border-color: var(--brand);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent);
z-index: 20;
}
.solar-planet__dot {
width: 7px;
height: 7px;
border-radius: 9999px;
background: var(--brand);
flex-shrink: 0;
box-shadow: 0 0 4px var(--brand);
} @keyframes planet-float {
0%, 100% { transform: translate(-50%, -50%) translateY(0); }
50% { transform: translate(-50%, -50%) translateY(-6px); }
}
@keyframes sun-pulse {
0%, 100% { transform: scale(1); opacity: 0.6; }
50% { transform: scale(1.3); opacity: 1; }
} @media (max-width: 960px) {
.solar-system {
transform: scale(0.72);
transform-origin: center center;
margin-top: -3rem;
margin-bottom: -3rem;
}
} @media (max-width: 640px) {
.solar-system {
height: auto;
max-width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.5rem;
padding: 1rem 0;
transform: none;
margin-top: 0;
margin-bottom: 0;
}
.solar-orbits-svg {
display: none;
}
.solar-sun {
position: static;
transform: none;
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 1rem;
}
.solar-sun__glow {
display: none;
}
.solar-sun__core {
width: auto;
height: auto;
flex-direction: row;
gap: 0.5rem;
padding: 0.625rem 1.25rem;
border-radius: 9999px;
}
.solar-sun__core span {
font-size: 0.8125rem;
}
.solar-planet {
position: static;
width: auto;
height: auto;
transform: none;
}
.solar-planet__pill {
transform: none;
animation: none;
}
} .hiw-timeline {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
position: relative;
max-width: 56rem;
margin: 0 auto;
} .hiw-timeline__line {
position: absolute;
top: calc(1.375rem - 1px);
left: calc(16.66%);
right: calc(16.66%);
height: 2px;
background: var(--wpo-border);
z-index: 0;
}
.hiw-timeline__line::before {
content: '';
position: absolute;
inset: 0;
background: var(--wpo-gradient-primary);
opacity: 0.35;
} .hiw-card {
text-align: center;
position: relative;
z-index: 1;
}
.hiw-card__badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.75rem;
height: 2.75rem;
border-radius: 9999px;
background: var(--wpo-gradient-primary);
color: #fff;
font-size: 1rem;
font-weight: 700;
margin-bottom: 1.5rem;
box-shadow: 0 0 0 4px var(--wpo-background), 0 4px 12px rgba(16, 185, 129, 0.25);
position: relative;
z-index: 2;
}
.hiw-card__icon {
display: flex;
align-items: center;
justify-content: center;
width: 3.5rem;
height: 3.5rem;
border-radius: 1rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
margin: 0 auto 1.25rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.hiw-card__title {
font-size: 1.125rem;
font-weight: 700;
color: var(--wpo-foreground);
margin-bottom: 0.5rem;
}
.hiw-card__text {
font-size: 0.9375rem;
color: var(--wpo-muted);
line-height: 1.7;
max-width: 18rem;
margin: 0 auto;
}
@media (max-width: 640px) {
.hiw-timeline {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.hiw-timeline__line {
display: none;
}
} .faq-item__question::-webkit-details-marker,
.faq-summary::-webkit-details-marker,
details summary::-webkit-details-marker {
display: none;
}
details summary {
list-style: none;
} .bg-grid {
background-image:
linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
} @keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.animate-float {
animation: float 6s ease-in-out infinite;
}  .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
} .alignleft {
float: left;
margin-right: 1.5rem;
margin-bottom: 1rem;
}
.alignright {
float: right;
margin-left: 1.5rem;
margin-bottom: 1rem;
}
.aligncenter {
display: block;
margin: 0 auto 1rem;
} .prose h2 {
margin-top: 2rem;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--wpo-border);
}
.prose a {
color: var(--wpo-primary);
}
.prose a:hover {
text-decoration: underline;
}
.prose code {
background: var(--wpo-primary-light);
color: var(--wpo-primary-dark);
padding: 0.125rem 0.375rem;
border-radius: 0.25rem;
font-size: 0.875em;
}
.dark .prose code {
background: rgba(16, 185, 129, 0.2);
color: #34d399;
}
.prose pre {
background: #0f172a;
border-radius: 0.75rem;
padding: 1.25rem;
overflow-x: auto;
}
.prose pre code {
background: transparent;
color: #e2e8f0;
padding: 0;
}
.prose blockquote {
border-left: 4px solid var(--wpo-primary);
padding-left: 1rem;
font-style: italic;
color: var(--wpo-muted);
} body.admin-bar #site-header {
top: 32px;
}
body.admin-bar #header-spacer {
height: 4rem; }
@media (min-width: 1024px) {
body.admin-bar #header-spacer {
height: 5rem; }
} @media (max-width: 782px) {
body.admin-bar #site-header {
top: 46px;
}
body.admin-bar #header-spacer {
height: 4rem; }
}  .wpo-co.wpdmpp-checkout {
max-width: 540px !important;
margin: 2rem auto !important;
padding: 0 1rem !important;
background: transparent !important;
}
.wpo-co .wpdmpp-checkout__content {
display: flex !important;
flex-direction: column !important;
align-items: stretch !important;
gap: 1.25rem !important;
grid-template-columns: unset !important;
} .wpo-co .wpdmpp-checkout__main,
.wpo-co .wpdmpp-checkout__sidebar {
display: contents !important;
} .wpo-co__card {
width: 100%;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: 8px;
overflow: hidden;
}
.wpo-co img {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.wpo-co__card-header {
padding: 0.875rem 1.25rem;
font-size: 0.6875rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--wpo-muted);
border-bottom: 1px solid var(--wpo-border);
}
.wpo-co__card-body {
padding: 1.25rem;
} .wpo-co .wpdmpp-checkout__items {
border: none !important;
padding: 0 !important;
margin: 0 !important;
}
.wpo-co .wpdmpp-checkout__item {
display: flex !important;
align-items: center !important;
gap: 12px !important;
padding: 0.625rem 0 !important;
border: none !important;
border-bottom: 1px solid var(--wpo-border) !important;
background: none !important;
border-radius: 0 !important;
}
.wpo-co .wpdmpp-checkout__item:last-child {
border-bottom: none !important;
padding-bottom: 0 !important;
}
.wpo-co .wpdmpp-checkout__item-image {
width: 40px !important;
height: 40px !important;
border-radius: 8px !important;
object-fit: cover !important;
flex-shrink: 0 !important;
}
.wpo-co .wpdmpp-checkout__item-placeholder {
width: 40px !important;
height: 40px !important;
border-radius: 8px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
background: rgba(16, 185, 129, 0.08) !important;
color: #10b981 !important;
flex-shrink: 0 !important;
}
.wpo-co .wpdmpp-checkout__item-info {
flex: 1 !important;
min-width: 0 !important;
}
.wpo-co .wpdmpp-checkout__item-name {
display: block !important;
font-size: 0.9375rem !important;
font-weight: 600 !important;
color: var(--wpo-foreground) !important;
line-height: 1.3 !important;
}
.wpo-co .wpdmpp-checkout__item-qty {
display: block !important;
font-size: 0.8125rem !important;
color: var(--wpo-muted) !important;
}
.wpo-co .wpdmpp-checkout__item-license {
display: inline-block !important;
margin-top: 2px !important;
padding: 1px 8px !important;
font-size: 0.6875rem !important;
font-weight: 600 !important;
border-radius: 4px !important;
background: rgba(16, 185, 129, 0.1) !important;
color: #10b981 !important;
}
.wpo-co .wpdmpp-checkout__item-price {
font-size: 0.9375rem !important;
font-weight: 600 !important;
color: var(--wpo-foreground) !important;
white-space: nowrap !important;
flex-shrink: 0 !important;
}
.wpo-co .wpdmpp-checkout__item-edit {
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 24px !important;
height: 24px !important;
border: none !important;
background: none !important;
color: var(--wpo-muted) !important;
font-size: 1.25rem !important;
line-height: 1 !important;
cursor: pointer !important;
border-radius: 4px !important;
flex-shrink: 0 !important;
padding: 0 !important;
transition: all 0.15s ease !important;
}
.wpo-co .wpdmpp-checkout__item-edit:hover {
color: var(--wpo-danger) !important;
background: rgba(239, 68, 68, 0.08) !important;
} .wpo-co .wpdmpp-checkout__item-popover {
border-radius: 10px !important;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}
.wpo-co .wpdmpp-checkout__popover-update {
background: #10b981 !important;
border-radius: 6px !important;
}
.wpo-co .wpdmpp-checkout__popover-update:hover:not(:disabled) {
background: #059669 !important;
}
.wpo-co .wpdmpp-checkout__qty-btn:hover:not(:disabled) {
background: rgba(16, 185, 129, 0.08) !important;
color: #10b981 !important;
} .wpo-co .wpdmpp-checkout__totals {
border: none !important;
padding: 0 !important;
margin: 0 0 1rem !important;
}
.wpo-co .wpdmpp-checkout__total-row {
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
padding: 0.25rem 0 !important;
font-size: 0.9375rem !important;
color: var(--wpo-foreground) !important;
border: none !important;
}
.wpo-co .wpdmpp-checkout__total-row--discount span:last-child {
color: #10b981 !important;
} .wpo-co .wpdmpp-checkout__total-row--discount[style*="display:none"],
.wpo-co .wpdmpp-checkout__total-row--discount[style*="display: none"] {
display: none !important;
} .wpo-co .wpdmpp-checkout__coupon {
margin: 0 0 1rem !important;
padding: 0 !important;
}
.wpo-co .wpdmpp-checkout__coupon-form {
display: flex !important;
gap: 0.5rem !important;
}
.wpo-co .wpdmpp-checkout__coupon-input {
flex: 1 !important;
padding: 0.625rem 0.875rem 0.625rem 2.25rem !important;
border: 1px solid var(--wpo-border) !important;
border-radius: 8px !important;
font-size: 0.875rem !important;
background: var(--wpo-surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 0 0 5.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 0 0 9.568 3Z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 6h.008v.008H6V6Z'/%3E%3C/svg%3E") no-repeat 0.75rem center !important;
color: var(--wpo-foreground) !important;
}
.wpo-co .wpdmpp-checkout__coupon-input:focus {
border-color: #10b981 !important;
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
outline: none !important;
}
.wpo-co .wpdmpp-checkout__coupon-apply {
padding: 0.625rem 1.25rem !important;
font-size: 0.875rem !important;
font-weight: 600 !important;
border-radius: 8px !important;
background: var(--wpo-foreground) !important;
color: #fff !important;
border: none !important;
cursor: pointer !important;
transition: opacity 0.15s ease !important;
white-space: nowrap !important;
}
.wpo-co .wpdmpp-checkout__coupon-apply:hover:not(:disabled) {
opacity: 0.85 !important;
}
.wpo-co .wpdmpp-checkout__coupon-badge {
align-items: center;
gap: 6px;
padding: 6px 12px;
border-radius: 8px;
background: rgba(16, 185, 129, 0.08);
color: #10b981;
font-size: 0.8125rem;
font-weight: 600;
margin-bottom: 0.5rem;
} .wpo-co .wpdmpp-checkout__coupon-badge:not([style*="display: none"]):not([style*="display:none"]) {
display: inline-flex;
}
.wpo-co .wpdmpp-checkout__coupon-remove {
color: var(--wpo-muted) !important;
}
.wpo-co .wpdmpp-checkout__coupon-msg {
display: block !important;
margin-top: 0.375rem !important;
font-size: 0.8125rem !important;
}
.wpo-co .wpdmpp-checkout__coupon-msg--success {
color: #10b981 !important;
}
.wpo-co .wpdmpp-checkout__coupon-msg--error {
color: #ef4444 !important;
} .wpo-co__grand-total {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 0.875rem;
border-top: 2px solid var(--wpo-border);
}
.wpo-co__grand-total > span:first-child {
font-size: 1rem;
font-weight: 700;
color: var(--wpo-foreground);
}
.wpo-co__grand-total-price {
font-size: 1.25rem !important;
font-weight: 700 !important;
color: #10b981 !important;
} .wpo-co .wpdmpp-checkout__payment-methods,
.wpo-co__pay-grid {
display: grid !important;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
align-items: start !important;
gap: 0.75rem !important;
border: none !important;
padding: 0 !important;
margin: 0 !important;
border-radius: 0 !important;
background: none !important;
}
.wpo-co .wpdmpp-checkout__payment-method,
.wpo-co__pay-card {
display: flex !important;
align-items: center !important;
gap: 0.625rem !important;
padding: 0.875rem 1rem !important;
border: 2px solid var(--wpo-border) !important;
border-radius: 10px !important;
cursor: pointer !important;
transition: all 0.15s ease !important;
background: var(--wpo-surface) !important;
margin: 0 !important;
}
.wpo-co .wpdmpp-checkout__payment-method:hover {
border-color: #cbd5e1 !important;
}
.wpo-co .wpdmpp-checkout__payment-method--selected {
border-color: #10b981 !important;
background: rgba(16, 185, 129, 0.04) !important;
} .wpo-co__pay-dot {
display: flex;
align-items: center;
justify-content: center;
width: 18px;
height: 18px;
border-radius: 50%;
border: 2px solid #cbd5e1;
flex-shrink: 0;
transition: all 0.15s ease;
}
.wpo-co__pay-dot::after {
content: '';
width: 8px;
height: 8px;
border-radius: 50%;
background: transparent;
transition: background 0.15s ease;
}
.wpo-co .wpdmpp-checkout__payment-method--selected .wpo-co__pay-dot {
border-color: #10b981;
}
.wpo-co .wpdmpp-checkout__payment-method--selected .wpo-co__pay-dot::after {
background: #10b981;
} .wpo-co .wpdmpp-checkout__payment-radio {
position: absolute !important;
opacity: 0 !important;
pointer-events: none !important;
width: 0 !important;
height: 0 !important;
} .wpo-co .wpdmpp-checkout__payment-content {
display: contents !important;
} .wpo-co .wpdmpp-checkout__payment-logo {
width: 24px !important;
height: 24px !important;
object-fit: contain !important;
flex-shrink: 0 !important;
} .wpo-co .wpdmpp-checkout__payment-name {
font-size: 0.875rem !important;
font-weight: 600 !important;
color: var(--wpo-foreground) !important;
} .wpo-co .wpdmpp-checkout__payment-check {
display: none !important;
} .wpo-co .wpdmpp-checkout__gateway-fields {
margin-top: 0.75rem !important;
padding: 0.875rem 1rem !important;
background: var(--wpo-background) !important;
border: none !important;
border-radius: 8px !important;
font-size: 0.8125rem !important;
color: var(--wpo-muted) !important;
}
.wpo-co .wpdmpp-checkout__gateway-fields p {
margin: 0 !important;
} .wpo-co .wpdmpp-checkout__paypal-buttons {
margin-top: 0.75rem !important;
} .wpo-co .wpdmpp-checkout__section-body {
padding: 0 !important;
}
.wpo-co .wpdmpp-checkout__field-row {
display: grid !important;
grid-template-columns: 1fr 1fr !important;
gap: 0.875rem !important;
margin-bottom: 0.875rem !important;
}
@media (max-width: 480px) {
.wpo-co .wpdmpp-checkout__field-row {
grid-template-columns: 1fr !important;
}
}
.wpo-co .wpdmpp-checkout__field {
display: flex !important;
flex-direction: column !important;
}
.wpo-co .wpdmpp-checkout__label {
font-size: 0.8125rem !important;
font-weight: 500 !important;
color: var(--wpo-foreground) !important;
margin-bottom: 0.375rem !important;
}
.wpo-co .wpdmpp-checkout__label .required {
color: #ef4444 !important;
}
.wpo-co .wpdmpp-checkout__input {
padding: 0.625rem 0.875rem !important;
border: 1px solid var(--wpo-border) !important;
border-radius: 8px !important;
font-size: 0.9375rem !important;
color: var(--wpo-foreground) !important;
background: var(--wpo-surface) !important;
width: 100% !important;
transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
}
.wpo-co .wpdmpp-checkout__input:focus {
border-color: #10b981 !important;
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
outline: none !important;
}
.wpo-co .wpdmpp-checkout__error {
font-size: 0.8125rem !important;
color: #ef4444 !important;
margin-top: 0.25rem !important;
}
.wpo-co .wpdmpp-checkout__hint {
font-size: 0.8125rem !important;
color: var(--wpo-muted) !important;
margin-top: 0.25rem !important;
} .wpo-co .wpdmpp-checkout__privacy,
.wpo-co__privacy {
width: 100%;
text-align: center;
padding: 0.5rem 0;
}
.wpo-co .wpdmpp-checkout__privacy-label {
display: inline-flex !important;
align-items: center !important;
gap: 0.5rem !important;
font-size: 0.875rem !important;
color: var(--wpo-foreground) !important;
cursor: pointer !important;
}
.wpo-co .wpdmpp-checkout__checkbox {
accent-color: #10b981 !important;
width: 1.125rem !important;
height: 1.125rem !important;
}
.wpo-co__terms-link {
color: #10b981;
text-decoration: none;
font-weight: 500;
}
.wpo-co__terms-link:hover {
text-decoration: underline;
} .wpo-co .wpdmpp-checkout__actions {
width: 100% !important;
padding: 0 !important;
margin: 0 !important;
border: none !important;
}
.wpo-co .wpdmpp-checkout__submit {
width: 100% !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
gap: 0.5rem !important;
padding: 0.9375rem 1.5rem !important;
font-size: 1rem !important;
font-weight: 600 !important;
color: #fff !important;
background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
border: none !important;
border-radius: 12px !important;
cursor: pointer !important;
transition: all 0.2s ease !important;
box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2) !important;
}
.wpo-co .wpdmpp-checkout__submit:hover:not(:disabled) {
box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
transform: translateY(-1px) !important;
}
.wpo-co .wpdmpp-checkout__submit:disabled {
opacity: 0.5 !important;
cursor: not-allowed !important;
}
.wpo-co .wpdmpp-checkout__submit-icon {
display: none !important;
} .wpo-co .wpdmpp-checkout__loading {
border-radius: 12px !important;
}
.wpo-co .wpdmpp-checkout__loading-spinner {
border-top-color: #10b981 !important;
} .wpo-co .wpdmpp-checkout__alert {
border-radius: 8px !important;
margin-top: 0.75rem !important;
} .wpo-co .wpdmpp-checkout__section-header {
display: none !important;
}
.wpo-co .wpdmpp-checkout__section-number {
display: none !important;
} .wpo-co .wpdmpp-checkout__summary-title {
display: none !important;
} .wpo-co .wpdmpp-checkout__security,
.wpo-co .wpdmpp-checkout__continue {
display: none !important;
} .dark .wpo-co.wpdmpp-checkout {
--checkout-primary: #10b981;
--checkout-primary-hover: #059669;
--checkout-primary-light: rgba(16, 185, 129, 0.08);
--checkout-bg: var(--wpo-dark-bg);
--checkout-bg-card: var(--wpo-dark-surface);
--checkout-text: #e2e8f0;
--checkout-text-muted: #94a3b8;
--checkout-border: rgba(255, 255, 255, 0.08);
}
.dark .wpo-co__card {
background: var(--wpo-dark-surface);
border-color: rgba(255, 255, 255, 0.08);
}
.dark .wpo-co__card-header {
border-bottom-color: rgba(255, 255, 255, 0.06);
color: #94a3b8;
}
.dark .wpo-co .wpdmpp-checkout__item {
border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}
.dark .wpo-co .wpdmpp-checkout__item-name {
color: #e2e8f0 !important;
}
.dark .wpo-co .wpdmpp-checkout__item-price {
color: #e2e8f0 !important;
}
.dark .wpo-co .wpdmpp-checkout__payment-method {
border-color: rgba(255, 255, 255, 0.1) !important;
background: var(--wpo-dark-surface) !important;
}
.dark .wpo-co .wpdmpp-checkout__payment-method:hover {
border-color: rgba(255, 255, 255, 0.15) !important;
}
.dark .wpo-co .wpdmpp-checkout__payment-method--selected {
border-color: #10b981 !important;
background: rgba(16, 185, 129, 0.08) !important;
}
.dark .wpo-co .wpdmpp-checkout__payment-name {
color: #e2e8f0 !important;
}
.dark .wpo-co__pay-dot {
border-color: rgba(255, 255, 255, 0.2);
}
.dark .wpo-co .wpdmpp-checkout__input {
background: var(--wpo-dark-bg) !important;
border-color: rgba(255, 255, 255, 0.1) !important;
color: #e2e8f0 !important;
}
.dark .wpo-co .wpdmpp-checkout__coupon-input {
background-color: var(--wpo-dark-bg) !important;
border-color: rgba(255, 255, 255, 0.1) !important;
color: #e2e8f0 !important;
}
.dark .wpo-co .wpdmpp-checkout__coupon-apply {
background: #e2e8f0 !important;
color: #1e293b !important;
}
.dark .wpo-co .wpdmpp-checkout__label {
color: #e2e8f0 !important;
}
.dark .wpo-co .wpdmpp-checkout__gateway-fields {
background: var(--wpo-dark-bg) !important;
}
.dark .wpo-co__grand-total {
border-top-color: rgba(255, 255, 255, 0.08);
}
.dark .wpo-co__grand-total > span:first-child {
color: #e2e8f0;
}
.dark .wpo-co .wpdmpp-checkout__privacy-label span {
color: #e2e8f0 !important;
} @media (prefers-color-scheme: dark) {
html:not(.dark) .wpo-co.wpdmpp-checkout {
--checkout-primary: #10b981;
--checkout-primary-hover: #059669;
--checkout-primary-light: rgba(16, 185, 129, 0.08);
--checkout-bg: #f8fafc;
--checkout-bg-card: #ffffff;
--checkout-text: #1e293b;
--checkout-text-muted: #64748b;
--checkout-text-light: #94a3b8;
--checkout-border: #e2e8f0;
}
html:not(.dark) .wpo-co__card {
background: #ffffff;
border-color: #e2e8f0;
}
html:not(.dark) .wpo-co__card-header {
border-bottom-color: #e2e8f0;
color: #64748b;
}
}  .wpo-checkout .w3eden,
.wpo-checkout {
font-family: inherit;
color: var(--wpo-foreground);
} .wpo-card {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
overflow: hidden;
}
.wpo-card__header {
padding: 1rem 1.5rem;
border-bottom: 1px solid var(--wpo-border);
}
.wpo-card__header--tabs {
padding: 0 1.5rem;
}
.wpo-card__title {
font-size: 0.9375rem;
font-weight: 600;
color: var(--wpo-foreground);
margin: 0;
}
.wpo-card__body {
padding: 1.5rem;
} .wpo-tabs {
list-style: none;
display: flex;
gap: 0;
margin: 0;
padding: 0;
border-bottom: 1px solid var(--wpo-border);
}
.wpo-tabs__item {
margin: 0;
padding: 0;
}
.wpo-tabs__link {
display: block;
padding: 0.75rem 1.25rem;
font-size: 0.875rem;
font-weight: 500;
color: var(--wpo-muted);
text-decoration: none;
border-bottom: 2px solid transparent;
margin-bottom: -1px;
transition: color var(--wpo-transition), border-color var(--wpo-transition);
}
.wpo-tabs__link:hover {
color: var(--wpo-foreground);
}
.wpo-tabs__link--active,
.wpo-tabs__link.active {
color: var(--wpo-primary);
border-bottom-color: var(--wpo-primary);
} .wpo-label {
display: block;
font-size: 0.8125rem;
font-weight: 500;
color: var(--wpo-foreground);
margin-bottom: 0.375rem;
}
.wpo-required {
color: var(--wpo-danger);
}
.wpo-input,
.wpo-select,
.wpo-checkout .form-control,
.wpo-checkout input[type="text"],
.wpo-checkout input[type="email"],
.wpo-checkout input[type="tel"],
.wpo-checkout input[type="number"],
.wpo-checkout select,
.wpo-checkout textarea {
width: 100%;
padding: 0.5rem 0.75rem;
font-size: 0.875rem;
line-height: 1.5;
color: var(--wpo-foreground);
background-color: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius);
transition: border-color var(--wpo-transition), box-shadow var(--wpo-transition);
outline: none;
}
.wpo-input:focus,
.wpo-select:focus,
.wpo-checkout .form-control:focus,
.wpo-checkout input:focus,
.wpo-checkout select:focus,
.wpo-checkout textarea:focus {
border-color: var(--wpo-primary);
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.wpo-input--sm {
padding: 0.375rem 0.625rem;
font-size: 0.8125rem;
}
.wpo-input--qty {
width: 4rem;
text-align: center;
}
.wpo-input--error {
border-color: var(--wpo-danger);
}
.wpo-input--readonly {
background-color: var(--wpo-background);
cursor: copy;
}
.wpo-form-group {
margin-bottom: 1rem;
}
.wpo-form-group:last-child {
margin-bottom: 0;
}
.wpo-form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.wpo-form-group--half {
margin-bottom: 0;
}
@media (max-width: 639px) {
.wpo-form-row {
grid-template-columns: 1fr;
}
} .wpo-checkbox,
.wpo-radio {
accent-color: var(--wpo-primary);
width: 1rem;
height: 1rem;
cursor: pointer;
}
.wpo-checkbox-label {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--wpo-foreground);
cursor: pointer;
} .wpo-cart-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
text-align: center;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
}
.wpo-cart-empty__icon {
color: var(--wpo-muted);
margin-bottom: 1rem;
opacity: 0.5;
}
.wpo-cart-empty__text {
font-size: 1rem;
color: var(--wpo-muted);
margin-bottom: 1.5rem;
} .wpo-cart-table {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
overflow: hidden;
}
.wpo-cart-table__head {
display: grid;
grid-template-columns: 2.5rem 1fr 7rem 7rem 7rem 4.5rem 6.5rem;
gap: 0;
padding: 0.75rem 1.25rem;
background: var(--wpo-background);
border-bottom: 1px solid var(--wpo-border);
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--wpo-muted);
}
.wpo-cart-table__row {
display: grid;
grid-template-columns: 2.5rem 1fr 7rem 7rem 7rem 4.5rem 6.5rem;
gap: 0;
padding: 1rem 1.25rem;
align-items: center;
border-bottom: 1px solid var(--wpo-border);
}
.wpo-cart-table__row:last-of-type {
border-bottom: none;
}
.wpo-cart-table__col {
padding: 0 0.25rem;
}
.wpo-cart-table__col--total {
text-align: right;
font-weight: 600;
}
.wpo-cart-table__col--price,
.wpo-cart-table__col--discount {
text-align: right;
}
.wpo-cart-table__mobile-label {
display: none;
font-size: 0.75rem;
font-weight: 600;
color: var(--wpo-muted);
text-transform: uppercase;
letter-spacing: 0.04em;
margin-bottom: 0.25rem;
} .wpo-cart-remove {
display: inline-flex;
align-items: center;
justify-content: center;
width: 1.75rem;
height: 1.75rem;
border-radius: var(--wpo-radius);
color: var(--wpo-muted);
transition: all var(--wpo-transition);
}
.wpo-cart-remove:hover {
background: rgba(239, 68, 68, 0.1);
color: var(--wpo-danger);
} .wpo-cart-item {
display: flex;
align-items: center;
gap: 0.75rem;
}
.wpo-cart-item__thumb {
flex-shrink: 0;
}
.wpo-cart-item__thumb img {
width: 48px;
height: 48px;
border-radius: var(--wpo-radius);
object-fit: cover;
border: 1px solid var(--wpo-border);
}
.wpo-cart-item__info {
min-width: 0;
}
.wpo-cart-item__info a {
font-weight: 600;
color: var(--wpo-foreground);
text-decoration: none;
}
.wpo-cart-item__info a:hover {
color: var(--wpo-primary);
}
.wpo-cart-item__info small,
.wpo-cart-item__info .text-muted {
font-size: 0.75rem;
color: var(--wpo-muted);
} @media (max-width: 767px) {
.wpo-cart-table__head {
display: none;
}
.wpo-cart-table__row {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
padding: 1rem 1.25rem;
}
.wpo-cart-table__col--remove {
order: -1;
}
.wpo-cart-table__col--item {
flex: 1 1 100%;
}
.wpo-cart-table__col--price,
.wpo-cart-table__col--discount,
.wpo-cart-table__col--coupon,
.wpo-cart-table__col--qty,
.wpo-cart-table__col--total {
text-align: left;
}
.wpo-cart-table__mobile-label {
display: block;
}
} .wpo-cart-table--compact .wpo-cart-table__head,
.wpo-cart-table--compact .wpo-cart-table__row {
grid-template-columns: 2.5rem 1fr 7rem 4.5rem 6.5rem;
} .wpo-cart-summary {
border-top: 1px solid var(--wpo-border);
padding: 1.25rem;
}
.wpo-cart-summary__row {
padding: 0.5rem 0;
}
.wpo-cart-summary__row--coupon {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
flex-wrap: wrap;
padding-bottom: 1rem;
border-bottom: 1px solid var(--wpo-border);
margin-bottom: 0.5rem;
}
.wpo-cart-coupon {
display: flex;
gap: 0.5rem;
align-items: center;
}
.wpo-cart-coupon .wpo-input {
width: 10rem;
}
.wpo-cart-summary__line {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.875rem;
color: var(--wpo-foreground);
}
.wpo-cart-summary__value {
font-weight: 600;
}
.wpo-cart-summary__value--discount {
color: var(--wpo-primary);
}
.wpo-cart-summary__row--total {
border-top: 2px solid var(--wpo-border);
margin-top: 0.5rem;
padding-top: 0.75rem;
}
.wpo-cart-summary__row--total .wpo-cart-summary__line {
font-size: 1.125rem;
font-weight: 700;
} .wpo-cart-actions {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 1.25rem;
border-top: 1px solid var(--wpo-border);
background: var(--wpo-background);
}
.wpo-cart-actions__left {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.wpo-text-danger {
color: var(--wpo-danger) !important;
}
@media (max-width: 639px) {
.wpo-cart-actions {
flex-direction: column;
gap: 0.75rem;
}
.wpo-cart-actions__left,
.wpo-cart-actions__right {
width: 100%;
}
.wpo-cart-actions__right .btn {
width: 100%;
}
} .wpo-payment-methods {
display: flex;
flex-direction: column;
}
.wpo-payment-method {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.875rem 1.5rem;
border-bottom: 1px solid var(--wpo-border);
cursor: pointer;
font-size: 0.875rem;
font-weight: 500;
color: var(--wpo-foreground);
transition: background-color var(--wpo-transition);
margin: 0;
}
.wpo-payment-method:last-child {
border-bottom: none;
}
.wpo-payment-method:hover {
background: var(--wpo-background);
}
.wpo-payment-method--selected {
background: rgba(16, 185, 129, 0.04);
}
.wpo-payment-method__name {
flex: 1;
}
.wpo-payment-method__icon {
flex-shrink: 0;
height: 24px;
width: auto;
} .wpo-checkout-actions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 1rem;
}
.wpo-cart-total-final {
font-size: 0.875rem;
color: var(--wpo-foreground);
font-weight: 500;
} .wpo-alert {
padding: 0.75rem 1rem;
border-radius: var(--wpo-radius);
font-size: 0.875rem;
}
.wpo-alert--danger {
background: rgba(239, 68, 68, 0.1);
color: var(--wpo-danger);
border: 1px solid rgba(239, 68, 68, 0.2);
} .wpo-link {
color: var(--wpo-primary);
text-decoration: none;
}
.wpo-link:hover {
text-decoration: underline;
} .wpo-tooltip {
display: inline-flex;
align-items: center;
color: var(--wpo-primary);
cursor: help;
margin-right: 0.25rem;
} .wpo-checkout .btn-primary,
.wpo-checkout .btn-success,
.wpo-checkout .btn-info {
background: var(--wpo-primary) !important;
border-color: var(--wpo-primary) !important;
color: #fff !important;
border-radius: var(--wpo-radius) !important;
}
.wpo-checkout .btn-primary:hover,
.wpo-checkout .btn-success:hover,
.wpo-checkout .btn-info:hover {
background: var(--wpo-primary-dark) !important;
border-color: var(--wpo-primary-dark) !important;
}
.wpo-checkout .btn-secondary {
background: var(--wpo-background) !important;
border-color: var(--wpo-border) !important;
color: var(--wpo-foreground) !important;
border-radius: var(--wpo-radius) !important;
}
.wpo-checkout .btn-link {
color: var(--wpo-muted) !important;
text-decoration: none !important;
}
.wpo-checkout .btn-link:hover {
color: var(--wpo-foreground) !important;
} .wpo-checkout .card,
.wpo-checkout .panel {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
box-shadow: none;
}
.wpo-checkout .card-header,
.wpo-checkout .panel-heading {
background: var(--wpo-background);
border-bottom: 1px solid var(--wpo-border);
color: var(--wpo-foreground);
font-weight: 600;
padding: 0.75rem 1.25rem;
}
.wpo-checkout .card-body,
.wpo-checkout .panel-body {
padding: 1.25rem;
} .wpo-checkout .table {
color: var(--wpo-foreground);
}
.wpo-checkout .table th {
background: var(--wpo-background);
color: var(--wpo-muted);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.04em;
font-weight: 600;
border-bottom: 1px solid var(--wpo-border);
}
.wpo-checkout .table td {
border-color: var(--wpo-border);
vertical-align: middle;
} .wpo-checkout .alert {
border-radius: var(--wpo-radius);
}
.wpo-checkout .alert-danger {
background: rgba(239, 68, 68, 0.1);
color: var(--wpo-danger);
border-color: rgba(239, 68, 68, 0.2);
} .wpo-checkout .badge {
background: var(--wpo-primary);
color: #fff;
font-weight: 600;
border-radius: 9999px;
padding: 0.25em 0.625em;
}  .w3eden .card,
.w3eden .card-default {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
box-shadow: none;
overflow: hidden;
margin-bottom: 1.5rem;
}
.w3eden .card-header {
background: var(--wpo-background);
border-bottom: 1px solid var(--wpo-border);
color: var(--wpo-foreground);
font-weight: 600;
font-size: 0.9375rem;
padding: 0.875rem 1.25rem;
}
.w3eden .card-body,
.w3eden .card-body1 {
padding: 1.25rem;
}
.w3eden .card-footer {
padding: 0.875rem 1.25rem;
background: var(--wpo-background);
border-top: 1px solid var(--wpo-border);
} .w3eden .table {
width: 100%;
border-collapse: collapse;
color: var(--wpo-foreground);
font-size: 0.875rem;
}
.w3eden .table th {
background: var(--wpo-background);
color: var(--wpo-muted);
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--wpo-border);
}
.w3eden .table td {
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--wpo-border);
vertical-align: middle;
}
.w3eden .table tr:last-child td {
border-bottom: none;
}
.w3eden .table-hover tbody tr:hover {
background: var(--wpo-background);
} .w3eden .btn {
display: inline-flex;
align-items: center;
gap: 0.375rem;
font-family: inherit;
font-size: 0.875rem;
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: var(--wpo-radius);
border: 1px solid transparent;
cursor: pointer;
transition: all var(--wpo-transition);
text-decoration: none;
line-height: 1.5;
}
.w3eden .btn-primary {
background: var(--wpo-primary);
border-color: var(--wpo-primary);
color: #fff;
}
.w3eden .btn-primary:hover {
background: var(--wpo-primary-dark);
border-color: var(--wpo-primary-dark);
color: #fff;
}
.w3eden .btn-success {
background: var(--wpo-success);
border-color: var(--wpo-success);
color: #fff;
}
.w3eden .btn-success:hover {
background: #059669;
border-color: #059669;
color: #fff;
}
.w3eden .btn-info {
background: #0ea5e9;
border-color: #0ea5e9;
color: #fff;
}
.w3eden .btn-info:hover {
background: #0284c7;
border-color: #0284c7;
color: #fff;
}
.w3eden .btn-danger {
background: var(--wpo-danger);
border-color: var(--wpo-danger);
color: #fff;
}
.w3eden .btn-danger:hover {
background: #dc2626;
border-color: #dc2626;
color: #fff;
}
.w3eden .btn-secondary {
background: var(--wpo-background);
border-color: var(--wpo-border);
color: var(--wpo-foreground);
}
.w3eden .btn-secondary:hover {
background: var(--wpo-border);
}
.w3eden .btn-xs {
font-size: 0.75rem;
padding: 0.25rem 0.5rem;
}
.w3eden .btn-sm {
font-size: 0.8125rem;
padding: 0.375rem 0.75rem;
}
.w3eden .btn-block {
display: flex;
justify-content: center;
width: 100%;
} .w3eden .form-control {
width: 100%;
padding: 0.5rem 0.75rem;
font-size: 0.875rem;
font-family: inherit;
line-height: 1.5;
color: var(--wpo-foreground);
background-color: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius);
transition: border-color var(--wpo-transition), box-shadow var(--wpo-transition);
outline: none;
}
.w3eden .form-control:focus {
border-color: var(--wpo-primary);
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.w3eden .form-group {
margin-bottom: 1rem;
}
.w3eden .control-label,
.w3eden label {
display: block;
font-size: 0.8125rem;
font-weight: 500;
color: var(--wpo-foreground);
margin-bottom: 0.375rem;
}
.w3eden .required {
color: var(--wpo-danger);
}
.w3eden .custom-select {
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 0.75rem center;
padding-right: 2rem;
} .w3eden .input-group {
display: flex;
width: 100%;
}
.w3eden .input-group .form-control {
flex: 1;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.w3eden .input-group-append .btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.w3eden .input-group-lg .form-control {
font-size: 1rem;
padding: 0.75rem 1rem;
}
.w3eden .input-group-lg .btn {
padding: 0.75rem 1.25rem;
font-size: 1rem;
} .w3eden .row {
display: flex;
flex-wrap: wrap;
margin: 0 -0.5rem;
}
.w3eden .col-md-6 {
flex: 0 0 100%;
max-width: 100%;
padding: 0 0.5rem;
margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
.w3eden .col-md-6 {
flex: 0 0 50%;
max-width: 50%;
}
} .w3eden .alert {
padding: 0.75rem 1rem;
border-radius: var(--wpo-radius);
font-size: 0.875rem;
margin-bottom: 1rem;
}
.w3eden .alert-danger {
background: rgba(239, 68, 68, 0.1);
color: var(--wpo-danger);
border: 1px solid rgba(239, 68, 68, 0.2);
}
.w3eden .alert-warning {
background: rgba(245, 158, 11, 0.1);
color: #b45309;
border: 1px solid rgba(245, 158, 11, 0.2);
} .w3eden .modal {
font-family: inherit;
}
.w3eden .modal-content {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.w3eden .modal-header {
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--wpo-border);
}
.w3eden .modal-title {
font-size: 1rem;
font-weight: 600;
color: var(--wpo-foreground);
}
.w3eden .modal-body {
padding: 1.25rem;
}
.w3eden .modal-footer {
padding: 0.875rem 1.25rem;
border-top: 1px solid var(--wpo-border);
display: flex;
justify-content: flex-end;
gap: 0.5rem;
} .w3eden .label {
display: inline-flex;
align-items: center;
font-size: 0.75rem;
font-weight: 600;
padding: 0.125rem 0.5rem;
border-radius: 9999px;
}
.w3eden .label-danger {
background: rgba(239, 68, 68, 0.1);
color: var(--wpo-danger);
} .w3eden .list-group {
list-style: none;
padding: 0;
margin: 0;
}
.w3eden .list-group-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--wpo-border);
color: var(--wpo-foreground);
text-decoration: none;
font-size: 0.875rem;
transition: background var(--wpo-transition);
}
.w3eden .list-group-item:last-child {
border-bottom: none;
}
.w3eden .list-group-item:hover {
background: var(--wpo-background);
} .w3eden .text-right {
text-align: right;
}
.w3eden .text-danger {
color: var(--wpo-danger);
}
.w3eden .text-success {
color: var(--wpo-success);
}
.w3eden .text-lg {
font-size: 1.125rem;
font-weight: 600;
}
.w3eden .pull-right {
float: right;
}
.w3eden .mb-3 {
margin-bottom: 1rem;
}
.w3eden .mb-0 {
margin-bottom: 0;
}
.w3eden .m-0 {
margin: 0;
}
.w3eden .p-0 {
padding: 0;
} .w3eden .progress {
height: 20px;
background: var(--wpo-background);
border-radius: var(--wpo-radius);
overflow: hidden;
position: relative;
}
.w3eden .progress-bar {
height: 100%;
background: var(--wpo-primary);
transition: width 0.3s ease;
} .wpdmpp-resolve {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem 1.25rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
margin-bottom: 1.5rem;
}
.wpdmpp-resolve__icon {
display: flex;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
border-radius: 0.625rem;
background: var(--wpo-background);
color: var(--wpo-muted);
flex-shrink: 0;
}
.wpdmpp-resolve__content {
flex: 1;
min-width: 0;
}
.wpdmpp-resolve__title {
font-size: 0.875rem;
font-weight: 600;
color: var(--wpo-foreground);
margin: 0 0 0.125rem 0;
}
.wpdmpp-resolve__desc {
font-size: 0.75rem;
color: var(--wpo-muted);
margin: 0;
}
.wpdmpp-resolve__form {
flex-shrink: 0;
}
.wpdmpp-resolve__input-wrap {
display: flex;
gap: 0.375rem;
align-items: center;
}
.wpdmpp-resolve__input {
width: 14rem;
height: 2.25rem;
padding: 0 0.75rem;
font-size: 0.8125rem;
font-family: inherit;
color: var(--wpo-foreground);
background: var(--wpo-background);
border: 1px solid var(--wpo-border);
border-radius: 0.375rem;
outline: none;
transition: border-color var(--wpo-transition), box-shadow var(--wpo-transition);
}
.wpdmpp-resolve__input-wrap .wpdmpp-btn--sm {
height: 2.25rem;
border-radius: 0.375rem;
padding: 0 0.75rem;
}
.wpdmpp-resolve__input:focus {
border-color: var(--wpo-primary);
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}
.wpdmpp-resolve__status {
cursor: pointer;
font-size: 0.8125rem;
padding: 0.5rem 0;
}
.wpdmpp-resolve__loading {
display: inline-flex;
align-items: center;
gap: 0.375rem;
color: var(--wpo-muted);
}
.wpdmpp-resolve__success {
display: inline-flex;
align-items: center;
gap: 0.375rem;
color: var(--wpo-success);
}
.wpdmpp-resolve__error {
display: inline-flex;
align-items: center;
gap: 0.375rem;
color: var(--wpo-danger);
}
@media (max-width: 767px) {
.wpdmpp-resolve {
flex-direction: column;
align-items: stretch;
text-align: center;
}
.wpdmpp-resolve__icon {
align-self: center;
}
.wpdmpp-resolve__form {
width: 100%;
}
.wpdmpp-resolve__input-wrap {
flex-direction: column;
}
.wpdmpp-resolve__input {
width: 100%;
}
} .wpdmpp-orders {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
color: var(--wpo-foreground);
max-width: 100%;
}
.wpdmpp-orders__header {
margin-bottom: 1.25rem;
}
.wpdmpp-orders__title {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.25rem;
font-weight: 700;
color: var(--wpo-foreground);
margin: 0;
}
.wpdmpp-orders__title svg {
color: var(--wpo-muted);
}
.wpdmpp-orders__count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 1.5rem;
height: 1.5rem;
padding: 0 0.375rem;
background: var(--wpo-primary-light);
color: var(--wpo-primary);
font-size: 0.75rem;
font-weight: 700;
border-radius: 9999px;
} .wpdmpp-orders__filters {
display: flex;
gap: 0.25rem;
flex-wrap: wrap;
margin-bottom: 1.25rem;
padding: 0.25rem;
background: var(--wpo-background);
border-radius: var(--wpo-radius);
}
.wpdmpp-filter-tab {
display: inline-flex;
align-items: center;
gap: 0.375rem;
padding: 0.5rem 0.875rem;
font-size: 0.8125rem;
font-weight: 500;
color: var(--wpo-muted);
background: transparent;
border: none;
border-radius: var(--wpo-radius);
cursor: pointer;
transition: all var(--wpo-transition);
font-family: inherit;
}
.wpdmpp-filter-tab:hover {
color: var(--wpo-foreground);
}
.wpdmpp-filter-tab.is-active {
background: var(--wpo-surface);
color: var(--wpo-foreground);
font-weight: 600;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.wpdmpp-filter-tab__count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 1.25rem;
height: 1.25rem;
padding: 0 0.25rem;
background: var(--wpo-border);
color: var(--wpo-muted);
font-size: 0.6875rem;
font-weight: 700;
border-radius: 9999px;
}
.wpdmpp-filter-tab.is-active .wpdmpp-filter-tab__count {
background: var(--wpo-primary-light);
color: var(--wpo-primary);
} .wpdmpp-orders__empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
text-align: center;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
}
.wpdmpp-orders__empty-icon {
color: var(--wpo-muted);
opacity: 0.4;
margin-bottom: 1rem;
}
.wpdmpp-orders__empty-text {
font-size: 0.9375rem;
color: var(--wpo-muted);
margin: 0;
} .wpdmpp-orders__list {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.wpdmpp-order-card {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
transition: all var(--wpo-transition);
}
.wpdmpp-order-card:hover {
border-color: var(--wpo-primary);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.wpdmpp-order-card.is-hidden {
display: none;
}
.wpdmpp-order-card__body {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding: 1rem 1.25rem;
}
.wpdmpp-order-card__main {
flex: 1;
min-width: 0;
}
.wpdmpp-order-card__top {
display: flex;
align-items: center;
gap: 0.625rem;
margin-bottom: 0.375rem;
}
.wpdmpp-order-card__id {
font-size: 0.9375rem;
font-weight: 700;
color: var(--wpo-foreground);
text-decoration: none;
}
.wpdmpp-order-card__id:hover {
color: var(--wpo-primary);
} .wpdmpp-status {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.6875rem;
font-weight: 600;
padding: 0.125rem 0.5rem;
border-radius: 9999px;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.wpdmpp-status--completed {
background: rgba(16, 185, 129, 0.1);
color: #059669;
}
.wpdmpp-status--processing {
background: rgba(245, 158, 11, 0.1);
color: #b45309;
}
.wpdmpp-status--expired {
background: rgba(100, 116, 139, 0.1);
color: var(--wpo-muted);
}
.wpdmpp-status--cancelled {
background: rgba(239, 68, 68, 0.1);
color: var(--wpo-danger);
}
.wpdmpp-status--refunded {
background: rgba(139, 92, 246, 0.1);
color: #7c3aed;
} .wpdmpp-order-card__products {
display: flex;
align-items: center;
gap: 0.375rem;
margin-bottom: 0.375rem;
flex-wrap: wrap;
}
.wpdmpp-order-card__product-name {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.8125rem;
color: var(--wpo-foreground);
}
.wpdmpp-order-card__product-name svg {
color: var(--wpo-muted);
}
.wpdmpp-order-card__product-sep {
color: var(--wpo-muted);
font-size: 0.75rem;
}
.wpdmpp-order-card__product-more {
font-size: 0.75rem;
color: var(--wpo-muted);
font-weight: 500;
} .wpdmpp-order-card__meta {
display: flex;
align-items: center;
gap: 0.5rem;
flex-wrap: wrap;
}
.wpdmpp-order-card__meta-item {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.75rem;
color: var(--wpo-muted);
}
.wpdmpp-order-card__meta-item svg {
opacity: 0.6;
}
.wpdmpp-order-card__meta-sep {
width: 3px;
height: 3px;
background: var(--wpo-border);
border-radius: 50%;
} .wpdmpp-renew-badge {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.6875rem;
font-weight: 600;
padding: 0.125rem 0.5rem;
border-radius: 9999px;
}
.wpdmpp-renew-badge--active {
background: rgba(16, 185, 129, 0.1);
color: #059669;
}
.wpdmpp-renew-badge--inactive {
background: rgba(100, 116, 139, 0.1);
color: var(--wpo-muted);
} .wpdmpp-order-card__actions {
display: flex;
align-items: center;
gap: 0.5rem;
flex-shrink: 0;
} .wpdmpp-btn {
display: inline-flex;
align-items: center;
gap: 0.375rem;
font-family: inherit;
font-size: 0.875rem;
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: var(--wpo-radius);
border: 1px solid var(--wpo-border);
background: var(--wpo-surface);
color: var(--wpo-foreground);
cursor: pointer;
transition: all var(--wpo-transition);
text-decoration: none;
line-height: 1.5;
white-space: nowrap;
}
.wpdmpp-btn:hover {
background: var(--wpo-background);
border-color: var(--wpo-primary);
color: var(--wpo-primary);
}
.wpdmpp-btn--primary {
background: var(--wpo-primary) !important;
border-color: var(--wpo-primary) !important;
color: #fff !important;
}
.wpdmpp-btn--primary:hover {
background: var(--wpo-primary-dark) !important;
border-color: var(--wpo-primary-dark) !important;
color: #fff !important;
}
.wpdmpp-btn--success {
background: var(--wpo-success);
border-color: var(--wpo-success);
color: #fff;
}
.wpdmpp-btn--success:hover {
background: #059669;
border-color: #059669;
color: #fff;
}
.wpdmpp-btn--danger {
background: var(--wpo-danger);
border-color: var(--wpo-danger);
color: #fff;
}
.wpdmpp-btn--danger:hover {
background: #dc2626;
border-color: #dc2626;
color: #fff;
}
.wpdmpp-btn--sm {
font-size: 0.8125rem;
padding: 0.375rem 0.75rem;
}
.wpdmpp-btn--xs {
font-size: 0.75rem;
padding: 0.25rem 0.5rem;
}
.wpdmpp-btn--toggle {
font-size: 0.75rem;
padding: 0.25rem 0.625rem;
background: transparent;
border-color: var(--wpo-border);
color: var(--wpo-muted);
}
.wpdmpp-btn--toggle:hover {
color: var(--wpo-foreground);
border-color: var(--wpo-foreground);
background: transparent;
}
.wpdmpp-btn--icon-danger {
width: 2rem;
height: 2rem;
padding: 0;
justify-content: center;
color: var(--wpo-muted);
background: transparent;
border: none;
}
.wpdmpp-btn--icon-danger:hover {
color: var(--wpo-danger);
background: rgba(239, 68, 68, 0.1);
border: none;
}
@media (max-width: 639px) {
.wpdmpp-order-card__body {
flex-direction: column;
align-items: stretch;
}
.wpdmpp-order-card__actions {
justify-content: flex-end;
border-top: 1px solid var(--wpo-border);
padding-top: 0.75rem;
}
} .wpdmpp-order-detail {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
color: var(--wpo-foreground);
max-width: 100%;
} .wpdmpp-od__alert {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1rem;
border-radius: var(--wpo-radius);
font-size: 0.875rem;
margin-bottom: 1rem;
}
.wpdmpp-od__alert--success {
background: rgba(16, 185, 129, 0.1);
color: #059669;
border: 1px solid rgba(16, 185, 129, 0.2);
}
.wpdmpp-od__alert--error {
background: rgba(239, 68, 68, 0.1);
color: var(--wpo-danger);
border: 1px solid rgba(239, 68, 68, 0.2);
} .wpdmpp-od__header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}
.wpdmpp-od__breadcrumb {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
}
.wpdmpp-od__breadcrumb a {
display: inline-flex;
align-items: center;
gap: 0.25rem;
color: var(--wpo-muted);
text-decoration: none;
transition: color var(--wpo-transition);
}
.wpdmpp-od__breadcrumb a:hover {
color: var(--wpo-primary);
}
.wpdmpp-od__breadcrumb svg {
color: var(--wpo-muted);
opacity: 0.5;
}
.wpdmpp-od__breadcrumb-current {
font-weight: 600;
color: var(--wpo-foreground);
}
.wpdmpp-od__actions {
display: flex;
align-items: center;
gap: 0.5rem;
} .wpdmpp-od__summary {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.75rem;
margin-bottom: 1.5rem;
}
.wpdmpp-od__card {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 1rem;
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
}
.wpdmpp-od__card-icon {
display: flex;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
border-radius: 0.625rem;
background: var(--wpo-background);
color: var(--wpo-muted);
flex-shrink: 0;
}
.wpdmpp-od__card-icon--completed {
background: rgba(16, 185, 129, 0.1);
color: #059669;
}
.wpdmpp-od__card-icon--processing {
background: rgba(245, 158, 11, 0.1);
color: #b45309;
}
.wpdmpp-od__card-icon--expired {
background: rgba(100, 116, 139, 0.1);
color: var(--wpo-muted);
}
.wpdmpp-od__card-icon--cancelled {
background: rgba(239, 68, 68, 0.1);
color: var(--wpo-danger);
}
.wpdmpp-od__card-icon--refunded {
background: rgba(139, 92, 246, 0.1);
color: #7c3aed;
}
.wpdmpp-od__card-body {
min-width: 0;
}
.wpdmpp-od__card-label {
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--wpo-muted);
margin-bottom: 0.125rem;
}
.wpdmpp-od__card-value {
font-size: 0.9375rem;
font-weight: 600;
color: var(--wpo-foreground);
}
@media (max-width: 639px) {
.wpdmpp-od__summary {
grid-template-columns: 1fr;
}
} .wpdmpp-od__subscription {
display: flex;
gap: 0.75rem;
padding: 1rem;
background: var(--wpo-background);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
margin-bottom: 1.5rem;
flex-wrap: wrap;
}
.wpdmpp-od__sub-card {
flex: 1;
min-width: 120px;
}
.wpdmpp-od__sub-label {
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--wpo-muted);
margin-bottom: 0.25rem;
}
.wpdmpp-od__sub-value {
font-size: 0.875rem;
font-weight: 500;
color: var(--wpo-foreground);
} .wpdmpp-od__section {
margin-bottom: 1.5rem;
}
.wpdmpp-od__section-title {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1rem;
font-weight: 700;
color: var(--wpo-foreground);
margin: 0 0 1rem 0;
}
.wpdmpp-od__section-title svg {
color: var(--wpo-muted);
} .wpdmpp-od__items-wrap {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
overflow: hidden;
}
.wpdmpp-od__items-head {
display: grid;
grid-template-columns: 1fr 7rem 5rem 7rem;
gap: 0;
padding: 0.75rem 1.25rem;
background: var(--wpo-background);
border-bottom: 1px solid var(--wpo-border);
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--wpo-muted);
}
.wpdmpp-od__items-head.has-download {
grid-template-columns: 1fr 7rem 5rem 7rem 9rem;
}
.wpdmpp-od__items-head div:last-child {
text-align: right;
}
.wpdmpp-od__item {
display: grid;
grid-template-columns: 1fr 7rem 5rem 7rem;
gap: 0;
padding: 1rem 1.25rem;
align-items: center;
border-bottom: 1px solid var(--wpo-border);
}
.wpdmpp-od__item.has-download {
grid-template-columns: 1fr 7rem 5rem 7rem 9rem;
}
.wpdmpp-od__item:last-of-type {
border-bottom: none;
}
.wpdmpp-od__item-product {
display: flex;
align-items: center;
gap: 0.75rem;
min-width: 0;
}
.wpdmpp-od__item-thumb {
flex-shrink: 0;
}
.wpdmpp-od__item-thumb img {
width: 40px;
height: 40px;
border-radius: var(--wpo-radius);
object-fit: cover;
border: 1px solid var(--wpo-border);
}
.wpdmpp-od__item-info {
min-width: 0;
}
.wpdmpp-od__item-name {
font-weight: 600;
font-size: 0.875rem;
color: var(--wpo-foreground);
}
.wpdmpp-od__item-name a {
color: inherit;
text-decoration: none;
}
.wpdmpp-od__item-name a:hover {
color: var(--wpo-primary);
}
.wpdmpp-od__item-meta {
font-size: 0.75rem;
color: var(--wpo-muted);
margin-top: 0.125rem;
}
.wpdmpp-od__item-price,
.wpdmpp-od__item-total {
font-size: 0.875rem;
color: var(--wpo-foreground);
}
.wpdmpp-od__item-total {
font-weight: 600;
}
.wpdmpp-od__item-license {
display: flex;
align-items: center;
}
.wpdmpp-od__license-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 1.75rem;
height: 1.75rem;
border-radius: var(--wpo-radius);
color: var(--wpo-primary);
background: rgba(16, 185, 129, 0.08);
text-decoration: none;
transition: all var(--wpo-transition);
}
.wpdmpp-od__license-btn:hover {
background: rgba(16, 185, 129, 0.15);
}
.wpdmpp-od__item-download {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 0.375rem;
}
.wpdmpp-od__col-right {
text-align: right;
}
@media (max-width: 767px) {
.wpdmpp-od__items-head {
display: none;
}
.wpdmpp-od__item,
.wpdmpp-od__item.has-download {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
grid-template-columns: unset;
}
.wpdmpp-od__item-product {
flex: 1 1 100%;
}
.wpdmpp-od__item-download {
flex: 1 1 100%;
justify-content: flex-start;
}
} .wpdmpp-od__files {
display: none;
padding: 0 1.25rem 1rem;
border-bottom: 1px solid var(--wpo-border);
}
.wpdmpp-od__files.is-open {
display: block;
}
.wpdmpp-od__files-search {
width: 100%;
padding: 0.5rem 0.75rem;
font-size: 0.8125rem;
font-family: inherit;
color: var(--wpo-foreground);
background: var(--wpo-background);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius);
outline: none;
margin-bottom: 0.5rem;
transition: border-color var(--wpo-transition);
}
.wpdmpp-od__files-search:focus {
border-color: var(--wpo-primary);
}
.wpdmpp-od__files-list {
list-style: none;
padding: 0;
margin: 0;
}
.wpdmpp-od__file-item {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
padding: 0.5rem 0;
border-bottom: 1px solid var(--wpo-border);
}
.wpdmpp-od__file-item:last-child {
border-bottom: none;
}
.wpdmpp-od__file-name {
font-size: 0.8125rem;
color: var(--wpo-foreground);
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.wpdmpp-od__item-extra {
padding: 0.75rem 1.25rem;
border-bottom: 1px solid var(--wpo-border);
font-size: 0.875rem;
} .wpdmpp-od__totals {
border-top: 1px solid var(--wpo-border);
padding: 1rem 1.25rem;
}
.wpdmpp-od__total-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.375rem 0;
font-size: 0.875rem;
color: var(--wpo-foreground);
}
.wpdmpp-od__total-row--grand {
border-top: 2px solid var(--wpo-border);
margin-top: 0.5rem;
padding-top: 0.75rem;
font-size: 1.0625rem;
font-weight: 700;
} .wpdmpp-od__cta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding: 1rem 1.25rem;
background: var(--wpo-background);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
margin-bottom: 1.5rem;
}
.wpdmpp-od__cta-text {
font-size: 0.875rem;
color: var(--wpo-muted);
}
@media (max-width: 639px) {
.wpdmpp-od__cta {
flex-direction: column;
align-items: stretch;
text-align: center;
}
.wpdmpp-od__cta .wpdmpp-btn {
justify-content: center;
}
} .wpdmpp-od__invoice-list {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
overflow: hidden;
}
.wpdmpp-od__invoice-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1.25rem;
border-bottom: 1px solid var(--wpo-border);
font-size: 0.875rem;
}
.wpdmpp-od__invoice-row:last-child {
border-bottom: none;
} .wpdmpp-od__note {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius);
padding: 1rem;
margin-bottom: 0.75rem;
}
.wpdmpp-od__note-body {
font-size: 0.875rem;
color: var(--wpo-foreground);
line-height: 1.6;
margin-bottom: 0.5rem;
}
.wpdmpp-od__note-body p {
margin: 0 0 0.5rem;
}
.wpdmpp-od__note-body p:last-child {
margin-bottom: 0;
}
.wpdmpp-od__note-attachments {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 0.75rem;
}
.wpdmpp-od__note-attachments a {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.75rem;
color: var(--wpo-primary);
text-decoration: none;
padding: 0.25rem 0.5rem;
background: rgba(16, 185, 129, 0.06);
border-radius: var(--wpo-radius);
transition: background var(--wpo-transition);
}
.wpdmpp-od__note-attachments a:hover {
background: rgba(16, 185, 129, 0.12);
}
.wpdmpp-od__note-footer {
border-top: 1px solid var(--wpo-border);
padding-top: 0.5rem;
}
.wpdmpp-od__note-meta {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
}
.wpdmpp-od__note-meta-item {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.6875rem;
color: var(--wpo-muted);
} .wpdmpp-od__note-form {
background: var(--wpo-surface);
border: 1px solid var(--wpo-border);
border-radius: var(--wpo-radius-lg);
overflow: hidden;
}
.wpdmpp-od__note-form textarea {
width: 100%;
min-height: 5rem;
padding: 0.875rem 1rem;
font-family: inherit;
font-size: 0.875rem;
color: var(--wpo-foreground);
background: transparent;
border: none;
border-bottom: 1px solid var(--wpo-border);
outline: none;
resize: vertical;
}
.wpdmpp-od__note-form textarea:focus {
background: var(--wpo-background);
}
.wpdmpp-od__note-upload {
padding: 0.75rem 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
flex-wrap: wrap;
border-bottom: 1px solid var(--wpo-border);
}
.wpdmpp-od__note-footer-bar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
padding: 0.75rem 1rem;
flex-wrap: wrap;
}
.wpdmpp-od__note-recipients {
display: flex;
align-items: center;
gap: 0.625rem;
font-size: 0.8125rem;
color: var(--wpo-muted);
}
.wpdmpp-od__note-recipients label {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.8125rem;
font-weight: 400;
color: var(--wpo-foreground);
cursor: pointer;
margin-bottom: 0;
}
.wpdmpp-od__note-recipients input[type="checkbox"] {
accent-color: var(--wpo-primary);
}  .dark .wpdmpp-od__note-form textarea {
color: var(--wpo-foreground);
}
.dark .wpdmpp-od__files-search {
color: var(--wpo-foreground);
background: var(--wpo-background);
}
.dark .wpdmpp-btn {
border-color: var(--wpo-border);
background: var(--wpo-surface);
color: var(--wpo-foreground);
}
.dark .wpdmpp-btn:hover {
background: var(--wpo-background);
}
.dark .wpdmpp-btn--primary {
background: var(--wpo-primary);
border-color: var(--wpo-primary);
color: #fff;
}
.dark .wpdmpp-btn--success {
background: var(--wpo-success);
border-color: var(--wpo-success);
color: #fff;
}
.dark .wpdmpp-btn--danger {
background: var(--wpo-danger);
border-color: var(--wpo-danger);
color: #fff;
} .dark .w3eden .card,
.dark .w3eden .card-default {
background: #1e293b;
border-color: #334155;
}
.dark .w3eden .card-header {
background: #0f172a;
border-bottom-color: #334155;
color: #f1f5f9;
}
.dark .w3eden .card-body,
.dark .w3eden .card-body1 {
color: #f1f5f9;
}
.dark .w3eden .card-footer {
background: #0f172a;
border-top-color: #334155;
}
.dark .w3eden .form-control {
background: #0f172a;
border-color: #334155;
color: #f1f5f9;
}
.dark .w3eden .table {
color: #f1f5f9;
}
.dark .w3eden .table th {
background: #0f172a;
border-bottom-color: #334155;
color: #94a3b8;
}
.dark .w3eden .table td {
border-color: #334155;
}
.dark .w3eden .table-hover tbody tr:hover {
background: #0f172a;
}
.dark .w3eden .modal-content {
background: #1e293b;
border-color: #334155;
}
.dark .w3eden .modal-header {
border-bottom-color: #334155;
}
.dark .w3eden .modal-footer {
border-top-color: #334155;
}
.dark .w3eden .modal-title {
color: #f1f5f9;
}
.dark .w3eden .list-group-item {
border-bottom-color: #334155;
color: #f1f5f9;
}
.dark .w3eden .list-group-item:hover {
background: #0f172a;
}
.dark .w3eden .btn-secondary {
background: #334155;
border-color: #475569;
color: #f1f5f9;
}
.dark .w3eden label,
.dark .w3eden .control-label {
color: #f1f5f9;
}