  .size-guide-page{
            background:#f8f8fb;
            padding:40px 0 60px;
        }
        .size-guide-container{
            width:min(1200px, 92%);
            margin:0 auto;
        }

        .size-guide-hero{
            background:linear-gradient(135deg, #621c41 0%, #7f2855 100%);
            color:#fff;
            border-radius:24px;
            padding:32px 24px;
            margin-bottom:24px;
            box-shadow:0 18px 40px rgba(98, 28, 65, .16);
        }
        .size-guide-hero h1{
            margin:0 0 10px;
            font-size:32px;
            font-weight:500;
            color: #fff;
            font-family:inherit;
        }
        .size-guide-hero p{
            margin:0;
            font-size:16px;
            opacity:.95;
            line-height:1.9;
            max-width:850px;
        }

        .size-guide-grid-top{
            display:grid;
            grid-template-columns:1.1fr .9fr;
            gap:20px;
            margin-bottom:24px;
        }

        .size-guide-card{
            background:#fff;
            border-radius:20px;
            padding:22px;
            box-shadow:0 10px 30px rgba(0,0,0,.06);
            border:1px solid rgba(0,0,0,.05);
            height:100%;
        }

        .size-guide-card h2{
            font-size:22px;
            margin:0 0 14px;
            color:#621c41;
            font-weight:700;
        }

        .size-guide-card p{
            margin:0 0 10px;
            line-height:1.9;
            color:#444;
        }

        .size-guide-list{
            margin:0;
            padding:0 18px;
        }
        .size-guide-list li{
            margin:8px 0;
            color:#444;
            line-height:1.8;
        }

        .size-guide-notes{
            display:grid;
            grid-template-columns:repeat(2, minmax(0,1fr));
            gap:14px;
            margin-top:10px;
        }

        .size-note{
            background:#faf7f9;
            border:1px solid rgba(98,28,65,.08);
            border-radius:16px;
            padding:14px;
        }
        .size-note strong{
            display:block;
            margin-bottom:6px;
            color:#621c41;
        }

        .size-guides-header{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:12px;
            margin:28px 0 16px;
            flex-wrap:wrap;
        }

        .size-guides-header h2{
              margin:0;
    font-size:26px;
    color:#1f1f1f;
    font-weight:500;
    font-family:inherit;
        }

        .size-guides-subtitle{
            color:#666;
            font-size:14px;
        }

        .size-guides-grid{
            display:grid;
            grid-template-columns:repeat(3, minmax(0,1fr));
            gap:20px;
        }

        .guide-item{
            background:#fff;
            border-radius:22px;
            overflow:hidden;
            box-shadow:0 14px 34px rgba(0,0,0,.06);
            border:1px solid rgba(0,0,0,.05);
            transition:.25s ease;
            display:flex;
            flex-direction:column;
        }

        .guide-item:hover{
            transform:translateY(-4px);
            box-shadow:0 18px 40px rgba(0,0,0,.09);
        }

        .guide-thumb{
            background:#f5f5f7;
            padding:14px;
            display:flex;
            align-items:center;
            justify-content:center;
            min-height:300px;
        }

        .guide-thumb img{
            width:100%;
            max-height:340px;
            object-fit:contain;
            border-radius:14px;
            background:#fff;
        }

        .guide-body{
            padding:18px;
            display:flex;
            flex-direction:column;
            gap:10px;
            flex:1;
        }

        .guide-code{
             display:inline-flex;
    width:max-content;
    background:rgba(98,28,65,.08);
    color:#621c41;
    border-radius:999px;
    padding:6px 12px;
    font-size:13px;
    font-weight:500;
    font-family:inherit;
        }

        .guide-title{
           margin:0;
    font-size:20px;
    color:#1e1e1e;
    font-weight:500;
    line-height:1.5;
    font-family:inherit;
        }

        .guide-desc{
            margin:0;
            color:#666;
            line-height:1.8;
            font-size:14px;
            flex:1;
        }

        .guide-actions{
            display:flex;
            gap:10px;
            flex-wrap:wrap;
            margin-top:4px;
        }

        .guide-btn{
             display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 16px;
    border-radius:12px;
    text-decoration:none !important;
    font-weight:500;
    font-family:inherit;
    transition:.2s ease;
        }

        .guide-btn-primary{
            background:#621c41;
            color:#fff !important;
        }
        .guide-btn-primary:hover{
            background:#4d1532;
        }

        .guide-btn-light{
            background:#f4f4f6;
            color:#222 !important;
        }
        .guide-btn-light:hover{
            background:#ececf1;
        }

        .size-guide-help{
            margin-top:32px;
            background:#fff;
            border-radius:22px;
            padding:24px;
            box-shadow:0 10px 30px rgba(0,0,0,.06);
            border:1px solid rgba(0,0,0,.05);
            text-align:center;
        }

        .size-guide-help h3{
          margin:0 0 10px;
          color:#621c41;
        font-size:24px;
        font-weight:500;
        font-family:inherit;
        }

        .size-guide-help p{
            margin:0 0 16px;
            color:#555;
            line-height:1.9;
        }

        .whatsapp-help-btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            min-height:48px;
            padding:0 22px;
            background:#25D366;
            color:#fff !important;
            border-radius:14px;
            text-decoration:none !important;
            font-weight:500;
            font-family:inherit;
        }

        @media (max-width: 991px){
            .size-guide-grid-top{
                grid-template-columns:1fr;
            }
            .size-guides-grid{
                grid-template-columns:repeat(2, minmax(0,1fr));
            }
        }

        @media (max-width: 767px){
            .size-guide-page{
                padding:24px 0 45px;
            }
            .size-guide-hero{
                padding:24px 18px;
                border-radius:18px;
            }
            .size-guide-hero h1{
                font-size:26px;
            }
            .size-guide-card{
                padding:18px;
                border-radius:16px;
            }
            .size-guide-notes{
                grid-template-columns:1fr;
            }
            .size-guides-grid{
                grid-template-columns:1fr;
            }
            .guide-thumb{
                min-height:220px;
            }
            .guide-title{
                font-size:18px;
            }
        }

        .size-guide-banner-wrap{
    margin-bottom: 24px;
}

