.pp-contact-card {
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 12px;
overflow: hidden;
margin-top: 24px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.pp-contact-card:hover {
border-color: #C5A065;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.pp-contact-header {
padding: 16px;
display: flex;
align-items: center;
gap: 12px;
cursor: pointer;
background: #fff;
}
.pp-contact-avatar-wrapper {
position: relative;
width: 48px;
height: 48px;
}
.pp-contact-avatar {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
border: 2px solid #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.pp-avatar-status {
position: absolute;
bottom: 2px;
right: 2px;
width: 12px;
height: 12px;
background-color: #ef4444;
border: 2px solid #fff;
border-radius: 50%;
z-index: 10;
}
.pp-avatar-status.online {
background-color: #22c55e;
}
.pp-contact-info h4 {
font-size: 14px;
font-weight: 700;
color: #111827;
margin: 0;
line-height: 1.2;
}
.pp-contact-meta {
font-size: 12px;
color: #6b7280;
display: flex;
align-items: center;
gap: 6px;
margin-top: 2px;
}
.pp-status-text {
font-weight: 500;
}
.pp-expand-icon {
margin-left: auto;
color: #9ca3af;
transition: 0.3s;
}
.pp-contact-card:hover .pp-expand-icon {
transform: rotate(180deg);
color: #C5A065;
}
.pp-contact-body {
max-height: 0;
opacity: 0;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
background: #f9fafb;
}
.pp-contact-card:hover .pp-contact-body {
max-height: 300px;
opacity: 1;
border-top: 1px solid #f3f4f6;
}
.pp-contact-actions {
padding: 16px;
display: flex;
flex-direction: column;
gap: 10px;
}
.pp-contact-btn {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
text-decoration: none;
transition: all 0.2s;
background: #fff;
border: 1px solid #e5e7eb;
color: #374151;
}
.pp-contact-btn:hover {
background: #C5A065;
border-color: #C5A065;
color: #fff;
transform: translateX(2px);
}
.pp-contact-btn.primary {
background: #111827;
color: #fff;
border-color: #111827;
justify-content: center;
text-align: center;
}
.pp-contact-btn.primary:hover {
background: #C5A065;
border-color: #C5A065;
} .pp-out-of-stock-section {
background: #E6F5F2;
border: 1px solid #c2eadd;
border-radius: 20px;
padding: 24px;
margin-bottom: 24px;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}
.pp-out-of-stock-section:hover {
border-color: #10B981;
background: #eef9f7;
box-shadow: 0 8px 24px rgba(16, 185, 129, 0.08);
}
.pp-oos-header {
text-align: center;
margin-bottom: 24px;
}
.pp-oos-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: #FBBF24;
color: #0F172A;
font-size: 11px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 6px 14px;
border-radius: 99px;
margin-bottom: 16px;
box-shadow: 0 2px 4px rgba(251, 191, 36, 0.2);
}
.pp-oos-title {
font-size: 20px;
font-weight: 800;
color: #0F172A;
margin: 0 0 8px 0;
letter-spacing: -0.02em;
}
.pp-oos-desc {
font-size: 14px;
color: #475569;
line-height: 1.5;
margin: 0;
} .pp-pulse-dot {
display: inline-block;
width: 8px;
height: 8px;
background-color: #10B981;
border-radius: 50%;
margin-right: 6px;
position: relative;
}
.pp-pulse-dot::after {
content: '';
position: absolute;
inset: 0;
background-color: inherit;
border-radius: inherit;
animation: pp-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pp-pulse {
0% { transform: scale(1); opacity: 0.8; }
70% { transform: scale(2.5); opacity: 0; }
100% { transform: scale(1); opacity: 0; }
}
.pp-oos-contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
margin-bottom: 20px;
}
@media (min-width: 1024px) {
.pp-oos-contact-grid {
grid-template-columns: 1fr;
}
}
.pp-oos-contact-item {
display: flex;
align-items: center;
gap: 16px;
padding: 16px;
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 14px;
text-decoration: none !important;
transition: all 0.2s ease;
}
.pp-oos-contact-item:hover {
border-color: #10B981;
transform: translateY(-2px);
box-shadow: 0 8px 16px rgba(16, 185, 129, 0.1);
}
.pp-oos-icon-box {
width: 44px;
height: 44px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: all 0.2s ease;
}
.pp-oos-contact-item:hover .pp-oos-icon-box {
transform: scale(1.05);
}
.pp-oos-icon-box.tel {
background: #10B981;
color: #fff;
}
.pp-oos-icon-box.mail {
background: #0F172A;
color: #fff;
}
.pp-oos-text-box {
display: flex;
flex-direction: column;
}
.pp-oos-text-box .label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
color: #94a3b8;
letter-spacing: 0.05em;
}
.pp-oos-text-box .value {
font-size: 16px;
font-weight: 800;
color: #0F172A;
}
.pp-oos-footer {
text-align: center;
padding-top: 16px;
border-top: 1px solid rgba(16, 185, 129, 0.1);
}
.pp-oos-link {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 14px;
font-weight: 700;
color: #10B981;
text-decoration: none !important;
transition: all 0.2s;
padding: 8px 16px;
border-radius: 8px;
}
.pp-oos-link:hover {
color: #059669;
gap: 14px;
background: rgba(16, 185, 129, 0.05);
} .product-description.prose {
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.85;
color: #4B5563; max-width: 800px;
}
.product-description.prose h2 {
font-family: 'Poppins', sans-serif;
font-weight: 800;
font-size: 24px;
color: #111827;
margin-top: 40px;
margin-bottom: 16px;
padding-bottom: 8px;
border-bottom: 2px solid #F3F4F6;
}
.product-description.prose h3 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 18px;
color: #1F2937;
margin-top: 32px;
margin-bottom: 12px;
padding-left: 14px;
border-left: 3px solid #C5A065;
line-height: 1.4;
}
.product-description.prose p {
margin-bottom: 20px;
}
.product-description.prose strong {
color: #111827;
font-weight: 700;
}
.product-description.prose ul {
list-style: disc;
padding-left: 20px;
margin-bottom: 20px;
}
.product-description.prose li {
margin-bottom: 8px;
padding-left: 4px;
} .pp-gallery-slider {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
gap: 0;
}
.pp-gallery-slider::-webkit-scrollbar {
display: none; }
.pp-slider-arrow {
width: 36px;
height: 36px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
cursor: pointer;
transition: all 0.2s;
border: none;
opacity: 0; } @media (min-width: 1024px) {
.product-gallery:hover .pp-slider-arrow {
opacity: 1;
}
}
.pp-slider-arrow:hover {
background: #fff;
transform: translateY(-50%) scale(1.1);
}
.pp-slider-arrow.pp-prev {
left: 10px;
}
.pp-slider-arrow.pp-next {
right: 10px;
} .pp-zoom-trigger {
position: absolute;
bottom: 20px;
right: 20px;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.9);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
opacity: 0;
transition: all 0.2s;
cursor: pointer;
z-index: 20;
}
@media (min-width: 1024px) {
.product-gallery:hover .pp-zoom-trigger {
opacity: 1;
}
} #reviews {
background: #fff;
border-radius: 16px;
padding: 30px;
border: 1px solid #F3F4F6;
margin-top: 40px;
}
#reviews h2 {
font-size: 20px;
font-weight: 700;
margin-bottom: 24px;
}
.commentlist {
list-style: none;
padding: 0;
margin: 0;
}
.commentlist li {
margin-bottom: 24px;
padding-bottom: 24px;
border-bottom: 1px solid #F3F4F6;
}
.comment_container {
display: flex;
gap: 20px;
}
.avatar {
width: 48px;
height: 48px;
border-radius: 50%;
background: #F9FAFB;
}
.comment-text {
flex: 1;
}
.star-rating {
color: #F59E0B; font-size: 14px;
margin-bottom: 8px;
}
.meta {
font-size: 12px;
color: #9CA3AF;
margin-bottom: 8px;
display: block;
}
.description {
font-size: 14px;
color: #4B5563;
line-height: 1.6;
}   .product-description.prose {
font-size: 15px;
line-height: 1.85;
color: #4b5563;
letter-spacing: -0.01em;
} .product-description.prose h2 {
font-family: var(--font-heading, 'Poppins', sans-serif);
font-size: 1.5rem;
font-weight: 800;
color: #1a1a1a;
margin: 2.5rem 0 1rem;
padding-bottom: 0.6rem;
border-bottom: 2px solid #f3f4f6;
line-height: 1.3;
letter-spacing: -0.02em;
}
.product-description.prose h2:first-child {
margin-top: 0;
}
.product-description.prose h3 {
font-family: var(--font-heading, 'Poppins', sans-serif);
font-size: 1.15rem;
font-weight: 700;
color: #1a1a1a;
margin: 2rem 0 0.75rem;
padding-left: 14px;
border-left: 3px solid #C5A065;
line-height: 1.4;
}
.product-description.prose h4 {
font-family: var(--font-heading, 'Poppins', sans-serif);
font-size: 1rem;
font-weight: 700;
color: #374151;
margin: 1.5rem 0 0.5rem;
text-transform: uppercase;
letter-spacing: 0.03em;
} .product-description.prose p {
margin: 0 0 1.25rem;
color: #4b5563;
}
.product-description.prose>p:first-child,
.product-description.prose>p:first-of-type {
font-size: 16px;
color: #374151;
font-weight: 500;
line-height: 1.8;
} .product-description.pp-safety-nudge strong {
font-weight: 700;
color: #14532d;
}  .pp-specs-icons-row {
display: flex;
flex-wrap: nowrap; overflow-x: auto; gap: 8px; margin-top: 20px;
margin-bottom: 5px;
border-top: 1px solid #f3f3f3;
padding-top: 15px;
scrollbar-width: none; }
.pp-specs-icons-row::-webkit-scrollbar {
display: none;
}
.pp-spec-icon-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
gap: 4px; text-align: center;
color: #555;
flex: 0 0 auto; min-width: 48px; }
.pp-spec-icon-item small {
font-size: 9px; line-height: 1.1;
max-width: 60px; display: block;
}
.pp-spec-icon-item svg {
display: block;
margin: 0 auto;
} .product-description.prose ul,
.product-description.prose ol {
margin: 1rem 0 1.5rem;
padding-left: 0;
list-style: none;
}
.product-description.prose ul li {
position: relative;
padding: 0.6rem 0 0.6rem 28px;
border-bottom: 1px solid #f9fafb;
line-height: 1.7;
}
.product-description.prose ul li:last-child {
border-bottom: none;
}
.product-description.prose ul li::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 8px;
height: 8px;
background: linear-gradient(135deg, #C5A065, #d4b682);
border-radius: 2px;
rotate: 45deg;
}
.product-description.prose ol {
counter-reset: prose-counter;
padding-left: 0;
}
.product-description.prose ol li {
position: relative;
padding: 0.6rem 0 0.6rem 36px;
border-bottom: 1px solid #f9fafb;
line-height: 1.7;
counter-increment: prose-counter;
}
.product-description.prose ol li:last-child {
border-bottom: none;
}
.product-description.prose ol li::before {
content: counter(prose-counter);
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 24px;
height: 24px;
background: #f8f5f0;
border: 1px solid #e8e0d4;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-size: 11px;
font-weight: 800;
color: #C5A065;
line-height: 24px;
text-align: center;
} .product-description.prose blockquote {
margin: 1.5rem 0;
padding: 1.25rem 1.5rem;
background: linear-gradient(135deg, #fefce8, #fffbeb);
border-left: 4px solid #C5A065;
border-radius: 0 12px 12px 0;
font-style: italic;
color: #92400e;
}
.product-description.prose blockquote p {
margin: 0;
color: inherit;
} .product-description.prose hr {
border: none;
height: 1px;
background: linear-gradient(to right, transparent, #e5e7eb, transparent);
margin: 2rem 0;
} .product-description.prose a {
color: #C5A065;
text-decoration: underline;
text-decoration-color: rgba(197, 160, 101, 0.3);
text-underline-offset: 3px;
font-weight: 600;
transition: all 0.2s;
}
.product-description.prose a:hover {
color: #a8864e;
text-decoration-color: #C5A065;
} .product-description.prose table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
font-size: 14px;
border-radius: 12px;
overflow: hidden;
border: 1px solid #e5e7eb;
}
.product-description.prose th {
background: #f9fafb;
font-weight: 700;
color: #1a1a1a;
text-align: left;
padding: 12px 16px;
border-bottom: 2px solid #e5e7eb;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.product-description.prose td {
padding: 10px 16px;
border-bottom: 1px solid #f3f4f6;
color: #4b5563;
}
.product-description.prose tr:last-child td {
border-bottom: none;
}
.product-description.prose tr:hover td {
background: #fafafa;
} .product-description.prose img {
border-radius: 12px;
margin: 1.5rem 0;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
max-width: 100%;
height: auto;
} .product-description.prose code {
background: #f3f4f6;
padding: 2px 6px;
border-radius: 4px;
font-size: 0.9em;
color: #c2410c;
font-weight: 600;
} @media (max-width: 768px) {
.product-description.prose {
font-size: 14px;
line-height: 1.75;
}
.product-description.prose h2 {
font-size: 1.3rem;
margin: 2rem 0 0.75rem;
}
.product-description.prose h3 {
font-size: 1.05rem;
}
.product-description.prose>p:first-child,
.product-description.prose>p:first-of-type {
font-size: 15px;
}
}  form.cart {
display: flex;
gap: 15px;
align-items: stretch; flex-wrap: wrap;
} .pp-std-qty-wrapper {
display: flex;
align-items: center;
border: 2px solid #e5e7eb;
border-radius: 12px;
overflow: hidden;
height: 50px; width: 140px;
background: #fff;
flex-shrink: 0;
}
.pp-qty-btn {
width: 40px;
height: 100%;
background: #f9fafb;
border: none;
color: #6b7280;
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
}
.pp-qty-btn:hover {
background: #f3f4f6;
color: var(--pp-primary);
}
.pp-std-qty-wrapper input[type="number"] {
width: 60px;
border: none;
text-align: center;
font-weight: bold;
font-size: 1rem;
height: 100%;
margin: 0;
padding: 0;
-moz-appearance: textfield;
appearance: none;
appearance: none;
}
.pp-std-qty-wrapper input[type="number"]::-webkit-outer-spin-button,
.pp-std-qty-wrapper input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
} button.single_add_to_cart_button {
height: 50px !important;
border-radius: 12px !important;
padding: 0 30px !important;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
} @media (max-width: 768px) {
form.cart {
flex-direction: row;
align-items: center;
}
.pp-std-qty-wrapper {
flex: 1;
max-width: 120px;
}
button.single_add_to_cart_button {
flex: 2;
}
}  @media (max-width: 767px) {
.pp-specs-icons-row {
display: flex !important;
flex-wrap: nowrap !important;
overflow-x: auto !important;
-webkit-overflow-scrolling: touch;
align-items: flex-start;
gap: 12px;
padding-bottom: 5px; padding-right: 15px; width: 100%;
} .pp-specs-icons-row::-webkit-scrollbar {
display: none;
}
.pp-spec-icon-item {
flex: 0 0 auto !important; width: auto !important;
max-width: none !important;
text-align: center;
}
.pp-spec-icon-item .inline-flex {
display: inline-flex;
margin-bottom: 4px;
}
.pp-spec-icon-item small {
display: block;
white-space: nowrap;
font-size: 10px;
line-height: 1.2;
}
}   .pp-ref-top-info {
margin-bottom: 24px;
padding-bottom: 16px;
border-bottom: 1px solid #F1F5F9; }
.pp-ref-meta-row {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.pp-ref-badge {
background-color: #ECFDF5; color: #047857; font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 6px 10px;
border-radius: 6px;
line-height: 1;
}
.pp-ref-rating {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
font-weight: 600;
color: #475569; }
.pp-ref-rating .score {
color: #1E293B; font-weight: 800;
}
.pp-ref-rating .count {
color: #94A3B8; font-weight: 500;
}
.pp-ref-title {
font-family: 'Manrope', sans-serif;
font-size: 26px; font-weight: 800;
color: #0F172A; line-height: 1.2;
margin: 0;
letter-spacing: -0.02em;
} @media (max-width: 768px) {
.pp-ref-title {
font-size: 22px;
}
} .pp-ref-specs-strip {
background-color: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 12px;
padding: 12px 16px;
margin-bottom: 24px;
display: flex;
flex-direction: column;
gap: 10px;
}
.pp-specs-label {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
color: #94A3B8; letter-spacing: 0.05em;
}
.pp-specs-grid {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.pp-spec-box {
width: 40px;
height: 40px; background: #ffffff;
border: 1px solid #F1F5F9; border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
transition: transform 0.2s, border-color 0.2s;
color: #334155; }
.pp-spec-box:hover {
transform: translateY(-1px);
border-color: #cbd5e1;
color: #0f172a;
} .pp-pack-info-text {
font-size: 12px;
color: #64748B; text-align: center;
margin-top: 10px;
font-weight: 500;
} input[type=number] {
-moz-appearance: textfield;
appearance: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}  .pp-calculator-module {
background: transparent;
box-shadow: none;
padding: 0;
margin-bottom: 30px;
max-width: 100%; } .pp-separate-box {
margin-bottom: 12px; background-color: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 12px;
padding: 8px 16px; display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap; gap: 12px;
flex-direction: row; }
.pp-specs-wrapper-full {
display: flex;
flex-wrap: wrap;
gap: 8px; } .pp-separate-box .pp-spec-box {
width: 36px;
height: 36px;
background: #ffffff;
border: 1px solid #F1F5F9;
box-shadow: none; }
.pp-delivery-badge-abs {
display: flex;
align-items: center;
gap: 8px;
margin-left: auto;
} .pp-calculator-card {
background: #ffffff;
border: 1px solid #F1F5F9; border-radius: 16px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
overflow: hidden;
} .pp-input-bar-grey {
background-color: #F8FAFC; border: 1px solid #E2E8F0; border: 1px solid #E2E8F0; border-radius: 8px; height: 54px; display: flex;
align-items: center;
justify-content: space-between;
padding: 0 10px;
margin-bottom: 10px; position: relative;
}
.pp-input-bar-grey .pp-input-btn {
width: 40px;
height: 40px;
background: transparent;
color: #94A3B8; border: none;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s;
}
.pp-input-bar-grey .pp-input-btn:hover {
background: #F1F5F9; color: #1E293B; }
.pp-input-bar-grey input.pp-main-input {
flex-grow: 1;
background: transparent;
border: none;
text-align: center;
font-family: 'Manrope', sans-serif;
font-size: 28px; font-weight: 700;
color: #1E293B; padding: 0;
margin: 0;
height: 100%;
outline: none; }
.pp-input-bar-grey .pp-unit-group-simple {
display: flex;
align-items: center;
gap: 8px;
}
.pp-unit-label {
font-size: 16px;
font-weight: 600;
color: #64748B; text-transform: lowercase; } .pp-expert-toggle {
background-color: #ECFDF5; border: 1px solid #A7F3D0; border-radius: 12px;
padding: 8px 12px;
margin-bottom: 10px;
} .pp-calc-body {
padding: 16px; }
@media (max-width: 600px) {
.pp-calc-body {
padding: 16px;
}
}  .tech-strip {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px;
background-color: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px;
margin: 20px 0;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
font-family: 'Inter', sans-serif;
width: 100%;
}
.tech-icons-left {
display: flex;
align-items: center;
gap: 8px;
}
.tech-icon-box {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 40px; height: 40px;
border-radius: 6px;
color: #94A3B8; transition: all 0.2s ease;
cursor: help;
}
.tech-icon-box svg {
width: 20px;
height: 20px;
stroke-width: 1.5;
} .tech-icon-box:hover {
background-color: #FFFFFF;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
transform: translateY(-1px);
} .tech-icon-box.heat:hover {
color: #D97706;
} .tech-icon-box.water:hover {
color: #2563EB;
} .tech-icon-box.shield:hover {
color: #059669;
}  .tech-tooltip {
visibility: hidden;
opacity: 0;
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
margin-bottom: 12px;
background-color: #1E293B; color: #fff;
padding: 6px 10px;
border-radius: 6px;
font-size: 11px;
white-space: nowrap;
font-weight: 500;
z-index: 10;
transition: opacity 0.2s;
pointer-events: none;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.tech-tooltip::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -4px;
border-width: 4px;
border-style: solid;
border-color: #1E293B transparent transparent transparent;
}
.tech-icon-box:hover .tech-tooltip {
visibility: visible;
opacity: 1;
}
.tech-label {
font-size: 10px;
color: #94A3B8;
font-weight: 500;
margin-left: 4px;
} .tech-logistics {
display: flex;
align-items: center;
gap: 12px;
padding-left: 16px;
border-left: 1px solid #E2E8F0;
}
.logistics-text {
text-align: right;
line-height: 1;
}
.log-main {
font-size: 10px;
font-weight: 700;
color: #0F172A; display: block;
}
.log-sub {
font-size: 9px;
font-weight: 500;
color: #64748B; margin-top: 4px;
display: block;
}
.pulsing-dot {
position: relative;
width: 12px;
height: 12px;
display: flex;
}
.ping {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #34D399;
opacity: 0.75;
animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.dot {
position: relative;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #10B981;
border: 1px solid #fff;
}
@keyframes ping {
75%,
100% {
transform: scale(2);
opacity: 0;
}
} @media (max-width: 600px) {
.tech-icon-box {
width: 36px;
height: 36px;
}
.tech-label {
display: none;
}
} .pp-input-bar-grey input.pp-main-input {
font-size: 24px !important; } .pp-summary-dark {
background-color: #0F172A !important;
color: #fff;
border-radius: 12px; } .pp-summary-dark button.single_add_to_cart_button,
button.single_add_to_cart_button.pp-green-cta {
background-color: #059669 !important; border-color: #059669 !important;
color: #ffffff !important;
font-weight: 700 !important;
border-radius: 8px !important;
padding: 12px 24px !important;
transition: all 0.3s ease !important;
width: 100%; display: flex; align-items: center;
justify-content: space-between; }
.pp-summary-dark button.single_add_to_cart_button:hover {
background-color: #047857 !important; border-color: #047857 !important;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
} .pp-tabs-wrapper {
display: flex;
border-bottom: 1px solid #f1f5f9;
}
.pp-tab-trigger {
flex: 1;
text-align: center;
padding: 10px; font-size: 13px;
font-weight: 600;
cursor: pointer;
color: #64748b;
transition: all 0.2s;
background: #fff;
}
.pp-tab-trigger:hover {
background: #f8fafc;
color: #334155;
}
.pp-tab-trigger.active {
color: #059669; border-bottom: 2px solid #059669; background: #ecfdf5; } .pp-summary-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 16px 8px 16px; position: relative;
}
.pp-compact-waste-btn {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
background: transparent;
border: 1px solid #10B981; border-radius: 6px;
cursor: pointer;
font-size: 11px;
font-weight: 700;
color: #10B981;
transition: all 0.2s;
user-select: none;
}
.pp-compact-waste-btn:hover {
background: rgba(16, 185, 129, 0.1);
}
.pp-compact-waste-btn.active {
background: #10B981;
color: #fff;
}
.pp-compact-waste-btn .pp-waste-icon {
display: none; }
.pp-compact-waste-btn.active .pp-waste-icon {
display: flex;
} .pp-expert-toggle {
display: none;
} .pp-summary-details {
display: flex;
flex-direction: column;
}
.pp-summary-label {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #94A3B8;
margin-bottom: 2px;
}
.pp-summary-value {
font-size: 18px;
font-weight: 700;
color: #fff;
display: flex;
align-items: baseline;
}
.pp-card-icons {
position: absolute;
top: 10px;
right: 10px;
z-index: 20;
display: flex;
flex-direction: column;
gap: 6px;
pointer-events: none; }
.pp-card-icon {
pointer-events: auto; width: 30px;
height: 30px;
background: rgba(255, 255, 255, 0.95);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
color: #334155;
transition: transform 0.2s;
cursor: help;
}
.pp-card-icon:hover {
transform: scale(1.15);
background: #ffffff;
color: #0f172a;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.pp-card-icon svg {
width: 16px;
height: 16px;
stroke-width: 2px;
} .pp-tabs-wrapper {
display: flex;
border-bottom: 1px solid #f1f5f9;
}
.pp-tab-trigger {
flex: 1;
text-align: center;
padding: 10px; font-size: 13px;
font-weight: 600;
cursor: pointer;
color: #64748b;
transition: all 0.2s;
background: #fff;
}
.pp-tab-trigger:hover {
background: #f8fafc;
color: #334155;
}
.pp-tab-trigger.active {
color: #059669; border-bottom: 2px solid #059669; background: #ecfdf5; }
.pp-card-icon svg {
width: 16px;
height: 16px;
stroke-width: 2px;
}  .pp-1to1-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 20px 24px 12px;
}
.pp-1to1-title {
font-family: 'Manrope', sans-serif;
font-size: 20px;
font-weight: 800;
line-height: 1.2;
color: #1e293b;
margin: 0;
}
.pp-1to1-tags {
display: flex;
gap: 8px;
margin-top: 6px;
}
.pp-tag-gray,
.pp-tag-text {
font-size: 11px;
font-weight: 600;
padding: 2px 6px;
border-radius: 4px;
background: #f1f5f9;
color: #64748b;
}
.pp-1to1-price-col {
text-align: right;
}
.pp-1to1-price-main {
font-size: 20px;
font-weight: 800;
color: #1e293b;
}
.pp-1to1-price-main bdi {
display: flex;
flex-direction: column;
align-items: flex-end;
line-height: 1;
}
.pp-1to1-price-sub {
font-size: 11px;
color: #94a3b8;
margin-top: 2px;
} .pp-1to1-avail-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 24px 16px;
font-size: 12px;
}
.pp-avail-badge {
display: flex;
align-items: center;
gap: 6px;
color: #059669; font-weight: 600;
}
.pp-dot-green {
width: 8px;
height: 8px;
background-color: #059669;
border-radius: 50%;
}
.pp-ship-text {
color: #64748b;
}
.pp-ship-text strong {
color: #1e293b;
} .pp-tabs-segmented {
padding: 0 24px 8px;
}
.pp-tab-grad-box {
background: #f1f5f9;
padding: 4px;
border-radius: 8px;
display: flex;
}
.pp-tab-trigger {
flex: 1;
text-align: center;
padding: 8px 12px;
font-size: 13px;
font-weight: 600;
color: #64748b;
border-radius: 6px;
cursor: pointer;
transition: all 0.2s;
}
.pp-tab-trigger.active {
background: #ffffff;
color: #1e293b;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
} .pp-input-clean-row {
display: flex;
align-items: center;
justify-content: space-between;
background: #ffffff; padding: 10px 0;
}
.pp-clean-btn {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #e2e8f0;
background: #fff;
border-radius: 8px;
cursor: pointer;
color: #64748b;
transition: all 0.2s;
}
.pp-clean-btn:hover {
border-color: #cbd5e1;
color: #1e293b;
}
.pp-input-wrap {
display: flex;
align-items: baseline;
gap: 4px;
}
.pp-clean-input {
width: 60px; border: none;
background: transparent;
font-size: 28px !important; font-weight: 700;
color: #1e293b;
text-align: right;
padding: 0;
margin: 0;
height: auto; outline: none !important;
box-shadow: none !important;
} .pp-clean-input::-webkit-outer-spin-button,
.pp-clean-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.pp-clean-unit {
font-size: 14px;
color: #94a3b8;
font-weight: 500;
} .pp-summary-dark {
background: #0f172a; border-radius: 0 0 12px 12px;
padding: 20px;
margin-top: 0;
}
.pp-summary-row-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 20px;
}
.pp-sum-left {
display: flex;
gap: 12px;
}
.pp-sum-icon-box {
padding-top: 4px; }
.pp-sum-text-col {
display: flex;
flex-direction: column;
}
.pp-sum-label {
font-size: 10px;
text-transform: uppercase;
color: #64748b; font-weight: 700;
letter-spacing: 0.5px;
margin-bottom: 2px;
}
.pp-sum-value {
font-size: 16px;
color: #fff;
font-weight: 400;
}
.pp-sum-value strong {
font-size: 18px;
font-weight: 700;
color: #fff;
}
.pp-sum-sub {
color: #475569;
} .pp-waste-1to1-group {
display: flex;
align-items: center;
gap: 12px;
cursor: pointer; }
.pp-waste-text-col {
text-align: right;
}
.pp-waste-highlight {
font-size: 12px;
font-weight: 700;
color: #fbbf24 !important;
}
.pp-waste-sub {
font-size: 10px;
color: #64748b;
}
.pp-waste-checkbox {
width: 20px;
height: 20px;
border: 2px solid #334155; border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.pp-waste-checkbox.active {
background: #059669; border-color: #059669;
} .pp-waste-checkbox.active::after {
content: '';
width: 5px;
height: 9px;
border: solid white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
margin-top: -2px;
} .pp-1to1-footer {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 4px 0;
margin-top: 16px;
font-size: 11px;
color: #64748b;
}
.pp-1to1-footer span,
.pp-1to1-footer__link {
display: inline-flex;
align-items: center;
color: #64748b;
} .pp-1to1-footer__link {
text-decoration: none;
cursor: pointer;
transition: color .15s ease;
}
.pp-1to1-footer__link:hover,
.pp-1to1-footer__link:focus {
color: #10b981;
text-decoration: none;
outline: none;
}  .product-container .row,
.product-page .row {
max-width: 1400px !important;
} .pp-1to1-price-col {
position: relative;
padding-left: 24px;
margin-left: 12px;
} .pp-1to1-price-col::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
height: 40px; width: 1px;
background-color: #e2e8f0; } .pp-1to1-price-main {
display: flex;
align-items: baseline; justify-content: flex-end; gap: 4px;
flex-wrap: wrap; } .pp-1to1-price-main .woocommerce-Price-amount {
line-height: 1;
}
.pp-unit-inline {
font-size: 14px; font-weight: 600;
color: #64748b; align-self: baseline;
} .pp-1to1-price-sub {
font-size: 12px;
color: #94a3b8;
margin-top: 2px;
text-align: right;
}  .product-small .box-image .image-tools {
top: auto !important;
bottom: 10px !important;
right: 10px !important;
left: auto !important;
margin: 0 !important; z-index: 20;
}     @media (max-width: 849px) {
.pp-desktop-wrapper {
display: none !important;
}
} @media (min-width: 850px) {
.pp-mobile-sticky-bar {
display: none !important;
}
.pp-desktop-sticky-wrapper {
position: sticky;
top: 110px;
z-index: 20;
}
} .product-gallery {
margin-bottom: 30px !important;
}
@media (min-width: 850px) {
.product-gallery {
margin-bottom: 40px !important;
padding-right: 30px !important;
}
}  .pp-reviews-wrapper {
margin-top: 5rem;
padding-top: 5rem;
border-top: 1px solid #f1f5f9;
}
.pp-reviews-grid {
display: flex;
flex-direction: column;
gap: 4rem;
} .pp-reviews-summary-card {
background: #ffffff !important;
border: 1px solid #f1f5f9 !important;
border-radius: 32px !important;
padding: 2.5rem !important;
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03) !important;
display: flex !important;
flex-direction: row !important;
flex-wrap: nowrap !important;
gap: 2rem !important;
align-items: center !important;
width: 100% !important;
box-sizing: border-box !important;
}
@media (max-width: 900px) {
.pp-reviews-summary-card {
flex-direction: column !important;
text-align: center !important;
padding: 2rem !important;
}
} .pp-summary-stats-block {
display: flex;
flex-direction: column;
align-items: center;
flex: 0 0 140px;
}
.pp-summary-score-big {
font-size: 5.5rem;
font-weight: 800;
color: #0f172a;
line-height: 1;
margin-bottom: 0.5rem;
font-family: 'Manrope', sans-serif;
letter-spacing: -4px;
}
.pp-summary-stars {
margin-bottom: 0.75rem;
font-size: 1.25rem;
}
.pp-summary-count {
font-size: 0.8125rem;
color: #94a3b8;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
} .pp-rating-bars {
flex: 1 1 auto !important;
display: flex !important;
flex-direction: column !important;
gap: 0.75rem !important;
padding: 0 2rem !important;
border-left: 1px solid #f1f5f9 !important;
border-right: none !important;
min-width: 0 !important;
}
@media (max-width: 1100px) {
.pp-rating-bars {
border: none;
padding: 0;
max-width: 500px;
margin: 0 auto;
width: 100%;
}
}
.pp-bar-row {
display: grid !important;
grid-template-columns: 85px 1fr 30px !important;
align-items: center !important;
gap: 1rem !important;
width: 100% !important;
}
.pp-bar-label {
font-weight: 700 !important;
color: #64748b !important;
white-space: nowrap !important;
font-size: 0.75rem !important;
}
.pp-bar-track {
height: 8px !important;
background: #f1f5f9 !important;
border-radius: 99px !important;
overflow: hidden !important;
width: 100% !important;
}
.pp-bar-fill {
height: 100%;
background: #10B981; border-radius: 99px;
transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pp-bar-count {
width: 30px;
text-align: right;
font-weight: 800;
color: #cbd5e1;
} .pp-summary-action-block {
display: flex;
justify-content: center;
flex: 0 0 180px;
}
.pp-add-review-btn {
width: auto;
padding: 1rem 2rem;
background: #0f172a;
color: #fff;
border-radius: 12px;
font-size: 0.875rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.05em;
transition: all 0.4s;
border: none;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.5rem;
}
.pp-add-review-btn:hover {
background: #10B981;
transform: translateY(-4px) scale(1.02);
box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.3);
} .pp-reviews-list-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 3rem;
padding-bottom: 1.5rem;
border-bottom: 2px solid #f8fafc;
}
.pp-reviews-list-title {
font-size: 1.75rem;
font-weight: 800;
color: #0f172a;
letter-spacing: -0.5px;
}
.pp-reviews-list-title span {
color: #10B981;
}
.pp-reviews-filter select {
border: 1px solid #f1f5f9 !important;
border-radius: 10px !important;
padding: 0.5rem 1rem !important;
font-size: 0.75rem !important;
font-weight: 800 !important;
color: #0f172a !important;
text-transform: uppercase !important;
letter-spacing: 0.05em !important;
cursor: pointer !important;
background: #f8fafc !important;
background-image: none !important; -webkit-appearance: none !important;
-moz-appearance: none !important;
appearance: none !important;
}
.pp-reviews-filter select:hover {
border-color: #10B981;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
} .pp-comment-list {
display: grid !important;
grid-template-columns: 1fr !important; gap: 24px !important;
padding: 0 !important;
margin: 0 !important;
}
@media (max-width: 900px) {
.pp-comment-list {
grid-template-columns: 1fr !important;
gap: 20px !important;
}
}
.pp-review-item {
margin: 0 !important;
list-style: none !important;
}
.pp-review-card {
height: 100%;
background: #fff;
border: 1px solid #f1f5f9;
border-radius: 24px;
padding: 2.5rem;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
}
.pp-review-card:hover {
border-color: #10B981;
transform: translateY(-8px);
box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.12);
}
.pp-reviewer-name {
font-size: 1.125rem;
font-weight: 800;
color: #0f172a;
margin-bottom: 0.25rem;
}
.pp-verified-badge {
box-shadow: 0 2px 4px rgba(16, 185, 129, 0.1);
}
.pp-review-date {
font-weight: 600 !important;
color: #cbd5e1 !important;
}
.pp-review-content {
font-size: 1rem !important;
color: #475569 !important;
line-height: 1.8 !important;
flex-grow: 1;
}
.pp-review-stars {
filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.2));
} .pp-review-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1rem;
}
.pp-review-author-meta {
display: flex;
flex-direction: column;
}
.pp-verified-badge {
display: inline-flex;
align-items: center;
gap: 0.375rem;
font-size: 10px;
color: #059669;
background: #ecfdf5;
padding: 2px 8px;
border-radius: 99px;
text-transform: uppercase;
font-weight: 800;
margin-left: 8px;
} .pp-modal-overlay {
position: fixed;
inset: 0;
background: rgba(15, 23, 42, 0.6);
backdrop-filter: blur(8px);
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
padding: 1.5rem;
}
.pp-modal-overlay.is-active {
opacity: 1;
visibility: visible;
}
.pp-modal-container {
background: #fff;
width: 100%;
max-width: 600px;
max-height: 90vh;
border-radius: 32px;
position: relative;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
overflow: hidden;
transform: scale(0.9) translateY(20px);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
display: flex;
flex-direction: column;
}
.pp-modal-overlay.is-active .pp-modal-container {
transform: scale(1) translateY(0);
}
.pp-modal-header {
padding: 2rem 2.5rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #f1f5f9;
}
.pp-modal-close {
width: 40px;
height: 40px;
border-radius: 12px;
background: #f8fafc;
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: #64748b;
transition: all 0.2s;
}
.pp-modal-close:hover {
background: #fee2e2;
color: #ef4444;
}
.pp-modal-body {
padding: 2.5rem;
overflow-y: auto;
flex: 1;
display: flex;
flex-direction: column;
gap: 2rem;
} .pp-modal-body .stars,
.pp-modal-body .star-rating,
.pp-modal-body .comment-notes,
.pp-modal-body .logged-in-as {
display: none !important;
}
.pp-form-title {
font-size: 1.5rem;
font-weight: 800;
color: #1e293b;
margin-bottom: 0.5rem;
letter-spacing: -0.5px;
}
.pp-form-subtitle {
font-size: 0.875rem;
color: #64748b;
margin-bottom: 2rem;
} .comment-form-rating {
background: #f8fafc;
padding: 1.5rem;
border-radius: 20px;
margin-bottom: 2rem;
border: 1px solid #f1f5f9;
}
.pp-stars-input {
display: flex;
gap: 8px;
justify-content: center;
}
.pp-star-item {
cursor: pointer;
font-size: 2.5rem;
color: #e2e8f0;
transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pp-star-item.active {
color: #10B981;
}
.pp-star-item:hover {
transform: scale(1.2);
color: #10B981;
} .pp-modal-body .comment-form label {
display: block;
font-size: 0.8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #94a3b8;
margin-bottom: 0.5rem;
padding-left: 0.25rem;
}
.pp-modal-body input[type="text"],
.pp-modal-body input[type="email"],
.pp-modal-body textarea {
width: 100%;
background: #fff;
border: 2px solid #f1f5f9;
border-radius: 16px;
padding: 1rem 1.25rem;
font-size: 0.9375rem;
color: #1e293b;
transition: all 0.3s;
font-family: inherit;
}
.pp-modal-body input:focus,
.pp-modal-body textarea:focus {
border-color: #C5A065;
background: #fff;
box-shadow: 0 0 0 4px rgba(197, 160, 101, 0.1);
outline: none;
}
.pp-modal-body .form-submit {
margin-top: 1rem;
}
.pp-modal-body .submit {
width: 100%;
padding: 1.25rem;
background: #10B981;
color: #fff;
border-radius: 16px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.1em;
transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
border: none;
cursor: pointer;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}
.pp-modal-body .submit:hover {
background: #059669;
box-shadow: 0 10px 20px -3px rgba(5, 150, 105, 0.3);
transform: translateY(-2px);
}
.pp-modal-body .submit:active {
transform: scale(0.97);
} @media (max-width: 768px) {
.pp-modal-overlay {
padding: 0;
align-items: flex-end;
}
.pp-modal-container {
max-height: 85vh;
border-radius: 32px 32px 0 0;
transform: translateY(100%);
}
.pp-modal-overlay.is-active .pp-modal-container {
transform: translateY(0);
}
.pp-modal-body {
padding: 1.5rem;
}
.pp-reviews-summary-card {
position: static;
padding: 1.5rem;
}
.pp-review-card {
padding: 1.5rem;
}
}  .product-container .pp-essentials-box {
border: 1px solid #e2e8f0;
border-radius: 12px;
background: #fff;
margin-bottom: 12px; margin-top: 0;
overflow: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} .pp-purchase-section-wrapper {
margin-bottom: 6px !important;
}
.product-container .pp-essentials-trigger {
padding: 14px 18px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
background: #f8fafc;
border-bottom: 1px solid transparent;
transition: background 0.2s;
}
.product-container .pp-essentials-trigger:hover {
background: #f1f5f9;
} @media (min-width: 1025px) {
.product-container .pp-essentials-box:hover .pp-essentials-body {
max-height: 2000px;
opacity: 1;
border-top: 1px solid #f1f5f9;
visibility: visible;
}
.product-container .pp-essentials-box:hover .pp-chevron {
transform: rotate(180deg);
color: #10b981 !important; }
} .product-container .pp-essentials-box svg.pp-header-icon,
.product-container .pp-essentials-box .pp-essentials-trigger svg:not(.pp-chevron) {
width: 16px !important;
height: 16px !important;
min-width: 16px !important;
min-height: 16px !important;
max-width: 16px !important;
max-height: 16px !important;
color: #94a3b8 !important;
display: inline-block !important;
flex-shrink: 0 !important;
}
.product-container .pp-essentials-box .pp-chevron {
width: 14px !important;
height: 14px !important;
min-width: 14px !important;
min-height: 14px !important;
color: #cbd5e1 !important;
transition: transform 0.3s;
flex-shrink: 0 !important;
}
.pp-essentials-box.is-open .pp-chevron {
transform: rotate(180deg);
color: #10b981 !important; }
.product-container .pp-essentials-title {
font-size: 13.5px !important;
font-weight: 800 !important;
text-transform: uppercase !important;
letter-spacing: 0.05em !important;
color: #1e293b !important;
margin: 0 !important;
line-height: 1 !important;
}
.product-container .pp-recommended-badge {
font-size: 10px !important;
font-weight: 800 !important;
text-transform: uppercase !important;
background: #ecfdf5 !important; color: #059669 !important; border: 1px solid #a7f3d0 !important;
padding: 3px 10px !important;
border-radius: 999px !important;
line-height: 1 !important;
margin-right: 8px !important;
} .pp-essentials-body {
max-height: 0;
opacity: 0;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pp-essentials-box.is-open .pp-essentials-body {
max-height: 2000px;
opacity: 1;
border-top: 1px solid #f1f5f9;
} .pp-essentials-body-inner {
padding: 16px;
}
.pp-essentials-body-inner .row-small {
margin-left: -6px !important;
margin-right: -6px !important;
}
.js-cs-item {
background: #fff;
border: 1px solid #f1f5f9;
border-radius: 12px;
padding: 14px;
height: 100%;
display: flex;
flex-direction: column;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-cs-item:hover {
border-color: #10b981; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}
.pp-cs-item-thumb img {
width: 44px !important;
height: 44px !important;
object-fit: cover !important;
border-radius: 6px !important;
}
.pp-cs-item-title {
font-size: 11px !important;
font-weight: 700 !important;
color: #1e293b !important;
line-height: 1.3 !important;
height: 2.6em;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
margin-bottom: 4px !important;
}
.pp-cs-item-price {
font-size: 14px !important;
font-weight: 800 !important;
color: #10b981 !important; } .pp-cs-qty-selector {
display: flex;
align-items: center;
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 999px;
height: 36px;
margin-top: 10px;
padding: 3px;
overflow: visible;
gap: 4px;
}
.pp-cs-qty-btn {
width: 28px !important;
height: 28px !important;
border-radius: 50% !important;
border: 1px solid #e2e8f0 !important;
background: #ffffff !important;
color: #475569 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-size: 15px !important;
font-weight: 700 !important;
cursor: pointer !important;
transition: all 0.15s ease !important;
padding: 0 !important;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
flex-shrink: 0 !important;
line-height: 1 !important;
}
.pp-cs-qty-btn:hover {
background: #f8fafc !important;
border-color: #10b981 !important;
color: #059669 !important;
box-shadow: 0 2px 6px rgba(16, 185, 129, 0.15) !important;
}
.pp-cs-qty-btn:active {
transform: scale(0.88) !important;
background: #ecfdf5 !important;
}
.pp-cs-qty-input {
width: 32px !important;
background: transparent !important;
border: none !important;
text-align: center !important;
font-size: 11px !important;
font-weight: 800 !important;
color: #1e293b !important;
padding: 0 !important;
}
.pp-cs-add-btn {
height: 36px !important;
min-width: 36px !important;
background: #059669 !important;
color: #fff !important;
border-radius: 10px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
margin-left: 6px !important;
margin-top: 10px !important;
flex: 0 0 36px !important;
box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2) !important;
cursor: pointer !important;
}
.pp-cs-add-btn:active {
transform: scale(0.9) !important;
}
.pp-cs-add-btn:hover {
background: #10b981 !important; transform: translateY(-1px);
}
.pp-cs-add-btn svg {
width: 14px !important;
height: 14px !important;
transition: opacity 0.15s ease;
} .pp-cs-add-btn.loading {
pointer-events: none !important;
background: #059669 !important; position: relative;
cursor: default !important;
}
.pp-cs-add-btn.loading svg {
opacity: 0 !important; }
.pp-cs-add-btn.loading::after {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 13px;
height: 13px;
margin: -6.5px 0 0 -6.5px;
border: 2px solid rgba(255, 255, 255, 0.35);
border-radius: 50%;
border-top-color: #fff;
animation: pp-cs-spin 0.7s linear infinite;
}
@keyframes pp-cs-spin {
to {
transform: rotate(360deg);
}
} .pp-cs-add-btn.added {
background: #059669 !important;
transform: scale(1.08);
transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
} .pp-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.9);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.pp-modal.active {
opacity: 1;
visibility: visible;
}
.pp-modal-content {
background: #111;
width: 95%;
max-width: 1400px;
height: 90vh;
border-radius: 20px;
display: flex;
overflow: hidden;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
position: relative;
}
.pp-modal-image-area {
flex: 1;
position: relative;
background: #000;
display: flex;
align-items: center;
justify-content: center;
}
.pp-modal-img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.pp-modal-sidebar {
width: 350px;
background: #fff;
display: flex;
flex-direction: column;
border-left: 1px solid #eee;
}
.pp-sidebar-header {
padding: 30px;
border-bottom: 1px solid #f0f0f0;
}
.pp-sidebar-title {
font-size: 1.5rem;
font-weight: 700;
color: #1a1a1a;
margin: 0;
}
.pp-products-list {
flex: 1;
overflow-y: auto;
padding: 20px;
background: #f9f9f9;
scroll-behavior: smooth;
}
.pp-hotspot {
position: absolute;
width: 24px;
height: 24px;
background: #C5A065;
border: 2px solid white;
border-radius: 50%;
cursor: pointer;
transform: translate(-50%, -50%);
z-index: 10;
transition: transform 0.2s;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.pp-hotspot:hover,
.pp-hotspot.active {
transform: translate(-50%, -50%) scale(1.4);
background: #fff;
border-color: #C5A065;
z-index: 15;
}
.pp-prod-card {
display: flex;
gap: 15px;
background: white;
padding: 15px;
border-radius: 12px;
border: 2px solid transparent;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
margin-bottom: 15px;
transition: all 0.3s;
cursor: pointer;
text-decoration: none !important;
}
.pp-prod-card.active {
border-color: #C5A065;
background: #fffcf5;
box-shadow: 0 8px 20px rgba(197, 160, 101, 0.2);
transform: translateY(-2px);
}
.pp-prod-card:hover {
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.pp-prod-img {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 8px;
background: #eee;
}
.pp-prod-info {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.pp-prod-name {
font-weight: 600;
color: #1a1a1a;
font-size: 0.9rem;
line-height: 1.2;
margin-bottom: 5px;
}
.pp-prod-price {
color: #C5A065;
font-weight: 700;
font-size: 0.95rem;
}
.pp-close-btn {
position: absolute;
top: 20px;
right: 20px;
background: #fff;
color: #1a1a1a;
border: none;
width: 48px;
height: 48px;
border-radius: 50%;
cursor: pointer;
z-index: 1000;
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.pp-close-btn:hover {
transform: scale(1.1);
background: #f0f0f0;
}
@media (max-width: 1024px) {
.pp-modal-content {
flex-direction: column;
height: 100vh;
width: 100%;
border-radius: 0;
}
.pp-modal-sidebar {
width: 100%;
height: 45%;
order: 2;
}
.pp-modal-image-area {
order: 1;
height: 55%;
}
.pp-close-btn {
top: 15px;
right: 15px;
width: 44px;
height: 44px;
font-size: 24px;
}
}  .pp-essentials-box {
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 12px;
margin-top: -6px; margin-bottom: 24px;
overflow: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} .pp-essentials-trigger {
padding: 12px 16px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
background: #f8fafc;
border-bottom: 1px solid transparent;
transition: background 0.2s, border-color 0.2s;
}
.pp-essentials-box:hover .pp-essentials-trigger,
.pp-essentials-box.is-open .pp-essentials-trigger {
background: #ffffff;
border-bottom-color: #e5e7eb;
}
.pp-header-icon {
width: 20px;
height: 20px;
color: #94a3b8;
}
.pp-essentials-title {
font-family: var(--font-heading, "Poppins", sans-serif);
font-size: 13px;
font-weight: 800;
text-transform: uppercase;
color: #1e293b;
margin: 0;
letter-spacing: 0.03em;
}
.pp-recommended-badge {
background: #ecfdf5;
color: #10b981;
font-size: 9px;
font-weight: 800;
text-transform: uppercase;
padding: 4px 8px;
border-radius: 6px;
margin-right: 8px;
border: 1px solid #a7f3d0;
letter-spacing: 0.05em;
}
.pp-chevron {
width: 20px;
height: 20px;
color: #94a3b8;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pp-essentials-box.is-open .pp-chevron,
.pp-essentials-box:hover .pp-chevron {
transform: rotate(180deg);
} .pp-essentials-body {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
opacity: 0;
} @media (min-width: 1024px) {
.pp-essentials-box:hover .pp-essentials-body {
max-height: 1200px;
opacity: 1;
}
} .pp-essentials-box.is-open .pp-essentials-body {
max-height: 1200px;
opacity: 1;
}
.pp-essentials-body-inner {
padding: 16px;
background: #ffffff;
} .js-cs-item {
background: #ffffff;
border: 1px solid #f1f5f9;
border-radius: 12px;
padding: 12px;
height: 100%;
display: flex;
flex-direction: column;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
transition: border-color 0.2s, box-shadow 0.2s;
}
.js-cs-item:hover {
border-color: #cbd5e1;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
} .js-cs-item .flex.items-start {
display: flex;
gap: 12px;
align-items: flex-start;
margin-bottom: 12px;
} .pp-sheet-step:active {
transform: scale(0.85) !important;
}
.pp-sheet-qty-wrap:focus-within {
border-color: #10B981 !important;
box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
.pp-cs-item-thumb {
width: 48px;
height: 48px;
flex-shrink: 0;
border-radius: 8px;
overflow: hidden;
background: #f8fafc;
border: 1px solid #f1f5f9;
display: flex;
align-items: center;
justify-content: center;
}
.pp-cs-item-thumb img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
} .pp-cs-item-title {
font-family: var(--font-body, "Inter", sans-serif);
font-size: 11px;
line-height: 1.35;
font-weight: 600;
color: #1e293b;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 6px;
text-decoration: none !important;
transition: color 0.2s;
}
.pp-cs-item-title:hover {
color: #C5A065;
}
.pp-cs-item-price {
font-family: var(--font-body, "Inter", sans-serif);
font-size: 13px;
font-weight: 800;
color: #0f172a;
}
.pp-cs-item-price ins {
text-decoration: none;
color: #0f172a;
}
.pp-cs-item-price del {
font-size: 11px;
color: #94a3b8;
font-weight: 500;
margin-right: 4px;
} .pp-cs-controls {
display: flex;
align-items: center;
justify-content: space-between;
gap: 4px;
margin-top: auto;
width: 100%;
}
.pp-cs-qty-selector {
display: flex;
align-items: center;
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 6px;
height: 32px;
overflow: hidden;
flex: 0 0 98px; }
button.pp-cs-qty-btn {
width: 24px !important;
height: 100% !important;
border: none !important;
background-color: transparent !important;
color: #475569 !important;
font-weight: bold !important;
font-size: 16px !important;
cursor: pointer !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
transition: background 0.2s !important;
box-shadow: none !important;
border-radius: 0 !important;
padding: 0 !important;
margin: 0 !important;
min-height: 0 !important;
}
button.pp-cs-qty-btn:hover {
background-color: #e2e8f0 !important;
color: #0f172a !important;
}
input.pp-cs-qty-input {
width: 24px !important;
flex: 1 !important;
height: 100% !important;
border: none !important;
background: transparent !important;
text-align: center !important;
font-size: 13px !important;
font-weight: 700 !important;
color: #1e293b !important;
padding: 0 !important;
margin: 0 !important;
-moz-appearance: textfield;
appearance: textfield;
box-shadow: none !important;
outline: none !important;
border-radius: 0 !important;
min-height: 0 !important;
}
.pp-cs-add-btn {
width: 32px;
height: 32px;
background: #10b981;
color: #ffffff;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
flex-shrink: 0;
border: none;
box-shadow: 0 2px 4px rgba(16, 185, 129, 0.15);
}
.pp-cs-add-btn:hover {
background: #059669;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(16, 185, 129, 0.25);
color: #ffffff;
}
.pp-cs-add-btn svg {
width: 18px;
height: 18px;
} .pp-purchase-section-wrapper {
margin-bottom: 0px !important;
}
.pp-add-to-cart-wrap form.cart {
margin-bottom: 0px !important;
padding-bottom: 0 !important;
} @media (max-width: 1023px) {
.pp-essentials-box {
margin-bottom: 32px;
border-color: #f1f5f9;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.pp-essentials-trigger {
padding: 14px 18px;
pointer-events: auto; }
.pp-essentials-body {
max-height: none !important;
opacity: 1 !important;
overflow-x: auto !important; -webkit-overflow-scrolling: touch;
scrollbar-width: none; }
.pp-essentials-body::-webkit-scrollbar {
display: none;
}
.pp-essentials-body-inner {
padding: 0 0 20px 18px !important; }
.pp-essentials-body .row-small {
display: flex !important;
flex-wrap: nowrap !important;
margin: 0 !important;
gap: 12px;
width: max-content; padding-right: 18px; }
.pp-essentials-body .col.small-6 {
width: 260px !important; flex: 0 0 260px !important;
padding: 0 !important;
}
.js-cs-item {
background: #fdfdfd;
border-color: #f1f5f9;
height: 100%;
}
.pp-cs-item-thumb {
width: 56px;
height: 56px;
}
.pp-cs-item-title {
font-size: 12px;
-webkit-line-clamp: 2;
line-clamp: 2;
}
.pp-essentials-box .pp-chevron {
display: none !important;
}
} .pp-rating-header-click {
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
padding: 2px 0;
border-radius: 4px;
}
.pp-rating-header-click:hover {
opacity: 0.7;
background: rgba(0,0,0,0.02);
}
.pp-rating-header-click .star-rating {
font-size: 11px !important;
width: 60px !important;
height: 12px !important;
margin-top: 1px;
display: inline-block;
vertical-align: middle;
}
.pp-rating-header-click .star-rating::before {
color: #e2e8f0 !important;
letter-spacing: 1px;
}
.pp-rating-header-click .star-rating span::before {
color: #fbbf24 !important;
letter-spacing: 1px;
}
.pp-rating-avg-num {
font-family: 'Inter', sans-serif;
color: #1a1a1a;
font-size: 13px;
font-weight: 800;
}
.pp-rating-count-num {
font-family: 'Inter', sans-serif;
color: #94a3b8;
font-size: 11px;
font-weight: 600;
}
.pp-acc-meta, .pp-lcp-meta {
display: flex;
align-items: center;
gap: 12px;
} .pp-shipping-info {
display: flex;
gap: 12px;
align-items: flex-start;
padding: 14px 16px;
margin: 12px 0;
background: var(--color-bg-alt, #f8fafc);
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: 12px;
font-family: var(--font-body, "Inter", system-ui, -apple-system, sans-serif);
}
.pp-shipping-info__icon-box {
flex-shrink: 0;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(16, 185, 129, 0.1);
color: var(--color-primary, #059669);
border-radius: 10px;
}
.pp-shipping-info__content {
flex: 1;
min-width: 0;
}
.pp-shipping-info__title {
font-size: 14px;
font-weight: 500;
color: var(--color-dark, #0f172a);
line-height: 1.4;
display: flex;
align-items: baseline;
gap: 6px;
flex-wrap: wrap;
}
.pp-shipping-info__price {
font-weight: 700;
color: var(--color-dark, #0f172a);
font-variant-numeric: tabular-nums;
letter-spacing: -0.01em;
white-space: nowrap;
}
.pp-shipping-info__check-emoji {
font-size: 16px;
line-height: 1;
}
.pp-shipping-info__separator {
color: rgba(15, 23, 42, 0.3);
margin: 0 2px;
}
.pp-shipping-info__meta {
font-size: 12px;
color: var(--color-text-body, #64748b);
margin-top: 3px;
line-height: 1.4;
} .pp-shipping-info__time {
margin-top: 1px;
}
.pp-shipping-info__time-label {
color: var(--color-dark, #0f172a);
font-weight: 500;
margin-right: 2px;
} .pp-shipping-info__progress-wrap {
margin-top: 10px;
}
.pp-shipping-info__progress-track {
height: 6px;
background: rgba(15, 23, 42, 0.08);
border-radius: 999px;
overflow: hidden;
position: relative;
}
.pp-shipping-info__progress-bar {
height: 100%;
background: linear-gradient(90deg, var(--color-primary, #059669), var(--color-accent, #10b981));
border-radius: 999px;
transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
will-change: width;
}
.pp-shipping-info__progress-label {
font-size: 11px;
color: var(--color-text-body, #64748b);
margin-top: 6px;
font-variant-numeric: tabular-nums;
line-height: 1.4;
}
.pp-shipping-info__progress-label strong {
color: var(--color-primary, #059669);
font-weight: 600;
} .pp-shipping-info--free {
background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
border-color: rgba(16, 185, 129, 0.25);
}
.pp-shipping-info--free .pp-shipping-info__icon-box {
background: var(--color-primary, #059669);
color: #fff;
}
.pp-shipping-info--free .pp-shipping-info__title {
color: var(--color-primary, #059669);
font-weight: 600;
font-size: 15px;
} @media (max-width: 480px) {
.pp-shipping-info {
padding: 12px 14px;
gap: 10px;
}
.pp-shipping-info__icon-box {
width: 32px;
height: 32px;
}
.pp-shipping-info__title {
font-size: 13px;
}
.pp-shipping-info--free .pp-shipping-info__title {
font-size: 14px;
}
} @media (prefers-reduced-motion: reduce) {
.pp-shipping-info__progress-bar {
transition: none;
}
} @media print {
.pp-shipping-info__progress-wrap {
display: none;
}
} .pp-shipping-info--compact {
padding: 8px 10px;
margin: 8px 0 12px;
gap: 8px;
background: var(--color-bg-alt, #f8fafc);
border: 1px solid rgba(15, 23, 42, 0.06);
border-radius: 8px;
align-items: center;
}
.pp-shipping-info--compact .pp-shipping-info__icon-box {
width: 28px;
height: 28px;
border-radius: 7px;
}
.pp-shipping-info--compact .pp-shipping-info__icon-box svg {
width: 16px;
height: 16px;
}
.pp-shipping-info--compact .pp-shipping-info__title {
font-size: 13px;
line-height: 1.35;
gap: 4px;
margin: 0;
}
.pp-shipping-info--compact .pp-shipping-info__price {
font-size: 13px;
}
.pp-shipping-info--compact .pp-shipping-info__meta {
font-size: 11px;
margin-top: 1px;
line-height: 1.35;
display: flex;
align-items: baseline;
flex-wrap: wrap;
gap: 0 6px;
}
.pp-shipping-info--compact .pp-shipping-info__time {
margin-top: 0;
}
.pp-shipping-info--compact .pp-shipping-info__time::before {
content: "·";
color: rgba(15, 23, 42, 0.25);
margin-right: 4px;
}
.pp-shipping-info--compact .pp-shipping-info__time-label {
color: var(--color-text-body, #64748b);
font-weight: 500;
margin-right: 2px;
}
.pp-shipping-info--compact .pp-shipping-info__check-emoji {
font-size: 14px;
} .pp-acc-header + .pp-shipping-info--compact,
.product-summary .pp-shipping-info--compact:first-of-type {
margin-top: 10px;
} @media (max-width: 480px) {
.pp-shipping-info--compact {
padding: 7px 9px;
}
.pp-shipping-info--compact .pp-shipping-info__title {
font-size: 12.5px;
}
.pp-shipping-info--compact .pp-shipping-info__meta {
font-size: 10.5px;
}
}