*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#f5f8fd;
color:#111827;
}

.container{
max-width:480px;
margin:auto;
background:#fff;
min-height:100vh;
position:relative;
overflow:hidden;
}

/* ========================= */
/* HEADER */
/* ========================= */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 20px;
}

.menu-btn,
.cart-btn{
width:44px;
height:44px;
background:#f5f8fd;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
cursor:pointer;
position:relative;
}

.cart-count{
position:absolute;
top:-4px;
right:-4px;
width:20px;
height:20px;
border-radius:50%;
background:#3b82f6;
color:#fff;
font-size:11px;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
}

.logo{
font-size:34px;
font-weight:700;
cursor: pointer;
}

.logo span{
color:#3b82f6;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
padding:10px 20px 0;
}

.hero h1{
font-size:52px;
line-height:1.1;
margin-bottom:18px;
font-weight:700;
}

.hero p{
font-size:17px;
line-height:1.7;
color:#6b7280;
margin-bottom:28px;
}

.primary-btn{
width:100%;
height:60px;
border:none;
border-radius:20px;
background:#3b82f6;
color:#fff;
font-size:17px;
font-weight:600;
cursor:pointer;
margin-bottom:14px;
}

.secondary-btn{
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff0081, #f3ed18fa);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #c4ccd7;
}

/* ========================= */
/* HERO PRODUCT */
/* ========================= */

.hero-image{
padding:30px 20px 10px;
}

.hero-box{
background:#f8fbff;
border-radius:34px;
padding:24px;
text-align:center;
}

.hero-box img{
width:100%;
}

/* ========================= */
/* PRODUCTS */
/* ========================= */

.section{
padding:20px;
}

.section-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:18px;
}

.section-top h2{
font-size:28px;
}

.section-top a{
text-decoration:none;
color:#3b82f6;
font-weight:600;
font-size:14px;
}

.products{
display:flex;
gap:16px;
overflow-x:auto;
padding-bottom:6px;
}

.products::-webkit-scrollbar{
display:none;
}

.product{
min-width:140px;
background:#fff;
border-radius:24px;
padding:14px;
border:1px solid #edf2f7;
cursor: pointer;
}

.product img{
width:100%;
border-radius:18px;
margin-bottom:12px;
}

.product h3{
font-size:15px;
margin-bottom:6px;
}

.product p{
color:#6b7280;
font-size:13px;
margin-bottom:10px;
}

.price{
font-weight:700;
color:#3b82f6;
}

/* ========================= */
/* FEATURES */
/* ========================= */

.features{
padding:10px 20px;
}

.feature{
background:#fff;
border:1px solid #edf2f7;
border-radius:28px;
padding:22px;
margin-bottom:16px;
}

.feature h3{
margin-bottom:10px;
font-size:18px;
}

.feature p{
color:#6b7280;
line-height:1.6;
}

/* ========================= */
/* STEPS */
/* ========================= */

.steps{
padding:20px;
}

.steps h2{
font-size:30px;
margin-bottom:10px;
}

.steps-sub{
color:#6b7280;
margin-bottom:30px;
}

.step-list{
display:flex;
justify-content:space-between;
gap:12px;
}

.step{
flex:1;
text-align:center;
}

.step-icon{
width:72px;
height:72px;
border-radius:50%;
background:#eef4ff;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
margin:auto auto 14px;
color:#3b82f6;
}

.step h4{
font-size:15px;
margin-bottom:8px;
}

.step p{
font-size:13px;
line-height:1.5;
color:#6b7280;
}

/* ========================= */
/* TESTIMONIAL */
/* ========================= */

.testimonial{
padding:20px;
}

.testimonial-card{
background:#fff;
border:1px solid #edf2f7;
border-radius:30px;
padding:24px;
}

.user{
display:flex;
align-items:center;
gap:14px;
margin-bottom:18px;
}

.avatar{
width:54px;
height:54px;
border-radius:50%;
background:#dbeafe;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
}

.user h4{
margin-bottom:4px;
}

.stars{
color:#facc15;
font-size:18px;
margin-bottom:18px;
}

/* ========================= */
/* BOTTOM NAV */
/* ========================= */

.bottom-nav{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
justify-content:center;
}