.size-guide-banner{
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #f8f4f6;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
    border: 1px solid rgba(98, 28, 65, .08);
}

.size-guide-banner-img{
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

@media (max-width: 767px){
    .size-guide-banner{
        border-radius: 18px;
    }

    .size-guide-banner-wrap{
        margin-bottom: 18px;
    }
     .size-guide-banner-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
}

.size-calculator-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    margin:24px 0;
    box-shadow:0 14px 38px rgba(0,0,0,.07);
    border:1px solid rgba(98,28,65,.08);
}

.size-calculator-head{
    display:flex;
    justify-content:space-between;
    gap:16px;
    margin-bottom:20px;
}

.size-product-code{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:rgba(98,28,65,.08);
    color:#621c41;
    padding:7px 14px;
    border-radius:999px;
    font-size:14px;
    margin-bottom:12px;
}

.size-calculator-card h2{
    margin:0 0 8px;
    color:#621c41;
    font-size:24px;
    font-weight:600;
    font-family:inherit;
}

.size-calculator-card p{
    margin:0;
    color:#555;
    line-height:1.9;
}

.smart-size-form{
    margin-top:18px;
}

.smart-size-fields{
   display:grid;
    grid-template-columns:1fr;
    gap:14px;
}

.smart-size-field{
    background:#faf7f9;
    border:1px solid rgba(98,28,65,.08);
    border-radius:18px;
    padding:16px;
}

.smart-size-field label{
    display:block;
    color:#222;
    font-weight:600;
    margin-bottom:8px;
    font-size:15px;
}

.measurement-input-wrap{
    display:flex;
    align-items:center;
    background:#fff;
    border:1px solid rgba(0,0,0,.12);
    border-radius:14px;
    overflow:hidden;
}

.measurement-input-wrap input{
    width:100%;
    border:0;
    outline:0;
    padding:13px 14px;
    font-size:16px;
    background:#fff;
}

.measurement-input-wrap span{
    padding:0 14px;
    color:#621c41;
    font-weight:600;
    white-space:nowrap;
}

.smart-size-field small{
    display:block;
    margin-top:9px;
    color:#666;
    line-height:1.7;
    font-size:13px;
}

.calculate-size-btn{
    margin-top:18px;
    min-height:48px;
    padding:0 22px;
    border:0;
    border-radius:14px;
    background:#621c41;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
    font-family:inherit;
}

.calculate-size-btn:hover{
    background:#4d1532;
    transform:translateY(-1px);
}

