/* ============================================
   PAWOVA PRODUCT PAGE STYLES
   产品页面样式
   
   目录：
   1. 产品页面布局
   2. 产品图片区域
   3. 产品信息区域
   4. 尺寸选择器
   5. 定制弹窗
   6. 表单样式
   7. 预览区域
   8. 响应式设计
   ============================================ */

/* ============================================
   1. 产品页面布局
   Product Page Layout
   ============================================ */

/* 产品页面外层容器 */
.product-page-wrapper {
    background-color: var(--color-cream);
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
}

/* 产品内容容器 */
.product-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* 产品布局：左右两栏 */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左图片，右信息，各占50% */
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

/* ============================================
   2. 产品图片区域
   Product Images Section
   ============================================ */

/* 图片区域：sticky定位，滚动时保持可见 */
.product-images {
    position: sticky;
    top: 100px; /* 距离顶部100px */
    align-self: start;
}

/* 主产品图片容器 */
.main-product-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   3. 产品信息区域
   Product Information Section
   ============================================ */

/* 产品摘要容器 */
.product-summary {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* 产品标题 */
.product-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    margin: 0 0 var(--spacing-sm);
    line-height: 1.2;
}

/* 价格显示 */
.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: var(--spacing-md);
}

.price-amount {
    color: var(--color-taupe);
}

/* 产品简短描述 */
.product-short-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-medium-gray);
    margin-bottom: var(--spacing-md);
}

/* Trust Badges - 信任徽章 */
.product-trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid #E5E5E5;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--color-medium-gray);
}

.trust-badge-item::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   4. 尺寸选择器
   Size Selector
   ============================================ */

/* 尺寸选择区域 */
.harness-size-selection {
    margin: var(--spacing-lg) 0;
}

/* 尺寸标签 */
.size-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark-gray);
}

/* 尺寸选项容器 */
.size-options {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

/* 单个尺寸选项 */
.size-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

/* 隐藏原生radio按钮 */
.size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* 尺寸选项外观 */
.size-option span {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: center;
    border: 2px solid #D0D0D0;
    border-radius: var(--radius-sm);
    background: white;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* 鼠标悬停效果 */
.size-option span:hover {
    border-color: var(--color-taupe);
    background: #FAF9F7;
}

/* 选中状态 */
.size-option input[type="radio"]:checked + span {
    border-color: var(--color-taupe);
    background: var(--color-taupe);
    color: white;
}

/* 尺寸指南链接 */
.size-guide-link {
    margin-top: var(--spacing-sm);
}

.size-guide-link a {
    color: var(--color-taupe);
    text-decoration: none;
    font-size: 0.9rem;
}

.size-guide-link a:hover {
    text-decoration: underline;
}

/* ============================================
   5. 定制弹窗
   Personalization Modal
   ============================================ */

/* 弹窗外层容器 - 默认隐藏 */
.personalization-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none; /* 默认隐藏 */
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

/* 激活状态 - 显示弹窗 */
.personalization-modal.active {
    display: flex;
}

/* 遮罩层 - 半透明黑色背景 */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px); /* 背景模糊效果 */
}

/* 弹窗主内容区 */
.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 1200px;
    width: 100%;
    max-height: 90vh; /* 最大高度90%视口 */
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* 关闭按钮 */
.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 22px;
    color: #6f675f;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    color: #2f2a26;
}

/* 弹窗标题 */
.modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-md);
    margin: 0;
    color: var(--color-dark-gray);
    border-bottom: 1px solid #E5E5E5;
}

/* 弹窗主体区域 */
.modal-body {
    display: grid;
    grid-template-columns: 1fr 400px; /* 左侧表单，右侧预览400px */
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    overflow-y: auto; /* 内容超出时滚动 */
    flex: 1;
}

/* ============================================
   6. 表单样式
   Form Styles
   ============================================ */

/* 表单容器 */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

/* 表单区块 */
.form-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-zone {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

/* 区块标题 */
.form-section h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-sm);
    color: var(--color-dark-gray);
}

/* 表单组 */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

/* 表单标签 */
.form-group label {
    font-weight: 600;
    color: var(--color-dark-gray);
    font-size: 0.95rem;
}

/* 输入框通用样式 */
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid #D0D0D0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

/* 输入框聚焦状态 */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-taupe);
}

/* 文本域 */
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* 小提示文字 */
.form-group small {
    color: #888;
    font-size: 0.85rem;
}

/* 字符计数器 */
.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: #888;
}

/* 帮助文本 */
.help-text {
    background: #F9F9F9;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: #666;
    border-left: 3px solid var(--color-taupe);
}

/* Checkbox样式 */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.checkbox-label:hover {
    background: #F5F5F5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Radio按钮组 */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* 单个Radio选项 */
.radio-option {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border: 2px solid #E5E5E5;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-option:hover {
    border-color: #D0D0D0;
    background: #FAFAFA;
}

/* Radio按钮选中状态 */
.radio-option input[type="radio"]:checked + .radio-label-text {
    font-weight: 600;
}

.radio-option input[type="radio"]:checked {
    /* 改变父容器样式 */
}

/* 选中时改变边框 */
.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--color-taupe);
    background: #FAF9F7;
}

.radio-label-text {
    flex: 1;
    font-size: 0.95rem;
}

/* 隐藏的自定义字段区域 */
.custom-fields.hidden,
.engraving-fields.hidden {
    display: none;
}

/* 显示自定义字段 */
.custom-fields,
.engraving-fields {
    margin-top: var(--spacing-sm);
    padding-left: var(--spacing-lg);
    border-left: 3px solid var(--color-taupe);
}

/* ============================================
   7. 预览区域
   Preview Section
   ============================================ */

/* 预览容器 - 固定在右侧 */
.modal-preview {
    position: sticky;
    top: 0;
    background: #FAFAFA;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid #E5E5E5;
    height: fit-content;
}

/* 预览标题 */
.modal-preview h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-lg);
    color: var(--color-dark-gray);
    text-align: center;
}

/* 单个预览项 */
.preview-item {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid #E0E0E0;
}

.preview-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* 预览项标题 */
.preview-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-md);
    color: var(--color-dark-gray);
}

/* ID Tag预览包装器 - 显示正反两面 */
.tag-preview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

/* 单面标签 */
.tag-side {
    text-align: center;
}

/* 正面/背面标签 */
.side-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