.bottom-inner{
width:100%;
max-width:480px;
background:#fff;
border-top:1px solid #edf2f7;
display:flex;
justify-content:space-around;
padding:14px 0;
}

.nav-item{
display:flex;
flex-direction:column;
align-items:center;
gap:6px;
font-size:12px;
color:#94a3b8;
}

.nav-item.active{
color:#3b82f6;
}

.plus-btn{
width:62px;
height:62px;
background:#3b82f6;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
margin-top:-30px;
box-shadow:
0 12px 25px rgba(59,130,246,0.35);
}

/* ========================= */
/* DESKTOP */
/* ========================= */

@media(min-width:992px){

.container{
max-width:1400px;
padding-bottom:0;
}

.hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
padding:80px;
gap:80px;
}

.hero-content h1{
font-size:72px;
}

.hero-image{
padding:0;
}

.hero-box{
padding:40px;
}

.products{
overflow:visible;
display:grid;
grid-template-columns:
repeat(6,1fr);
}

.step-list{
gap:30px;
}

.bottom-nav{
display:none;
}

}




/*CREATE DIZAYN*/
/* ========================= */
/* APP */
/* ========================= */

.app{
width:100%;
max-width:100vw;
min-height:100vh;
background:#fff;
overflow:hidden;
}

.main{
display:grid;
grid-template-columns:
1fr 340px;
gap:30px;
align-items:start;
}


/* ========================= */
/* EDITOR ZONE */
/* ========================= */

.editor-zone{
position:relative;
background:#f8fbff;
border-radius:38px;
padding:24px;
min-height:640px;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
}

/* ========================= */
/* TOOLBAR */
/* ========================= */

.toolbar{
position:absolute;
left:12px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:14px;
z-index:20;
}

.tool{
width:82px;
height:82px;
background:#fff;
border-radius:22px;
border:1px solid #edf2f7;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:8px;
font-size:11px;
font-weight:500;
cursor:pointer;
box-shadow:
0 8px 24px rgba(0,0,0,0.04);
transition:0.25s;
}

.tool:hover{
transform:translateY(-2px);
}

.tool i{
font-size:20px;
color:#3b82f6;
}

/* ========================= */
/* CANVAS */
/* ========================= */

.canvas-wrap{
width:100%;
display:flex;
justify-content:center;
align-items:center;
}

.canvas-box{
width:100%;
max-width:420px;
height:560px;
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

canvas{
border-radius:24px;
}

/* ========================= */
/* BOTTOM CONTROLS */
/* ========================= */

.bottom-controls{
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
}

.side-select{
display:flex;
gap:12px;
}

.side-btn{
width:82px;
height:82px;
border-radius:22px;
background:#fff;
border:2px solid #edf2f7;
display:flex;
justify-content:center;
align-items:center;
cursor:pointer;
flex-shrink:0;
}

.side-btn.active{
border-color:#3b82f6;
}

.side-btn img{
width:58px;
}

/* ========================= */
/* ZOOM */
/* ========================= */

.zoom-box{
flex:1;
height:70px;
border-radius:24px;
background:#fff;
border:1px solid #edf2f7;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 24px;
font-size:20px;
font-weight:600;
}

.zoom-btn{
cursor:pointer;
user-select:none;
font-size:28px;
}

/* ========================= */
/* LAYERS */
/* ========================= */

.layers{
width:70px;
height:70px;
border-radius:24px;
background:#fff;
border:1px solid #edf2f7;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
cursor:pointer;
}

/* ========================= */
/* ELEMENTS PANEL */
/* ========================= */

.elements-panel{
position:fixed;
left:0;
bottom:-100%;
width:100%;
background:#fff;
border-radius:34px 34px 0 0;
padding:26px;
z-index:9999;
transition:0.35s;
box-shadow:
0 -20px 60px rgba(0,0,0,0.12);
}

.elements-panel.active{
bottom:0;
}

.panel-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:26px;
}

.panel-title{
font-size:24px;
font-weight:700;
}

.close-panel{
font-size:24px;
cursor:pointer;
}

.elements-grid{
display:grid;
grid-template-columns:
repeat(4,1fr);
gap:16px;
}

.element{
height:84px;
background:#f8fbff;
border-radius:22px;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
cursor:pointer;
transition:0.2s;
}