.size-result-box{
    margin-top:18px;
    border-radius:18px;
    padding:18px;
    line-height:1.8;
}

.size-result-box.success{
    background:#f1faf4;
    border:1px solid rgba(28,125,62,.18);
    color:#14532d;
}

.size-result-box.warning{
    background:#fff8eb;
    border:1px solid rgba(180,113,0,.18);
    color:#7c4a03;
}

.size-result-box strong{
    font-size:22px;
}

.size-guide-page .d-none{
    display:none !important;
}

@media (max-width: 767px){
    .size-calculator-card{
        padding:18px;
        border-radius:18px;
    }

    .smart-size-fields{
        grid-template-columns:1fr;
    }

    .calculate-size-btn{
        width:100%;
    }
}

.smart-guide-layout{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:20px;
    align-items:stretch;
    margin-top:18px;
}

.measure-visual-card{
    background:linear-gradient(180deg,#ffffff 0%,#faf7f9 100%);
    border:1px solid rgba(98,28,65,.08);
    border-radius:22px;
    padding:18px;
    box-shadow:0 10px 28px rgba(0,0,0,.05);
    display:flex;
    flex-direction:column;
    height:100%;
}

.measure-visual-head{
    margin-bottom:14px;
}

.measure-visual-head h3{
    margin:0 0 6px;
    color:#621c41;
    font-size:20px;
    font-weight:600;
    font-family:inherit;
}

.measure-visual-head p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.8;
}

.measure-visual-image-wrap{
    flex:1;
    background:#fff;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.05);
    padding:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:420px;
}

.measure-visual-image-wrap img{
    max-width:100%;
    max-height:520px;
    object-fit:contain;
    display:block;
}

.smart-form-card{
    background:#fff;
    border:1px solid rgba(98,28,65,.08);
    border-radius:22px;
    padding:18px;
    box-shadow:0 10px 28px rgba(0,0,0,.05);
}

.smart-chart-card{
    margin-top:22px;
    background:#fff;
    border-radius:24px;
    padding:22px;
    border:1px solid rgba(98,28,65,.08);
    box-shadow:0 14px 38px rgba(0,0,0,.06);
}

.smart-chart-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
    flex-wrap:wrap;
}

.smart-chart-head h3{
    margin:0 0 6px;
    color:#621c41;
    font-size:22px;
    font-weight:600;
    font-family:inherit;
}

.smart-chart-head p{
    margin:0;
    color:#666;
    line-height:1.8;
    font-size:14px;
}

.smart-chart-image-wrap{
    background:#fafafa;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.06);
    padding:14px;
    text-align:center;
}

.smart-chart-image-wrap img{
    width:100%;
    max-height:680px;
    object-fit:contain;
    display:block;
    margin:0 auto;
    border-radius:12px;
}

.smart-chart-open{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 16px;
    border-radius:999px;
    background:#f4eef2;
    color:#621c41 !important;
    text-decoration:none !important;
    font-weight:600;
    white-space:nowrap;
}

.smart-chart-open:hover{
    background:#621c41;
    color:#fff !important;
}

@media (max-width: 991px){
    .smart-guide-layout{
        grid-template-columns:1fr;
    }

    .measure-visual-image-wrap{
        min-height:auto;
    }

    .measure-visual-image-wrap img{
        max-height:460px;
    }
}

@media (max-width: 767px){
    .measure-visual-card,
    .smart-form-card,
    .smart-chart-card{
        border-radius:18px;
        padding:16px;
    }

    .measure-visual-image-wrap{
        padding:10px;
    }

    .measure-visual-image-wrap img{
        max-height:430px;
    }

    .smart-chart-image-wrap{
        padding:8px;
    }
}
.size-calculator-actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}

.size-calculator-actions .calculate-size-btn{
    margin-top:0;
}

.back-to-product-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 20px;
    border-radius:14px;
    background:#f4eef2;
    color:#621c41 !important;
    text-decoration:none !important;
    font-weight:600;
    font-family:inherit;
    transition:.2s ease;
    border:1px solid rgba(98,28,65,.12);
}

.back-to-product-btn:hover{
    background:#621c41;
    color:#fff !important;
    transform:translateY(-1px);
}

@media (max-width: 767px){
    .size-calculator-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .size-calculator-actions .calculate-size-btn,
    .back-to-product-btn{
        width:100%;
    }
}