/* ID Tag SVG预览容器 */
.tag-preview {
    background: white;
    border: 1px solid #DDD;
    border-radius: var(--radius-sm);
    padding: var(--spacing-md);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG样式 */
.id-tag-svg {
    width: 100%;
    height: auto;
    max-width: 150px;
}

/* 相框预览 */
.frame-preview {
    background: linear-gradient(135deg, #D4A574 0%, #B8956B 100%); /* 木头颜色渐变 */
    border: 8px solid #8B6F47; /* 木框边框 */
    border-radius: var(--radius-sm);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
}

/* 相框内照片占位 */
.frame-image-placeholder {
    background: #E5E5E5;
    color: #999;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-xs);
    font-size: 0.9rem;
}

/* 相框文字预览 */
.frame-text-preview {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    /* 模拟刻字效果 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* 贺卡预览 */
.card-preview {
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 贺卡图标 */
.card-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

/* 贺卡留言预览 */
.card-message-preview {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* ============================================
   8. 弹窗底部（Footer）
   Modal Footer
   ============================================ */

/* 底部固定区域 */
.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-top: 1px solid #E5E5E5;
    background: #FAFAFA;
}

.post-add-success {
    text-align: center;
    padding: 56px 32px;
}
.post-add-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.8rem;
    margin: 0 0 12px;
    color: #2f2a26;
}
.post-add-subline {
    font-size: 1.05rem;
    color: #6f675f;
    margin: 0 0 32px;
}
.post-add-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.post-add-actions .btn {
    text-decoration: none;
}
@media (max-width: 640px) {
    .post-add-actions { flex-direction: column; align-items: stretch; }
}

/* 价格摘要 */
.price-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.price-label {
    font-size: 0.9rem;
    color: #888;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-taupe);
}

/* ============================================
   9. 响应式设计
   Responsive Design
   ============================================ */

/* 平板设备 (768px - 1024px) */
@media (max-width: 1024px) {
    .modal-body {
        grid-template-columns: 1fr 350px; /* 缩小预览区 */
    }
}

/* 移动设备 (< 768px) */
@media (max-width: 768px) {
    /* 产品页面：单列布局 */
    .product-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* 图片区域：取消sticky */
    .product-images {
        position: relative;
        top: 0;
    }
    
    /* 产品标题缩小 */
    .product-title {
        font-size: 2rem;
    }
    
    /* 弹窗：垂直布局 */
    .modal-body {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* 预览区域：不再sticky */
    .modal-preview {
        position: relative;
    }
    
    /* 弹窗内容：减少padding */
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-body {
        padding: var(--spacing-md);
    }
    
    /* 底部按钮：垂直排列 */
    .modal-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
    
    /* 尺寸选项：垂直排列 */
    .size-options {
        flex-direction: column;
    }
}

/* 小屏手机 (< 480px) */
@media (max-width: 480px) {
    .modal-title {
        font-size: 1.5rem;
        padding: var(--spacing-lg) var(--spacing-md) var(--spacing-sm);
    }
    
    /* ID Tag预览：垂直排列 */
    .tag-preview-wrapper {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   PAWOVA PRODUCT HERO V1 OVERRIDES
   Warm Minimal Pet Lifestyle draft
   ============================================ */

.pawova-product-v1.product-page-wrapper {
    background: linear-gradient(180deg, #F7F4EF 0%, #FAF8F6 62%, #FFFFFF 100%);
    padding: 0;
    min-height: auto;
}

.product-hero-section {
    padding: 96px 0 112px;
}

.product-hero-section .product-container {
    max-width: 1280px;
    padding: 0 32px;
}

.product-hero-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    align-items: start;
    gap: clamp(48px, 6vw, 88px);
    margin-bottom: 0;
}

.product-gallery-card {
    position: sticky;
    top: 112px;
}

.product-hero-image {
    background: #F1ECE5;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(64, 54, 45, 0.12);
    border: 1px solid rgba(184, 164, 144, 0.22);
}

.product-hero-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.product-gallery-thumbs {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}

.product-gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(184, 164, 144, 0.35);
    border-radius: 999px;
}

.gallery-thumb {
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    scroll-snap-align: start;
    border: 1px solid rgba(184, 164, 144, 0.28);
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    cursor: pointer;
    overflow: hidden;
    color: #7B746D;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    transform: translateY(-2px);
    border-color: #B8A490;
    background: #FFFFFF;
}

.product-hero-summary {
    gap: 0;
    padding-top: 12px;
}

.product-kicker {
    margin: 0 0 18px;
    font-size: 0.78rem;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8D7E70;
    font-weight: 700;
}

.product-hero-summary .product-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
    color: #2F2A26;
    margin: 0 0 24px;
}

.hero-description {
    max-width: 540px;
    margin: 0 0 28px;
    color: #6F6860;
    font-size: 1.08rem;
    line-height: 1.82;
}

.hero-description p {
    margin: 0;
}

.product-hero-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 28px;
    color: #2F2A26;
    font-size: 1.55rem;
    font-weight: 700;
}

.product-hero-price .amount,
.product-hero-price .woocommerce-Price-amount,
.product-hero-price .price-amount {
    color: #2F2A26;
    font-size: 1.65rem;
    font-weight: 700;
}

.price-note {
    display: block;
    color: #8A8178;
    font-size: 0.92rem;
    font-weight: 500;
}

.price-note-emphasis {
    color: #4A3F35;
}

.product-hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    margin: 0 0 30px;
    padding: 22px 0;
    border-top: 1px solid rgba(184, 164, 144, 0.26);
    border-bottom: 1px solid rgba(184, 164, 144, 0.26);
}

.product-hero-trust .trust-badge-item {
    gap: 8px;
    color: #5D554D;
    font-size: 0.94rem;
    line-height: 1.45;
}

.product-hero-trust .trust-badge-item::before {
    content: '✓';
    color: #B8A490;
    font-size: 1rem;
    line-height: 1;
}

.hero-size-card {
    margin: 0 0 28px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(184, 164, 144, 0.24);
    box-shadow: 0 18px 40px rgba(64, 54, 45, 0.06);
}

.size-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.hero-size-card .size-label {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: #2F2A26;
}

.size-guide-inline {
    color: #8D7E70;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-size-card .size-options {
    gap: 10px;
    margin: 0 0 12px;
}

.hero-size-card .size-option span {
    border: 1px solid rgba(184, 164, 144, 0.42);
    border-radius: 999px;
    background: #FFFFFF;
    padding: 0.86rem 1rem;
    color: #4D453E;
    font-weight: 700;
}

.hero-size-card .size-option span:hover {
    border-color: #B8A490;
    background: #FBF8F4;
}

.hero-size-card .size-option input[type="radio"]:checked + span {
    border-color: #2E2C2A;
    background: #2E2C2A;
    color: #FFFFFF;
}

.size-help-text {
    margin: 0;
    color: #8A8178;
    font-size: 0.88rem;
    line-height: 1.55;
}

.product-variant-picker {
    margin: 24px 0;
    padding: 20px;
    border: 1px solid #e6ddd2;
    border-radius: 20px;
    background: #fffdf9;
}
.product-variant-picker h3 {
    margin: 0 0 14px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
}
.product-variant-picker .radio-group { margin-bottom: 4px; }
.product-variant-picker .muted {
    margin: 12px 0 0;
    color: #8A8178;
    font-size: 0.86rem;
    line-height: 1.6;
}

.product-hero-cta {
    width: 100%;
    min-height: 62px;
    border-radius: 999px;
    background: #2E2C2A;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 18px 34px rgba(46, 44, 42, 0.18);
}

.product-hero-cta:hover {
    background: #4A3F35;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(46, 44, 42, 0.22);
}

.cta-microcopy {
    margin: 14px 0 0;
    text-align: center;
    color: #8A8178;
    font-size: 0.92rem;
}

/* Modal visual refinement */
.personalization-modal .modal-overlay {
    background: rgba(47, 42, 38, 0.56);
    backdrop-filter: blur(8px);
}

.personalization-modal .modal-content {
    border-radius: 28px;
    box-shadow: 0 28px 90px rgba(47, 42, 38, 0.34);
    border: 1px solid rgba(255,255,255,0.56);
}

.personalization-modal .modal-title {
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #2F2A26;
    background: #FAF8F6;
    border-bottom: 1px solid rgba(184, 164, 144, 0.24);
}

.personalization-modal .form-section {
    padding: 22px;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(184, 164, 144, 0.18);
}

.personalization-modal .form-section h3 {
    font-weight: 500;
    letter-spacing: -0.02em;
}

.personalization-modal .modal-preview {
    background: #F7F4EF;
    border-radius: 22px;
    border-color: rgba(184, 164, 144, 0.28);
}

.personalization-modal .form-group input[type="text"],
.personalization-modal .form-group input[type="tel"],
.personalization-modal .form-group input[type="date"],
.personalization-modal .form-group textarea {
    border: 1px solid rgba(184, 164, 144, 0.42);
    border-radius: 14px;
    padding: 13px 15px;
}

.personalization-modal .form-group input:focus,
.personalization-modal .form-group textarea:focus {
    border-color: #B8A490;
    box-shadow: 0 0 0 4px rgba(184, 164, 144, 0.14);
}

.personalization-modal .radio-option {
    border: 1px solid rgba(184, 164, 144, 0.26);
    border-radius: 16px;
    background: #FFFFFF;
}

.personalization-modal .radio-option:has(input[type="radio"]:checked) {
    border-color: #B8A490;
    background: #FBF8F4;
}

.personalization-modal .modal-footer {
    background: #FAF8F6;
    border-top: 1px solid rgba(184, 164, 144, 0.24);
}

.personalization-modal .price-amount {
    color: #2F2A26;
}

@media (max-width: 1024px) {
    .product-hero-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .product-gallery-card {
        position: relative;
        top: auto;
    }

    .product-hero-summary {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-hero-section {
        padding: 42px 0 72px;
    }

    .product-hero-section .product-container {
        padding: 0 18px;
    }

    .product-gallery-thumbs {
        gap: 8px;
    }

    .gallery-thumb {
        flex-basis: 66px;
        width: 66px;
        height: 66px;
        border-radius: 12px;
        font-size: 0.72rem;
    }

    .product-hero-summary .product-title {
        font-size: clamp(2.25rem, 13vw, 3.2rem);
    }

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

    .hero-size-card {
        padding: 18px;
    }

    .hero-size-card .size-options {
        flex-direction: row;
    }

    .product-hero-cta {
        min-height: 58px;
    }

    .personalization-modal {
        padding: 10px;
    }

    .personalization-modal .modal-content {
        border-radius: 22px;
    }

    .personalization-modal .form-section {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .hero-size-card .size-options {
        flex-direction: column;
    }
}


/* Product content sections V2 */
.product-content-section {
    padding: 96px 0;
    background: #fffdf9;
}

.product-content-section + .product-content-section {
    border-top: 1px solid rgba(184, 164, 144, 0.18);
}

.product-whats-inside {
    background: linear-gradient(180deg, #fffdf9 0%, #faf7f2 100%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-heading.centered {
    text-align: center;
}

.section-kicker {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9a866f;
    font-weight: 700;
}

.section-heading h2,
.split-copy h2,
.shipping-card h2 {
    margin: 0 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.06;
    font-weight: 500;
    color: #302d2a;
}

.section-heading p,
.split-copy p,
.shipping-points p,
.faq-list p {
    font-size: 18px;
    line-height: 1.7;
    color: #756d66;
}

.inside-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
    margin-bottom: 64px;
}
.inside-hero-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(49, 43, 36, 0.12);
}
.inside-hero-image img { width: 100%; display: block; }
.inside-hero-copy .section-kicker { text-align: left; }
.inside-hero-copy h2 { text-align: left; margin: 8px 0 18px; }
.inside-hero-copy p { text-align: left; margin: 0; }

.inside-group { margin-bottom: 48px; }
.inside-group:last-child { margin-bottom: 0; }
.inside-group-heading {
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4a4238;
    margin: 0 0 22px;
    font-weight: 800;
    text-align: center;
}

.inside-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.inside-grid .inside-card {
    flex: 1 1 240px;
    max-width: 270px;
}

.inside-card {
    display: flex;
    flex-direction: column;
    padding: 0 0 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(184, 164, 144, 0.22);
    box-shadow: 0 18px 48px rgba(49, 43, 36, 0.06);
    overflow: hidden;
}
.inside-card h3 { margin: 20px 28px 12px; font-size: 21px; color: #302d2a; }
.inside-card p { margin: 0 28px; font-size: 16px; line-height: 1.65; color: #756d66; }

.inside-card-image {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    background: #f4eee6;
    overflow: hidden;
}
.inside-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inside-card-image.no-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.inside-card-image.no-photo span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9a866f;
}

.inside-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 999px;
    background: #f4eee6;
    color: #9a866f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.process-step h3 {
    margin: 0 0 12px;
    font-size: 21px;
    color: #302d2a;
}

.process-step p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #756d66;
}

@media (max-width: 900px) {
    .inside-hero { grid-template-columns: 1fr; gap: 28px; }
    .inside-hero-copy .section-kicker,
    .inside-hero-copy h2,
    .inside-hero-copy p { text-align: center; }
    .inside-grid .inside-card { flex-basis: calc(50% - 11px); max-width: calc(50% - 11px); }
}
@media (max-width: 560px) {
    .inside-grid .inside-card { flex-basis: 100%; max-width: 320px; }
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}

.split-section.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.process-list {
    display: grid;
    gap: 20px;
}

.process-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 22px;
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(184, 164, 144, 0.2);
    box-shadow: 0 14px 40px rgba(49, 43, 36, 0.05);
}

.process-step > span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #302d2a;
    color: #fffdf9;
    font-weight: 700;
}