.element:hover{
transform:scale(1.05);
}

/* ========================= */
/* DESKTOP */
/* ========================= */

@media(min-width:992px){




.editor-zone{
min-height:860px;
}

.toolbar{
left:26px;
}

.canvas-box{
max-width:620px;
height:760px;
}

.bottom-controls{
margin-top:10px;
}

.side-panel{
background:#f8fbff;
border-radius:34px;
padding:28px;
height:fit-content;
}

.side-panel h3{
font-size:30px;
margin-bottom:10px;
}

.side-panel p{
color:#6b7280;
margin-bottom:24px;
}

.price{
font-size:28px;
font-weight:700;
margin-bottom:24px;
}

.buy-btn{
width:100%;
height:60px;
border:none;
border-radius:22px;
background:#3b82f6;
color:#fff;
font-size:17px;
font-weight:600;
cursor:pointer;
}

.colors{
display:flex;
gap:10px;
margin-bottom:30px;
}

.color{
width:30px;
height:30px;
border-radius:50%;
border:2px solid #fff;
box-shadow:0 0 0 1px #d1d5db;
cursor:pointer;
}

.white{background:#fff;}
.black{background:#111;}
.blue{background:#315efb;}
.beige{background:#eadfcf;}

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px){

canvas{
transform:scale(1);
}

.side-panel{
display:none;
}

.toolbar{
left:8px;
}

.tool{
width:65px;
height:74px;
font-size:10px;
}

.editor-zone{
padding-left:86px;
min-height:560px;
}

.canvas-box{
height:520px;
}

}
/* END CREATE DIZAYN */

/*LEFT AND RIGHT MENU CSS*/
.drawer-overlay{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.35);
    z-index:1998;
    display:none;
}

.side-drawer,
.cart-drawer{
    position:fixed;
    top:0;
    height:100vh;
    width:82%;
    max-width:360px;
    background:#fff;
    z-index:1999;
    padding:24px;
    transition:.3s;
}

.side-drawer{
    left:-100%;
}

.cart-drawer{
    right:-100%;
}

.side-drawer.active{
    left:0;
}

.cart-drawer.active{
    right:0;
}

.drawer-overlay.active{
    display:block;
}

.drawer-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:28px;
}

.drawer-head h3{
    font-size:26px;
}

.close-drawer{
    width:42px;
    height:42px;
    border:none;
    border-radius:14px;
    background:#f4f8fd;
    font-size:24px;
}

.side-drawer a{
    display:block;
    padding:16px 0;
    color:#111827;
    text-decoration:none;
    font-weight:600;
    border-bottom:1px solid #edf2f7;
}

.cart-drawer p{
    color:#64748b;
    margin-bottom:20px;
}

.checkout-drawer-btn{
    width:100%;
    height:54px;
    border:none;
    border-radius:18px;
    background:#3b82f6;
    color:#fff;
    font-weight:700;
}
/*END LEFT AND RIGHT MENU CSS*/

.cart-item{
    display:flex;
    gap:14px;
    padding:14px;
    border:1px solid #edf2f7;
    border-radius:18px;
    margin-bottom:12px;
    background:#f8fbff;
}

.cart-item img{
    width:80px;
    height:80px;
    object-fit:contain;
    border-radius:14px;
    background:#fff;
}

.cart-item h4{
    font-size:15px;
    margin-bottom:4px;
}

.cart-item p{
    font-size:13px;
    color:#64748b;
    margin-bottom:6px;
}

.cart-actions{
    display:flex;
    gap:8px;
    margin-top:8px;
}

.cart-actions button{
    height:32px;
    padding:0 10px;
    border:none;
    border-radius:10px;
    background:#eaf1ff;
    color:#2563eb;
    font-weight:600;
}

#cartItems {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    padding-right: 8px;
}

.ready-page{
    padding:24px;
}

.ready-page h1{
    font-size:34px;
    margin-bottom:24px;
}

.ready-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.ready-card{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:28px;
    padding:16px;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.ready-img{
    aspect-ratio:1/1;
    background:#f6f9fd;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
}

.ready-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.ready-card h3{
    font-size:18px;
    margin-bottom:14px;
}

.ready-actions{
    display:flex;
    gap:10px;
}

.ready-actions button,
.ready-actions a{
    flex:1;
    height:42px;
    border:none;
    border-radius:14px;
    background:#3b82f6;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ready-actions button{
    background:#eef4ff;
    color:#2563eb;
    padding: 3px;
}

.ready-actions a{
    padding: 8px;
}

.ready-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.ready-modal img{
    max-width:92%;
    max-height:85vh;
    background:linear-gradient(104deg, #b0e4ff, #ffffff);
    border-radius:24px;
}

#closeReadyModal{
    position:absolute;
    top:20px;
    right:20px;
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    font-size:28px;
}

@media(max-width:768px){
    .ready-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .ready-page{
        padding:16px;
    }

    .ready-card{
        border-radius:22px;
        padding:12px;
    }

    .ready-actions{
        flex-direction:column;
    }
}

.design-categories{

    display:flex;
    gap:12px;

    overflow-x:auto;

    margin-bottom:24px;

    padding-bottom:5px;

}

.design-categories::-webkit-scrollbar{
    display:none;
}

.design-categories a{

    white-space:nowrap;

    height:44px;

    padding:0 18px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:999px;

    background:#fff;

    border:1px solid #e5e7eb;

    text-decoration:none;

    color:#111827;

    font-weight:600;

}

.design-categories a.active{

    background:#3b82f6;

    color:#fff;

    border-color:#3b82f6;

}

.pagination{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:40px;

}

.pagination a{

    width:42px;
    height:42px;

    border-radius:12px;

    background:#fff;

    border:1px solid #e5e7eb;

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    color:#111827;

}

.pagination a.active{

    background:#3b82f6;

    color:#fff;

    border-color:#3b82f6;

}

.my-orders-page{
    max-width:900px;
    margin:0 auto;
    padding:28px 18px 60px;
}

.orders-header{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    margin-bottom:45px;
}

.orders-header .logo{
    font-size:42px;
    font-weight:800;
}

.orders-header .logo span{
    color:#3b82f6;
}

.back-btn{
    position:absolute;
    left:0;
    width:46px;
    height:46px;
    border-radius:16px;
    background:#f4f8fd;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#0f172a;
    font-size:28px;
    font-weight:700;
}

.my-orders-page h1{
    font-size:42px;
    margin-bottom:28px;
    color:#0f172a;
}

.orders-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.order-card{
    min-height:135px;
    background:#f4f8fd;
    border:1px solid #e5edf7;
    border-radius:32px;
    padding:18px;
    display:grid;
    grid-template-columns:92px 1fr auto;
    gap:20px;
    align-items:center;
}

.order-img{
    width:92px;
    height:92px;
    border-radius:22px;
    background:#fff;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.order-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.order-info h3{
    font-size:22px;
    margin-bottom:8px;
}

.order-info strong{
    display:block;
    font-size:28px;
    color:#3b82f6;
    margin-bottom:6px;
}

.order-info small{
    color:#64748b;
    font-weight:600;
}

.order-status{
    padding:12px 18px;
    border-radius:999px;
    font-weight:800;
    white-space:nowrap;
}

.order-status.success{
    background:#bbf7d0;
    color:#166534;
}

.order-status.warning{
    background:#fef3c7;
    color:#92400e;
}

.order-status.danger{
    background:#fee2e2;
    color:#991b1b;
}

.order-status.info{
    background:#dbeafe;
    color:#1d4ed8;
}

.empty-orders{
    background:#f4f8fd;
    border-radius:30px;
    padding:40px 24px;
    text-align:center;
}

.empty-orders h3{
    font-size:26px;
    margin-bottom:10px;
}

.empty-orders p{
    color:#64748b;
    margin-bottom:22px;
}

.empty-orders a{
    display:inline-flex;
    height:50px;
    padding:0 24px;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:#3b82f6;
    color:#fff;
    text-decoration:none;
    font-weight:800;
}

@media(max-width:768px){
    .my-orders-page{
        padding:22px 14px 50px;
    }

    .orders-header .logo{
        font-size:34px;
    }

    .my-orders-page h1{
        font-size:34px;
    }

    .order-card{
        grid-template-columns:74px 1fr;
        border-radius:26px;
        gap:14px;
        position:relative;
    }

    .order-img{
        width:74px;
        height:74px;
        border-radius:18px;
    }

    .order-info h3{
        font-size:18px;
    }

    .order-info strong{
        font-size:24px;
    }

    .order-status{
        grid-column:2;
        width:max-content;
        padding:9px 14px;
        font-size:13px;
    }
}

.my-designs-page{
    max-width:1000px;
    margin:0 auto;
    padding:28px 18px 70px;
}

.my-designs-page h1{
    font-size:42px;
    margin-bottom:28px;
    color:#0f172a;
}

.my-designs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.my-design-card{
    background:#f4f8fd;
    border:1px solid #e5edf7;
    border-radius:30px;
    overflow:hidden;
    padding:14px;
}

.my-design-preview{
    width:100%;
    aspect-ratio:1;
    background:#fff;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.my-design-preview img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.my-design-info{
    padding:16px 6px 4px;
}

.my-design-info h3{
    font-size:20px;
    margin-bottom:6px;
    color:#0f172a;
}

.my-design-info p{
    color:#64748b;
    font-weight:600;
    margin-bottom:12px;
}

.design-meta{
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-bottom:14px;
}

.design-meta span{
    background:#fff;
    padding:8px 10px;
    border-radius:12px;
    font-size:13px;
    font-weight:700;
    color:#64748b;
}

.viewDesignBtn{
    width:100%;
    height:46px;
    border:none;
    border-radius:16px;
    background:#3b82f6;
    color:#fff;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
}

.design-view-modal{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.72);
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.design-view-modal img{
    max-width:92%;
    max-height:82vh;
    background:#fff;
    border-radius:24px;
}

#closeDesignView{
    position:absolute;
    top:22px;
    right:22px;
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    font-size:28px;
    background:#fff;
    cursor:pointer;
}

@media(max-width:768px){
    .my-designs-page{
        padding:22px 14px 60px;
    }

    .my-designs-page h1{
        font-size:34px;
    }

    .my-designs-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .my-design-card{
        border-radius:24px;
        padding:10px;
    }

    .my-design-preview{
        border-radius:20px;
    }

    .my-design-info h3{
        font-size:16px;
    }

    .design-meta{
        flex-direction:column;
        gap:6px;
    }
}

.order-modal{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.62);
    backdrop-filter:blur(8px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:16px;
}

.order-box{
    width:100%;
    max-width:560px;
    background:#fff;
    border-radius:30px;
    padding:22px;
    position:relative;
    max-height:90vh;
    overflow:auto;
    box-shadow:0 25px 70px rgba(15,23,42,.25);
}

.order-close{
    position:absolute;
    right:18px;
    top:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f4f8fd;
    font-size:24px;
    cursor:pointer;
}

.order-head{
    margin-bottom:20px;
    padding-right:50px;
}

.order-head span{
    display:inline-flex;
    padding:7px 12px;
    border-radius:999px;
    background:#eef4ff;
    color:#2563eb;
    font-size:13px;
    font-weight:800;
    margin-bottom:10px;
}

.order-head h2{
    font-size:28px;
    line-height:1.2;
}

.order-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.order-grid input{
    width:100%;
    height:52px;
    border:1px solid #e5e7eb;
    background:#f8fbff;
    border-radius:16px;
    padding:0 15px;
    outline:none;
    font-size:12px;
    font-weight:600;
}

.order-grid input:focus,
.sizes-grid input:focus{
    border-color:#3b82f6;
    box-shadow:0 0 0 4px rgba(59,130,246,.12);
    background:#fff;
}

.size-box{
    margin-top:16px;
    background:#f8fbff;
    border:1px solid #eaf0f7;
    border-radius:22px;
    padding:16px;
}

.size-title{
    margin-bottom:14px;
}

.size-title h3{
    font-size:18px;
    margin-bottom:3px;
}

.size-title small{
    color:#64748b;
    font-weight:600;
}

.sizes-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
}

.sizes-grid label{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:10px;
    display:flex;
    flex-direction:column;
    gap:8px;
    text-align:center;
    font-weight:900;
}

.sizes-grid input{
    width:100%;
    height:38px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    text-align:center;
    font-weight:800;
    outline:none;
}

.order-submit-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:20px;
    background:#3b82f6;
    color:#fff;
    font-size:16px;
    font-weight:900;
    margin-top:16px;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(37,99,235,.25);
    font-family: 'Inter';
}

@media(max-width:768px){
    .order-box{
        border-radius:26px;
        padding:18px;
    }

    .order-head h2{
        font-size:24px;
    }

    .order-grid{
        /*grid-template-columns:1fr;*/
    }

    .sizes-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

.case-model-summary{
    margin-top:16px;
    background:#f8fbff;
    border:1px solid #eaf0f7;
    border-radius:22px;
    padding:16px;
}

.case-model-summary h3{
    font-size:18px;
    margin-bottom:8px;
}

.case-model-summary p{
    background:#fff;
    border-radius:16px;
    padding:14px;
    font-weight:900;
    color:#2563eb;
}

.contact-page{
    max-width:1050px;
    margin:0 auto;
    padding:50px 18px 80px;
}

.contact-hero{
    text-align:center;
    margin-bottom:36px;
}

.contact-hero h1{
    font-size:46px;
    margin-bottom:12px;
}

.contact-hero p{
    color:#64748b;
    font-size:18px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.contact-card{
    background:#fff;
    border:1px solid #eaf0f7;
    border-radius:28px;
    padding:26px 18px;
    text-align:center;
    text-decoration:none;
    color:#0f172a;
    box-shadow:0 12px 30px rgba(15,23,42,.04);
}

.contact-icon{
    width:62px;
    height:62px;
    margin:0 auto 16px;
    border-radius:20px;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.contact-card span{
    display:block;
    color:#64748b;
    font-weight:700;
    margin-bottom:8px;
}

.contact-card b{
    color:#2563eb;
}

@media(max-width:768px){
    .contact-hero h1{
        font-size:34px;
    }

    .contact-grid{
        grid-template-columns:1fr 1fr;
        gap:14px;
    }

    .contact-card{
        border-radius:22px;
        padding:22px 12px;
    }
}

.info-page{
    max-width:850px;
    margin:0 auto;
    padding:50px 18px 80px;
}

.info-page h1{
    font-size:42px;
    margin-bottom:24px;
    color:#0f172a;
}

.info-page h2{
    font-size:24px;
    margin-top:30px;
    margin-bottom:12px;
    color:#0f172a;
}

.info-page p{
    font-size:17px;
    line-height:1.8;
    color:#475569;
    margin-bottom:14px;
}

@media(max-width:768px){
    .info-page{
        padding:34px 16px 60px;
    }

    .info-page h1{
        font-size:34px;
    }

    .info-page h2{
        font-size:21px;
    }

    .info-page p{
        font-size:16px;
    }
}

.payment-page{
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 18px;
}

.payment-card{
    width:100%;
    max-width:520px;
    background:#fff;
    border:1px solid #eaf0f7;
    border-radius:32px;
    padding:36px 26px;
    text-align:center;
    box-shadow:0 20px 60px rgba(15,23,42,.06);
}

.payment-icon{
    width:78px;
    height:78px;
    margin:0 auto 22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:900;
}

.payment-card.success .payment-icon{
    background:#dcfce7;
    color:#15803d;
}

.payment-card.failed .payment-icon{
    background:#fee2e2;
    color:#b91c1c;
}

.payment-card h1{
    font-size:34px;
    margin-bottom:14px;
    color:#0f172a;
}

.payment-card p{
    font-size:17px;
    line-height:1.7;
    color:#64748b;
    margin-bottom:22px;
}

.order-code{
    background:#f8fbff;
    border:1px dashed #cbd5e1;
    border-radius:18px;
    padding:14px;
    margin-bottom:24px;
    color:#475569;
}

.payment-btn{
    min-height:52px;
    padding:0 22px;
    border-radius:17px;
    background:#3b82f6;
    color:#fff;
    text-decoration:none;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.payment-btn.light{
    background:#eef4ff;
    color:#2563eb;
}

.payment-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.payment-card small{
    color:#64748b;
    line-height:1.6;
}

@media(max-width:768px){
    .payment-card{
        border-radius:26px;
        padding:30px 20px;
    }

    .payment-card h1{
        font-size:28px;
    }

    .payment-actions{
        flex-direction:column;
    }

    .payment-btn{
        width:100%;
    }
}