.product-why-pawova {
    background: #f8f3ec;
}

.why-card {
    min-height: 360px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 34px;
    background: #fffdf9;
    border: 1px solid rgba(184, 164, 144, 0.22);
    box-shadow: 0 22px 58px rgba(49, 43, 36, 0.07);
}

.quote-mark {
    margin: 0 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 90px;
    line-height: 0.7;
    color: #b8a490;
}

.why-card p:last-child {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.3;
    color: #302d2a;
}

.shipping-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 52px 58px;
    border-radius: 34px;
    background: #F1ECE5;
    border: 1px solid rgba(184, 164, 144, 0.35);
    color: #2f2a26;
}

.shipping-card .section-kicker,
.shipping-card h2,
.shipping-card p {
    color: #2f2a26;
}

.shipping-points p {
    margin: 0 0 14px;
    color: rgba(47, 42, 38, 0.78);
}

.shipping-points a {
    color: #2f2a26;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

.shipping-points strong {
    color: #2f2a26;
}

.narrow-container {
    max-width: 920px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(184, 164, 144, 0.22);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 700;
    color: #302d2a;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    float: right;
    color: #9a866f;
    font-size: 24px;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: '–';
}

.faq-list details p {
    margin: 0;
    padding: 0 28px 26px;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .inside-grid .inside-card {
        flex-basis: calc(50% - 11px);
        max-width: calc(50% - 11px);
    }

    .split-section,
    .split-section.reverse,
    .shipping-card {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .product-content-section {
        padding: 64px 0;
    }

    .inside-grid .inside-card {
        flex-basis: 100%;
        max-width: 320px;
    }

    .inside-card {
        min-height: auto;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card,
    .shipping-card {
        padding: 32px 24px;
        border-radius: 26px;
    }
}


/* Companion Emails */
.product-companion-emails {
    background: #f8f5f1;
}

.companion-email-grid {
    display: grid;
    gap: 18px;
}

.companion-email-card {
    display: block;
    background: #ffffff;
    border: 1px solid rgba(184, 164, 144, 0.24);
    border-radius: 26px;
    padding: 30px 32px;
    box-shadow: 0 18px 44px rgba(60, 48, 38, 0.05);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.companion-email-card:hover {
    box-shadow: 0 22px 52px rgba(60, 48, 38, 0.1);
    transform: translateY(-2px);
}

.companion-email-card strong {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #9a866f;
}

.companion-email-card span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1ebe4;
    color: #9a866f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.companion-guide-upsell {
    margin-top: 26px;
    padding: 24px 28px;
    background: #F1ECE5;
    border: 1px solid rgba(184, 164, 144, 0.35);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.companion-guide-upsell p {
    margin: 0;
    color: #4A3F35;
    font-size: 1.02rem;
}

.companion-guide-upsell-btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 12px;
    background: #4A3F35;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: .92rem;
    white-space: nowrap;
}

.companion-guide-upsell-btn:hover {
    background: #3a3128;
}

@media (max-width: 600px) {
    .companion-guide-upsell {
        flex-direction: column;
        align-items: flex-start;
    }
    .companion-guide-upsell-btn {
        width: 100%;
        text-align: center;
    }
}

.companion-email-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    color: #302d2a;
}

.companion-email-card p {
    margin: 0;
    color: #7d746e;
    line-height: 1.75;
}

@media (max-width: 640px) {
    .companion-email-card {
        padding: 26px 24px;
        border-radius: 22px;
    }
}


/* Pawova Mobile Product & Modal Fix V1 */
@media (max-width: 768px) {
    .product-hero-section {
        padding: 34px 0 58px;
    }

    .product-hero-layout {
        gap: 28px;
    }

    .product-hero-image {
        border-radius: 22px;
        box-shadow: 0 18px 44px rgba(64, 54, 45, 0.10);
    }

    .product-gallery-thumbs {
        gap: 8px;
        margin-top: 12px;
    }

    .gallery-thumb {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .product-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
        margin-bottom: 14px;
    }

    .product-hero-summary .product-title {
        font-size: clamp(2.4rem, 12vw, 3.15rem);
        line-height: 0.98;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.68;
        margin-bottom: 22px;
    }

    .product-hero-price {
        margin-bottom: 22px;
    }

    .product-hero-trust {
        gap: 10px;
        padding: 18px 0;
        margin-bottom: 22px;
    }

    .product-hero-trust .trust-badge-item {
        font-size: 0.9rem;
    }

    .hero-size-card {
        padding: 18px;
        border-radius: 20px;
        margin-bottom: 22px;
    }

    .hero-size-card .size-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hero-size-card .size-option span {
        padding: 0.78rem 0.7rem;
        font-size: 0.9rem;
    }

    .product-hero-cta {
        min-height: 56px;
        font-size: 0.98rem;
    }

    .personalization-modal {
        align-items: stretch;
        padding: 0;
    }

    .personalization-modal .modal-content {
        width: 100%;
        max-width: none;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
    }

    .personalization-modal .modal-title {
        font-size: 1.55rem;
        padding: 22px 56px 18px 22px;
        text-align: left;
    }

    .personalization-modal .modal-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
    }

    .personalization-modal .modal-body {
        display: block;
        padding: 18px;
        overflow-y: auto;
    }

    .personalization-modal .modal-form {
        gap: 18px;
    }

    .personalization-modal .modal-preview {
        position: relative;
        top: auto;
        margin-top: 18px;
        padding: 18px;
    }

    .personalization-modal .modal-footer {
        position: sticky;
        bottom: 0;
        padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
        z-index: 5;
    }

    .personalization-modal .modal-footer .btn,
    .personalization-modal .add-to-cart-button {
        width: 100%;
        min-height: 52px;
    }
}

@media (max-width: 480px) {
    .hero-size-card .size-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pawova Responsive System V1: Product page + tablet polish */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-container,
    .product-story-section .product-container,
    .pawova-product-content .product-container {
        padding-left: 36px;
        padding-right: 36px;
    }

    .product-hero-section {
        padding: 58px 0 82px;
    }

    .product-hero-layout {
        grid-template-columns: 1fr;
        gap: 42px;
        max-width: 760px;
        margin: 0 auto;
    }

    .product-hero-image {
        max-height: 680px;
        object-fit: cover;
        border-radius: 32px;
    }

    .product-gallery-thumbs {
        gap: 16px;
    }

    .gallery-thumb {
        flex-basis: 96px;
        width: 96px;
        height: 96px;
        border-radius: 20px;
    }

    .product-hero-summary .product-title {
        font-size: clamp(4rem, 9vw, 5.3rem);
        line-height: 0.96;
        max-width: 9em;
    }

    .hero-description {
        max-width: 38ch;
        font-size: 1.15rem;
    }

    .product-hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 28px;
    }

    .hero-size-card {
        max-width: 620px;
    }

    .product-hero-cta-wrap {
        max-width: 620px;
    }

    .product-story-section,
    .product-companion-emails,
    .product-shipping-section,
    .product-faq-section {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .inside-grid .inside-card {
        flex-basis: calc(50% - 11px);
        max-width: calc(50% - 11px);
    }

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

@media (max-width: 768px) {
    .product-hero-summary .product-title {
        font-size: clamp(2.75rem, 11vw, 3.5rem);
        letter-spacing: -0.045em;
        text-wrap: balance;
    }

    .product-hero-section {
        padding-top: 28px;
    }

    .product-hero-image {
        aspect-ratio: 0.92 / 1;
        object-fit: cover;
        object-position: center center;
    }

    .product-gallery-thumbs {
        gap: 10px;
    }

    .gallery-thumb {
        flex-basis: 64px;
        width: 64px;
        height: 64px;
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.72;
        max-width: 32ch;
    }

    .product-hero-trust {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-size-card {
        box-shadow: 0 16px 40px rgba(60, 48, 38, 0.07);
    }

    .product-story-section,
    .product-companion-emails,
    .product-shipping-section,
    .product-faq-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .product-section-heading h2 {
        font-size: clamp(2rem, 8vw, 2.65rem);
        line-height: 1.07;
        text-wrap: balance;
    }

    .product-section-heading p {
        font-size: 1rem;
        line-height: 1.74;
        max-width: 31ch;
        margin-left: auto;
        margin-right: auto;
    }

    .inside-card {
        border-radius: 24px;
    }

    .companion-email-card,
    .why-card,
    .shipping-card {
        border-radius: 24px;
        padding: 26px 22px;
    }
}

@media (max-width: 420px) {
    .product-hero-summary .product-title {
        font-size: clamp(2.45rem, 10vw, 3rem);
    }

    .product-kicker {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    .gallery-thumb {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
    }

    .hero-size-card .size-option span {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }
}


/* Pawova Responsive System V2: tablet product page refinement */
@media (min-width: 768px) and (max-width: 1024px) {
    .product-hero-section {
        padding-top: 58px;
        padding-bottom: 86px;
    }

    .product-hero-layout {
        grid-template-columns: 1fr;
        gap: 46px;
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-hero-image {
        aspect-ratio: 1.08 / 1;
        max-height: 720px;
        object-fit: cover;
        object-position: center center;
        border-radius: 34px;
    }

    .product-gallery-thumbs {
        gap: 16px;
    }

    .gallery-thumb {
        flex-basis: 92px;
        width: 92px;
        height: 92px;
        border-radius: 22px;
    }

    .product-hero-summary {
        max-width: 720px;
    }

    .product-hero-summary .product-title {
        font-size: clamp(3.7rem, 7.4vw, 5rem);
        line-height: 0.98;
        max-width: 10.8em;
        letter-spacing: -0.045em;
    }

    .hero-description {
        font-size: 1.12rem;
        max-width: 43ch;
    }

    .product-hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 28px;
    }

    .hero-size-card,
    .product-hero-cta-wrap {
        max-width: 640px;
    }
}

/* Pawova Welcome Kit Deluxe V1 */
.deluxe-product-page {
    --deluxe-bg: #fbf6ef;
    --deluxe-soft: #f4eadf;
    --deluxe-ink: #2f2a26;
    --deluxe-muted: #756b61;
    --deluxe-line: rgba(116, 95, 75, 0.16);
    --deluxe-gold: #b69676;
    background: linear-gradient(180deg, #fffdf9 0%, var(--deluxe-bg) 42%, #fffaf4 100%);
    color: var(--deluxe-ink);
    overflow: hidden;
}

.deluxe-product-page .btn,
.deluxe-product-page a,
.deluxe-product-page button {
    -webkit-tap-highlight-color: transparent;
}

.deluxe-hero-section {
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 1.42fr);
    align-items: center;
    gap: clamp(40px, 6vw, 92px);
    padding: clamp(72px, 7vw, 112px) clamp(40px, 7vw, 88px) clamp(64px, 6vw, 96px);
    background: radial-gradient(circle at 74% 38%, rgba(183, 150, 118, 0.18), transparent 44%), linear-gradient(90deg, #fffaf5 0%, #f7eee5 100%);
}

.deluxe-kicker {
    margin: 0 0 22px;
    color: var(--deluxe-gold);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.deluxe-hero-copy h1,
.deluxe-memory-copy h2,
.deluxe-section-heading h2,
.deluxe-packaging-copy h2,
.deluxe-final-cta h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--deluxe-ink);
    letter-spacing: -0.045em;
}

.deluxe-hero-copy h1 {
    margin: 0;
    font-size: clamp(4rem, 7.2vw, 7.8rem);
    line-height: 0.92;
    max-width: 8em;
}

.deluxe-hero-text {
    margin: 34px 0 0;
    max-width: 36ch;
    font-size: clamp(1.05rem, 1.3vw, 1.28rem);
    line-height: 1.82;
    color: var(--deluxe-muted);
}

.deluxe-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.deluxe-primary-cta,
.deluxe-product-page .deluxe-primary-cta {
    border: none;
    border-radius: 13px;
    background: #2f2c29;
    color: #fff;
    min-height: 58px;
    padding: 0 30px;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(47, 42, 38, 0.16);
    cursor: pointer;
}

.deluxe-secondary-cta {
    min-height: 58px;
    padding: 0 30px;
    border: 1.5px solid rgba(47, 42, 38, 0.55);
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--deluxe-ink);
    font-weight: 800;
    text-decoration: none;
    background: rgba(255,255,255,0.58);
}

.deluxe-hero-visual {
    align-self: stretch;
    min-height: 560px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deluxe-hero-visual img {
    width: 100%;
    height: 100%;
    max-height: 660px;
    object-fit: cover;
    object-position: center;
    border-radius: 34px;
    box-shadow: 0 36px 90px rgba(92, 68, 45, 0.18);
}

.deluxe-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 46px clamp(42px, 7vw, 88px);
    background: rgba(255,255,255,0.92);
    border-top: 1px solid var(--deluxe-line);
    border-bottom: 1px solid var(--deluxe-line);
}

.deluxe-feature-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 16px;
    align-items: start;
}

.deluxe-feature-item span {
    font-size: 2rem;
    color: var(--deluxe-gold);
    line-height: 1;
}

.deluxe-feature-item h3 {
    margin: 0 0 6px;
    font-size: 0.98rem;
    color: var(--deluxe-ink);
}

.deluxe-feature-item p {
    margin: 0;
    color: var(--deluxe-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.deluxe-memory-section {
    display: grid;
    grid-template-columns: 0.78fr 1.3fr;
    gap: 56px;
    align-items: center;
    padding: clamp(72px, 8vw, 126px) clamp(42px, 7vw, 88px);
    background: linear-gradient(90deg, #fffaf4, #f6ecdf);
}

.deluxe-memory-copy h2,
.deluxe-packaging-copy h2,
.deluxe-final-cta h2 {
    margin: 0;
    font-size: clamp(2.55rem, 4.2vw, 4.75rem);
    line-height: 0.98;
}

.deluxe-memory-copy p:not(.deluxe-kicker),
.deluxe-packaging-copy p {
    max-width: 44ch;
    margin-top: 24px;
    color: var(--deluxe-muted);
    font-size: 1.05rem;
    line-height: 1.78;
}

.deluxe-memory-gallery img,
.deluxe-packaging-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(92, 68, 45, 0.12);
}

.deluxe-inside-section {
    padding: clamp(78px, 8vw, 126px) clamp(42px, 7vw, 88px);
    background: #fffaf5;
}

.deluxe-section-heading.centered {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 58px;
}

.deluxe-section-heading h2 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4.3rem);
    line-height: 1.02;
}

.deluxe-inside-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: clamp(18px, 2vw, 28px);
    align-items: start;
}

.deluxe-inside-grid article {
    text-align: center;
}

.deluxe-item-image {
    height: clamp(92px, 9vw, 138px);
    border-radius: 18px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #e4d2bf, #fff4e8);
    border: 1px solid rgba(116, 95, 75, 0.13);
    box-shadow: 0 16px 32px rgba(92, 68, 45, 0.08);
    position: relative;
    overflow: hidden;
}

.deluxe-item-image::after {
    content: '';
    position: absolute;
    inset: 18%;
    border: 1px solid rgba(98, 75, 57, 0.26);
    border-radius: 12px;
}

.leather-placeholder { background: linear-gradient(135deg, #b57943, #e4bd88); }
.harness-placeholder { background: linear-gradient(135deg, #b8a996, #efe2d3); }
.leash-placeholder { background: linear-gradient(135deg, #c0ac93, #f1e7da); }
.toy-placeholder { background: linear-gradient(135deg, #d2c2ad, #fff5e8); }
.card-placeholder { background: linear-gradient(135deg, #eadfce, #fffaf2); }
.certificate-placeholder { background: linear-gradient(135deg, #f8efdf, #fffdf8); }

.deluxe-inside-grid h3 {
    font-size: 1rem;
    line-height: 1.25;
    margin: 0 0 10px;
    color: var(--deluxe-ink);
}

.deluxe-inside-grid p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--deluxe-muted);
}

.deluxe-packaging-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(46px, 6vw, 86px);
    align-items: center;
    padding: clamp(76px, 8vw, 126px) clamp(42px, 7vw, 88px);
    background: linear-gradient(90deg, #fffaf5, #f7eee4);
}

.deluxe-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
    color: var(--deluxe-muted);
    font-size: 0.92rem;
}

.deluxe-mini-grid span::before,
.deluxe-trust-bar span::before {
    content: '✓';
    color: var(--deluxe-gold);
    margin-right: 8px;
}

.deluxe-trust-bar {
    width: min(1120px, calc(100% - 84px));
    margin: 0 auto clamp(72px, 8vw, 116px);
    padding: 34px 42px;
    border-radius: 20px;
    background: rgba(255,255,255,0.86);
    border: 1px solid var(--deluxe-line);
    box-shadow: 0 20px 60px rgba(92, 68, 45, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    color: var(--deluxe-muted);
    font-size: 0.96rem;
}

.deluxe-faq-section {
    padding: 0 clamp(42px, 7vw, 88px) clamp(76px, 8vw, 126px);
}

.deluxe-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 80px;
    max-width: 1180px;
    margin: 0 auto;
}

.deluxe-faq-grid details {
    border-bottom: 1px solid var(--deluxe-line);
    padding: 22px 0;
}

.deluxe-faq-grid summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--deluxe-ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.deluxe-faq-grid summary::after {
    content: '+';
    color: var(--deluxe-gold);
}

.deluxe-faq-grid details[open] summary::after {
    content: '–';
}

.deluxe-faq-grid p {
    color: var(--deluxe-muted);
    line-height: 1.7;
    margin: 14px 0 0;
}

.deluxe-final-cta {
    text-align: center;
    padding: 20px clamp(24px, 7vw, 88px) 120px;
    background: #fffaf5;
}

.deluxe-final-cta h2 {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: clamp(2rem, 3.5vw, 3.8rem);
}

@media (max-width: 1180px) {
    .deluxe-hero-section,
    .deluxe-memory-section,
    .deluxe-packaging-section {
        grid-template-columns: 1fr;
    }

    .deluxe-hero-section {
        padding-top: 70px;
    }

    .deluxe-hero-visual {
        min-height: 420px;
    }

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

    .deluxe-feature-strip,
    .deluxe-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .deluxe-hero-section {
        gap: 48px;
        padding: 76px 52px 78px;
    }

    .deluxe-hero-copy h1 {
        font-size: clamp(4.4rem, 8vw, 6rem);
        max-width: 8.5em;
    }

    .deluxe-hero-actions {
        max-width: 680px;
    }

    .deluxe-primary-cta,
    .deluxe-secondary-cta {
        flex: 1 1 260px;
    }

    .deluxe-feature-strip,
    .deluxe-memory-section,
    .deluxe-inside-section,
    .deluxe-packaging-section,
    .deluxe-faq-section {
        padding-left: 52px;
        padding-right: 52px;
    }

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

@media (max-width: 767px) {
    .deluxe-hero-section {
        display: flex;
        flex-direction: column-reverse;
        gap: 32px;
        padding: 32px 22px 58px;
    }

    .deluxe-hero-copy h1 {
        font-size: clamp(3.05rem, 16vw, 4.5rem);
        line-height: 0.96;
    }

    .deluxe-hero-text {
        font-size: 1rem;
        line-height: 1.72;
        margin-top: 24px;
    }

    .deluxe-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .deluxe-primary-cta,
    .deluxe-secondary-cta {
        width: 100%;
        min-height: 56px;
    }

    .deluxe-hero-visual {
        min-height: auto;
        width: 100%;
    }

    .deluxe-hero-visual img {
        max-height: none;
        aspect-ratio: 1 / 0.88;
        border-radius: 28px;
    }

    .deluxe-feature-strip,
    .deluxe-memory-section,
    .deluxe-inside-section,
    .deluxe-packaging-section,
    .deluxe-faq-section,
    .deluxe-final-cta {
        padding-left: 22px;
        padding-right: 22px;
    }

    .deluxe-feature-strip,
    .deluxe-trust-bar,
    .deluxe-faq-grid,
    .deluxe-mini-grid {
        grid-template-columns: 1fr;
    }

    .deluxe-feature-strip {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .deluxe-memory-section,
    .deluxe-inside-section,
    .deluxe-packaging-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .deluxe-inside-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 18px;
    }

    .deluxe-inside-grid article:last-child {
        grid-column: 1 / -1;
        max-width: 220px;
        margin: 0 auto;
    }

    .deluxe-trust-bar {
        width: calc(100% - 44px);
        padding: 28px 22px;
        margin-bottom: 70px;
    }

    .deluxe-final-cta {
        padding-bottom: 82px;
    }
}

/* Deluxe V2: price/status and home teaser */
.deluxe-price-row,
.deluxe-final-status {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.deluxe-price {
    font-size: clamp(1.65rem, 2.2vw, 2.45rem);
    font-weight: 900;
    color: var(--deluxe-ink, #2f2a26);
    line-height: 1;
}

.deluxe-coming-soon {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(182, 150, 118, 0.16);
    color: #8e6f50;
    border: 1px solid rgba(182, 150, 118, 0.32);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.deluxe-disabled-cta,
.deluxe-disabled-cta:hover,
.deluxe-disabled-cta:focus {
    opacity: 0.78;
    cursor: not-allowed;
    transform: none;
}

.deluxe-home-teaser {
    background: linear-gradient(110deg, #fffaf5 0%, #f5eadf 100%);
    padding: clamp(70px, 7vw, 104px) 0;
}

.deluxe-home-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    padding: clamp(28px, 4vw, 52px);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(116, 95, 75, 0.14);
    box-shadow: 0 26px 80px rgba(92, 68, 45, 0.1);
}

.deluxe-home-kicker {
    margin: 0 0 18px;
    color: #b69676;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 900;
}

.deluxe-home-copy h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.6rem, 4.8vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #2f2a26;
}

.deluxe-home-copy p:not(.deluxe-home-kicker) {
    max-width: 46ch;
    margin: 24px 0 0;
    color: #756b61;
    font-size: 1.05rem;
    line-height: 1.75;
}

.deluxe-home-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    color: #2f2a26;
    font-weight: 800;
}

.deluxe-home-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(116, 95, 75, 0.14);
}

.deluxe-home-button {
    margin-top: 30px;
}

.deluxe-home-image {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(92, 68, 45, 0.16);
}

.deluxe-home-image img {
    width: 100%;
    display: block;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.deluxe-home-image:hover img {
    transform: scale(1.025);
}

@media (max-width: 1024px) {
    .deluxe-home-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .deluxe-price-row,
    .deluxe-final-status {
        margin-top: 22px;
    }

    .deluxe-home-teaser {
        padding: 62px 0;
    }

    .deluxe-home-card {
        padding: 22px;
        border-radius: 24px;
    }

    .deluxe-home-copy h2 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

    .deluxe-home-button {
        width: 100%;
    }
}


/* Deluxe V3 visual refinement: calmer hero typography and tighter header rhythm */
.deluxe-hero-section {
    min-height: 640px;
    grid-template-columns: minmax(340px, 0.82fr) minmax(560px, 1.18fr);
    gap: clamp(42px, 5vw, 76px);
    padding-top: clamp(64px, 6vw, 92px);
    padding-bottom: clamp(62px, 5.5vw, 86px);
}

.deluxe-hero-copy h1 {
    font-size: clamp(4.2rem, 5.4vw, 6.25rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    max-width: 7.4em;
}

.deluxe-hero-text {
    margin-top: 28px;
    font-size: clamp(1.02rem, 1.05vw, 1.16rem);
    line-height: 1.72;
    max-width: 34ch;
}

.deluxe-price-row {
    margin-top: 24px;
}

.deluxe-hero-actions {
    margin-top: 24px;
}

.deluxe-hero-visual {
    min-height: 500px;
}

.deluxe-hero-visual img {
    max-height: 590px;
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(92, 68, 45, 0.16);
}

@media (min-width: 769px) and (max-width: 1180px) {
    .deluxe-hero-section {
        min-height: auto;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 38px;
        padding: 66px 42px 72px;
    }

    .deluxe-hero-copy h1 {
        font-size: clamp(3.4rem, 6.4vw, 5.2rem);
        line-height: 0.98;
    }

    .deluxe-hero-text {
        font-size: 1rem;
        line-height: 1.68;
        margin-top: 24px;
    }

    .deluxe-hero-visual {
        min-height: 420px;
    }

    .deluxe-hero-visual img {
        max-height: 470px;
    }
}

@media (max-width: 768px) {
    .deluxe-hero-copy h1 {
        font-size: clamp(3.1rem, 14vw, 4.2rem);
        line-height: 0.98;
    }

    .deluxe-hero-text {
        font-size: 1rem;
        line-height: 1.65;
    }
}

/* Deluxe V6 polish: calmer scale and more balanced desktop hero */
@media (min-width: 1025px) {
    .deluxe-hero-section {
        min-height: 600px;
        grid-template-columns: minmax(360px, 0.74fr) minmax(560px, 1.08fr);
        gap: clamp(44px, 4.5vw, 72px);
        padding-top: clamp(56px, 5vw, 78px);
        padding-bottom: clamp(58px, 5vw, 82px);
    }

    .deluxe-hero-copy h1 {
        font-size: clamp(4.05rem, 4.55vw, 5.35rem);
        line-height: 0.98;
        letter-spacing: -0.045em;
        max-width: 7.8em;
    }

    .deluxe-hero-text {
        margin-top: 26px;
        font-size: clamp(1rem, 1vw, 1.1rem);
        line-height: 1.72;
        max-width: 35ch;
    }

    .deluxe-hero-visual {
        min-height: 470px;
    }

    .deluxe-hero-visual img {
        max-height: 540px;
        border-radius: 28px;
    }
}

/* v6: Welcome Kit offer, fixed harness, and photo-frame personalization */
.launch-special-note {
  display: block;
  margin-top: 10px;
  line-height: 1.6;
}
.launch-special-note strong { color: #2c2926; }
.launch-special-note em {
  display: inline-block;
  margin-top: 2px;
  font-style: normal;
  color: #6f675f;
}
.launch-special-note small {
  display: block;
  margin-top: 4px;
  color: #8b8177;
}
.one-size-card .one-size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 12px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2f2b28;
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
}
.one-size-card .size-help-small { font-size: .92em; color: #8a8076; }
.pawova-frame-modal .soft-price { color: #8c8176; font-size: .9em; }
.pawova-frame-modal .text-guidelines {
  background: #fbf7f1;
  border: 1px solid #e7ded3;
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 16px;
  color: #6f675f;
}
.pawova-frame-modal .text-guidelines ul { margin: 8px 0 8px 18px; padding: 0; }
.pawova-frame-modal .text-guidelines li { margin: 4px 0; }
.pawova-frame-modal .frame-live-text-block {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e6ddd2;
  background: #fffdf9;
}
.pawova-frame-modal .frame-preview-label-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
  color: #5d554e;
}
.pawova-frame-modal .frame-text-line-preview {
  min-height: 44px;
  border-radius: 14px;
  background: #f7f1e9;
  padding: 12px 14px;
  font-weight: 700;
  color: #2f2b28;
}
.pawova-frame-modal .frame-warning {
  margin: 10px 0 0;
  color: #b44a3c;
  font-weight: 700;
}
.pawova-frame-modal .frame-warning.hidden,
.pawova-frame-modal .hidden { display: none !important; }
.pawova-size-note p { margin: 0 0 10px; color: #6f675f; line-height: 1.65; }
.pawova-size-note .muted { color: #8a8076; }

/* v8: name-known / not-yet fork, static reference images instead of live mockups */
.name-known-group .radio-option,
.harness-size-group .radio-option { margin-bottom: 10px; }
.notice-block { background: #f4ede2; border: 1px solid #e6d8c4; border-radius: 16px; padding: 18px 20px; }
.notice-block p { margin: 0; color: #6f675f; line-height: 1.7; }
.btn-small { min-height: 40px; padding: 0 18px; font-size: .88rem; border-radius: 999px; }
.link-button { background: none; border: none; padding: 0; color: #6f5b49; font-weight: 700; text-decoration: underline; cursor: pointer; font-size: inherit; }
#pet-details-not-yet-btn { margin-bottom: 20px; }
.card-design-reference { margin-bottom: 8px; border-radius: 18px; overflow: hidden; border: 1px solid #e6ddd2; background: #fffdf9; }
.card-design-reference img { width: 100%; display: block; }
.frame-sample-image { margin-bottom: 8px; border-radius: 18px; overflow: hidden; border: 1px solid #e6ddd2; background: #fffdf9; }
.frame-sample-image img { width: 100%; display: block; }
.tag-sample-image { margin-bottom: 8px; border-radius: 18px; overflow: hidden; border: 1px solid #e6ddd2; background: #fffdf9; }
.tag-sample-image img { width: 100%; display: block; }
.frame-text-confirm-block { margin-top: 16px; background: #fffdf9; border: 1px solid #e6ddd2; border-radius: 16px; padding: 16px 18px; }
.frame-preview-label-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; font-size: .82rem; color: #8a8076; }
.frame-text-line-preview { font-size: 1.05rem; font-weight: 700; color: #2f2a26; min-height: 1.4em; }

/* v7: cleaner personalization preview — text only, no fake frame mockup */
.pawova-clean-preview .pawova-text-preview-card {
  background: #fffdf9;
  border: 1px solid #e6ddd2;
  border-radius: 22px;
  padding: 22px;
}
.pawova-clean-preview .preview-helper {
  margin: 0 0 14px;
  color: #84796e;
  font-size: 0.95rem;
  line-height: 1.6;
}
.pawova-clean-preview .clean-frame-text-preview {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  background: #f7f1e9;
  border: 1px dashed #d8cbbc;
  text-align: center;
}
.pawova-clean-preview .clean-frame-text-preview .frame-text-preview {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #2f2b28;
  line-height: 1.45;
  text-shadow: none;
}
.pawova-clean-preview .preview-mini-count {
  margin-top: 10px;
  color: #8b8177;
  font-size: 0.9rem;
  text-align: right;
}
.pawova-clean-preview .pawova-example-preview {
  background: #fbf7f1;
  border: 1px solid #e7ded3;
  border-radius: 22px;
  padding: 22px;
}
.pawova-clean-preview .example-photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}
.pawova-clean-preview .example-photo-card {
  aspect-ratio: 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.65), rgba(218,202,181,.5)),
    radial-gradient(circle at 35% 35%, rgba(150,121,88,.35), transparent 45%);
  border: 1px solid #dfd3c4;
  display: flex;
  align-items: flex-end;
  padding: 8px;
  overflow: hidden;
}
.pawova-clean-preview .example-photo-card span {
  display: block;
  width: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: #776b60;
  font-size: 0.72rem;
  line-height: 1.2;
  text-align: center;
  padding: 5px 6px;
}
.pawova-clean-preview .example-text-list {
  margin: 0;
  padding-left: 18px;
  color: #6f675f;
  font-size: 0.94rem;
  line-height: 1.7;
}
.pawova-frame-modal .frame-live-text-block {
  background: #fffdf9;
}
.pawova-frame-modal input[type="date"] {
  cursor: pointer;
}
@media (max-width: 720px) {
  .pawova-clean-preview .example-photo-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .pawova-clean-preview .clean-frame-text-preview .frame-text-preview {
    font-size: .98rem;
  }
}

/* One-size harness fit note — v4 */
.fit-info-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.fit-info-card .size-label {
  margin-bottom: 12px;
}
.fit-info-card .size-help-text {
  font-size: 0.98rem;
  line-height: 1.62;
  color: #6f675f;
  margin-bottom: 10px;
}
.fit-info-card .fit-measurements {
  color: #403b36;
}
.harness-measurement-img {
  display: block;
  width: 100%;
  max-width: 620px;
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(184, 164, 144, 0.32);
  background: #fbf8f4;
}
@media (max-width: 768px) {
  .fit-info-card .size-help-text {
    font-size: 0.94rem;
  }
  .harness-measurement-img {
    border-radius: 16px;
  }
}

/* Size guide / color reference trigger button (replaces permanently-shown reference image) */
.size-guide-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffdf9;
    border: 1px solid #e6ddd2;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6f675f;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    margin-bottom: 4px;
}

.size-guide-trigger:hover {
    background: #f4ede2;
    border-color: #d8c8b3;
}

.size-guide-trigger-icon {
    font-size: 1rem;
    line-height: 1;
}

/* Generic image lightbox (harness fit diagram, ID tag colors, etc.) */
.pawova-image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.pawova-image-lightbox.hidden {
    display: none;
}

.pawova-image-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.pawova-image-lightbox-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pawova-image-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.pawova-image-lightbox-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f675f;
}

.pawova-image-lightbox-close:hover {
    color: #2f2a26;
}

@media (max-width: 520px) {
    .pawova-image-lightbox-content {
        padding: var(--spacing-sm, 16px);
    }
    .pawova-image-lightbox-close {
        top: 4px;
        right: 4px;
    }
}

/* What's Inside card detail trigger button (opens info lightbox) */
.inside-card-details {
    margin: 14px 28px 0;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(184, 164, 144, 0.22);
}

.inside-card-details-trigger {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #9a866f;
    font-family: inherit;
}

.inside-card-details-trigger::after {
    content: '→';
    float: right;
    font-size: 14px;
}

.inside-card-details-trigger:hover {
    color: #7a6650;
}

/* Info lightbox (opened by inside-card-details-trigger buttons) */
.pawova-info-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.pawova-info-lightbox.hidden {
    display: none;
}

.pawova-info-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.pawova-info-lightbox-content {
    position: relative;
    background: #fffdf9;
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
}

.pawova-info-lightbox-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f675f;
    z-index: 1;
}

.pawova-info-lightbox-close:hover {
    color: #2f2a26;
}

#pawova-info-lightbox-body h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin: 0 0 18px;
    color: #302d2a;
    padding-right: 24px;
}

#pawova-info-lightbox-body p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4238;
}

#pawova-info-lightbox-body p:last-child {
    margin-bottom: 0;
}

.inside-card-detail-images {
    margin-bottom: 20px;
}

.inside-card-detail-images img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(184, 164, 144, 0.22);
    display: block;
}

@media (max-width: 520px) {
    .pawova-info-lightbox-content {
        padding: 26px 20px;
        max-height: 90vh;
    }
    .pawova-info-lightbox-close {
        top: 4px;
        right: 4px;
    }
}

/* ============================================================
   Reviews section — restyled WooCommerce native review output
   ============================================================ */
.product-reviews-section {
    background: #FAF8F6;
}

.pawova-reviews-wrap #reviews {
    max-width: 100%;
}

.pawova-reviews-wrap .woocommerce-Reviews-title {
    display: none; /* replaced by our own section-heading above */
}

.pawova-reviews-wrap ol.commentlist {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: grid;
    gap: 20px;
}

.pawova-reviews-wrap .comment_container {
    display: flex;
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(184, 164, 144, 0.24);
    border-radius: 22px;
    padding: 26px 28px;
    box-shadow: 0 18px 44px rgba(60, 48, 38, 0.05);
}

.pawova-reviews-wrap .comment_container img.avatar {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.pawova-reviews-wrap .comment-text {
    flex: 1;
}

.pawova-reviews-wrap .star-rating {
    color: #C9A46A;
    margin-bottom: 8px;
}

.pawova-reviews-wrap .woocommerce-review__author {
    font-weight: 700;
    color: #4A3F35;
}

.pawova-reviews-wrap .woocommerce-review__dash,
.pawova-reviews-wrap .woocommerce-review__published-date {
    color: #8D7E70;
    font-size: 0.85rem;
}

.pawova-reviews-wrap .description p {
    margin: 10px 0 0;
    color: #4A3F35;
    line-height: 1.7;
}

.pawova-reviews-wrap .woocommerce-noreviews {
    background: #F1ECE5;
    border-radius: 18px;
    padding: 28px 30px;
    color: #4A3F35;
    font-size: 1.02rem;
    line-height: 1.7;
}

.pawova-reviews-wrap #review_form_wrapper {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(184, 164, 144, 0.28);
}

.pawova-reviews-wrap #review_form_wrapper #reply-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #2f2a26;
    margin-bottom: 14px;
}

.pawova-reviews-wrap .comment-form-rating label,
.pawova-reviews-wrap .comment-form-comment label,
.pawova-reviews-wrap .comment-form-author label,
.pawova-reviews-wrap .comment-form-email label {
    display: block;
    font-weight: 700;
    color: #4A3F35;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

.pawova-reviews-wrap #review_form_wrapper input[type="text"],
.pawova-reviews-wrap #review_form_wrapper input[type="email"],
.pawova-reviews-wrap #review_form_wrapper textarea {
    width: 100%;
    border: 1px solid rgba(184, 164, 144, 0.4);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #2f2a26;
    background: #ffffff;
}

.pawova-reviews-wrap #review_form_wrapper .form-submit input[type="submit"] {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 12px;
    background: #4A3F35;
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
}

.pawova-reviews-wrap #review_form_wrapper .form-submit input[type="submit"]:hover {
    background: #3a3128;
}

@media (max-width: 600px) {
    .pawova-reviews-wrap .comment_container {
        flex-direction: column;
        padding: 22px 20px;
    }
}
