/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    height:auto;
}

.card img,
.product img,
.item img{
    transition:0.3s ease;
}

.card:hover img,
.item:hover img{
    transform:scale(1.03);
}

body{
    font-family:'Inter', sans-serif;
    background:#0b0b0b;
    color:white;
    overflow-x:hidden;
}

.form{
    background:#111;
    padding:30px;
    border-radius:15px;
    width:400px;
    border:1px solid rgba(255,215,0,0.2);
    box-shadow:0 0 30px rgba(255,215,0,0.15);
}

input,
textarea{
    width:100%;
    margin:10px 0;
    padding:12px;
    background:#0c0c0c;
    border:1px solid #222;
    color:white;
    border-radius:8px;
    box-sizing:border-box;
}

textarea{
    min-height:120px;
    resize:none;
}

button{
    width:100%;
    padding:14px;
    background:linear-gradient(45deg,#b8860b,#CA9740);ffd700
    border:none;
    color:black;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    opacity:0.9;
}

.small{
    font-size:12px;
    color:gold;
    margin-top:-5px;
}

.logo1{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.logo1{
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.logo1 img {
    height: 50px;
    width:200px;
}

.logo2 {
    display: flex;
    justify-content: center;   /* centre horizontalement */
    align-items: center;       /* centre verticalement */
    width: 100%;
}

.logo2 img {
    height: 180px;
    width: auto;
    max-width: 100%;
    object-fit:contain;
    display:block;
    margin:0 auto 10px;
    margin-top:-100px;
}

/* MOBILE */

@media(max-width:768px){

.logo1 img {
    height: 40px;
    width:150px;
}

.logo2 img {
    height: 160px;
    width: auto;
    margin-top:-100px;
}

}

/* =========================
   HEADER
========================= */
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:#111;
    border-bottom:1px solid rgba(255,215,0,0.25);
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(10px);
}

.logo1{
    font-family:'Great Vibes', cursive;
    font-size:40px;
    color:#CA9740;
    letter-spacing:2px;
    text-shadow:0 0 15px rgba(255,215,0,0.35);
}

.cart{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.cart a{
    color:white;
    text-decoration:none;
    transition:0.3s;
    font-size:15px;
}

.cart a:hover{
    color:#CA9740;
}

/* =========================
   BUTTONS
========================= */
.btn,
.hero-btn,
.top-btn,
.login-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 22px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
    border:none;
    cursor:pointer;
}

.btn:hover,
.hero-btn:hover,
.top-btn:hover{
    transform:translateY(-3px);
}

.gold-btn,
.btn,
.login-btn,
.top-btn{
    background:linear-gradient(45deg,#b8860b,#CA9740);
    color:black;
}

.dark-btn{
    background:#111;
    color:white;
    border:1px solid rgba(255,215,0,0.35);
}

.red{
    background:#b30000;
    color:white;
}

/* =========================
   HERO
========================= */
.hero{
    min-height:90vh;

    background:
    linear-gradient(rgba(0,0,0,0.72),rgba(0,0,0,0.82)),
    url('images/promotion.jpg') center/cover;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:80px 20px;

    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,gold 0%,transparent 70%);
    opacity:0.08;
    top:-250px;
    right:-150px;
}

.hero-overlay{
    max-width:1200px;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    color:#CA9740;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-family:'Great Vibes', sans-serif;
    font-size:60px;
    line-height:1.2;
    color:#CA9740;
    font-weight:300;
    margin-bottom:0px;
}

.hero h2{
    font-family:'Great Vibes', sans-serif;
    font-size:50px;
    color:#CA9740;
    font-weight:300;
    line-height:1.0;
    max-width:850px;
    margin-bottom:5px;
}

.hero h3{
    font-size:30px;
    color:#fff;
    font-weight:300;
    line-height:1.1;
    max-width:850px;
    margin-bottom:5px;
}

.hero p{
    color:#cfcfcf;
    line-height:1.8;
    margin-top:20px;
    font-size:20px;
}

.hero-buttons{
    margin-top:25px;
    font-size:20px;

    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

/* =========================
   TRUST BOXES
========================= */
.hero-trust{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:40px;
}

.trust-box{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,215,0,0.2);
    padding:14px 20px;
    border-radius:14px;
    color:#ddd;
    backdrop-filter:blur(10px);
}

/* =========================
   HERO STATS
========================= */
.hero-stats{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-top:60px;
    flex-wrap:nowrap;
}

.stat{
    min-width:180px;
    padding:20px;
    border-radius:18px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,215,0,0.15);
    text-align:center;
    backdrop-filter:blur(10px);
}

.stat h3{
    color:#CA9740;
    font-size:32px;
    margin-bottom:8px;
}

.stat p{
    color:#bbb;
    font-size:15px;
}

/* =========================
   FEATURES
========================= */
.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    padding:80px 40px;
}

.feature{
    background:#111;
    border:1px solid rgba(255,215,0,0.15);
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:0.3s;
}

.feature:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(255,215,0,0.12);
}

.icon{
    font-size:45px;
    margin-bottom:20px;
}

.feature h3{
    margin-bottom:15px;
    color:#CA9740;
}

.feature p{
    color:#bdbdbd;
    line-height:1.7;
}

/* =========================
   PRODUCTS GRID
========================= */
.grid{
    width:92%;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

    padding:20px 0 80px;
}

.card{
    background:#151515;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(255,215,0,0.12);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 30px rgba(255,215,0,0.12);
}

.product-img{
    width:100%;
    height:260px;
    object-fit:cover;
    object-position:center;
    display:block;
}

.product-img{
    border:1px solid rgba(255,215,0,0.12);
}

.card-body{
    padding:22px;
}

.card-body h3{
    font-size:22px;
    margin-bottom:12px;
}

.card-body p{
    color:#aaa;
    line-height:1.7;
}

.price{
    color:#CA9740 !important;
    font-size:28px;
    font-weight:700;
    margin:20px 0;
}

/* =========================
   PRODUCT PAGE
========================= */
.product-page{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:50px;
}

.gallery{
    position:sticky;
    top:20px;
}

.main-image{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    border:1px solid rgba(255,215,0,0.2);
}

.thumb-row{
    display:flex;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}

.thumb{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    border:2px solid transparent;
    transition:0.3s;
}

.thumb:hover{
    border-color:#CA9740;
}

.product-info h1{
    font-size:50px;
    color:#CA9740;
    margin-bottom:20px;
}

.badge{
    display:inline-block;
    padding:10px 15px;
    background:#111;
    border:1px;
    border-radius:10px;
    margin-bottom:20px;
}

.desc{
    line-height:1.9;
    color:#ccc;
    margin-bottom:30px;
}

.secure-box{
    background:#111;
    border:1px solid rgba(255,215,0,0.15);
    padding:25px;
    border-radius:18px;
    margin-bottom:30px;
}

.buy-btn{
    display:block;
    text-align:center;
    padding:18px;
    border-radius:14px;
    background:linear-gradient(45deg,#b8860b,#CA9740);
    color:black;
    text-decoration:none;
    font-weight:800;
    font-size:18px;
}

/* =========================
   DASHBOARD
========================= */
.container,
.stats{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:20px;
    padding:20px;
    color:white;
}

.box,
.card-dashboard{
    background:#151515;
    border-radius:20px;
    border:1px solid rgba(255,215,0,0.15);
    padding:25px;
}

/* =========================
   PRODUCTS DASHBOARD
========================= */
.products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:20px;
}

.product{
    background:#111;
    border-radius:18px;
    border:1px solid rgba(255,215,0,0.12);
    padding:15px;
    transition:0.3s;
}

.product:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(255,215,0,0.12);
}

.product img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:15px;
}

/* =========================
   EMPTY STATE
========================= */
.empty-state,
.empty-products{
    grid-column:1/-1;

    background:#111;
    border:1px solid rgba(255,215,0,0.15);

    border-radius:25px;

    padding:70px 30px;

    text-align:center;

    max-width:950px;
    margin:20px auto;
}

.empty-state h2,
.empty-products h2{
    color:#CA9740;
    font-size:38px;
    margin-bottom:20px;
}

.empty-state p,
.empty-products p{
    color:#aaa;
    line-height:1.8;
    margin-bottom:30px;
    font-size:18px;
}

/* =========================
   MODAL
========================= */
#modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.92);
    justify-content:center;
    align-items:center;
    flex-direction:column;
    z-index:9999;
}

#modal img{
    max-width:90%;
    max-height:80vh;
    border-radius:15px;
}

#thumbs{
    display:flex;
    gap:10px;
    margin-top:20px;
    flex-wrap:wrap;
    justify-content:center;
}

#thumbs img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
    border:2px solid rgba(255,215,0,0.25);
    cursor:pointer;
}

/* =========================
   TABLE
========================= */
.table{
    width:92%;
    margin:40px auto;
    border-collapse:collapse;
}

.table th,
.table td{
    border:1px solid #222;
    padding:14px;
    text-align:center;
}

.table th{
    background:#111;
    color:#CA9740;
}

/* =========================
   GOLD
========================= */
.gold{
    color:#CA9740;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1200px){

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

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

}

@media(max-width:900px){

    .header{
        flex-direction:column;
        gap:20px;
        padding:20px;
        text-align:center;
    }

    .logo1{
        font-size:52px;
    }

    .hero{
        min-height:auto;
        padding:120px 20px 90px;
    }

    .hero h1{
        font-size:55px;
        line-height:1.1;
    }

    .hero h2{
        font-size:22px;
        margin-top:25px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-stats{
        gap:30px;
    }

    .features{
        grid-template-columns:1fr;
        padding:50px 20px;
    }

    .grid{
        grid-template-columns:repeat(2,1fr);
        width:94%;
    }

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

    .container,
    .stats{
        grid-template-columns:1fr;
    }

    .product-page{
        grid-template-columns:1fr;
        padding:25px;
    }

    .main-image{
        height:450px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:700px){

    .hero-stats{
        display:flex;
        flex-direction:row !important;
        justify-content:center;
        align-items:stretch;
        flex-wrap:nowrap !important;
        gap:10px;
    }

    .stat{
        width:33.33%;
        min-width:auto;
        padding:15px 8px;
    }

    .stat h3{
        font-size:22px;
    }

    .stat p{
        font-size:11px;
    }

}

@media(max-width:600px){

    .logo1{
        font-size:42px;
    }

    .cart{
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero h2{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-btn,
    .btn,
    .top-btn{
        width:100%;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .products{
        grid-template-columns:1fr;
    }

    .product-page{
        padding:20px;
    }

    .main-image{
        height:320px;
    }

    .product-info h1{
        font-size:36px;
    }

    .price{
        font-size:28px;
    }

    .table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }

}

/* =========================
   EDIT PRODUCT PAGE
========================= */

.edit-container{
    max-width:1100px;
    margin:50px auto;
    padding:30px;
}

.edit-title{
    font-size:42px;
    color:#CA9740;
    margin-bottom:30px;
    text-align:center;
}

/* GRID */
.edit-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:35px;
}

/* LEFT */
.edit-gallery{
    background:#111;
    border:1px solid rgba(255,215,0,0.15);
    border-radius:25px;
    padding:25px;
}

.edit-gallery h3{
    color:#CA9740;
    margin-bottom:20px;
}

.images{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.img-box{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    border:1px solid rgba(255,215,0,0.12);
    background:#0c0c0c;
}

.img-box img{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
    transition:0.3s;
}

.img-box:hover img{
    transform:scale(1.05);
}

/* DELETE BTN */
.delete{
    position:absolute;
    top:10px;
    right:10px;

    width:32px;
    height:32px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#b30000;
    color:white;
    text-decoration:none;
    font-size:20px;
    font-weight:bold;

    transition:0.3s;
}

.delete:hover{
    transform:scale(1.1);
    background:red;
}

/* RIGHT */
.edit-form{
    background:#111;
    border:1px solid rgba(255,215,0,0.15);
    border-radius:25px;
    padding:35px;
}

.edit-form h3{
    color:gold;
    margin-bottom:25px;
}

.edit-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.edit-form input,
.edit-form textarea{
    width:100%;
    background:#0c0c0c;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding:16px;
    color:white;
    font-size:16px;
    transition:0.3s;
}

.edit-form input:focus,
.edit-form textarea:focus{
    outline:none;
    border-color:#CA9740;
    box-shadow:0 0 15px rgba(255,215,0,0.15);
}

.edit-form textarea{
    min-height:180px;
    resize:none;
    line-height:1.7;
}

.edit-form input[type="file"]{
    padding:14px;
    cursor:pointer;
}

.limit{
    color:#999;
    margin-top:15px;
    text-align:center;
    font-size:14px;
}

/* SAVE BUTTON */
.save-btn{
    background:linear-gradient(45deg,#b8860b,#CA9740);
    color:black;
    border:none;
    padding:18px;
    border-radius:14px;
    font-size:17px;
    font-weight:800;
    cursor:pointer;
    transition:0.3s;
}

.save-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(255,215,0,0.25);
}

/* RESPONSIVE */
@media(max-width:900px){

    .edit-grid{
        grid-template-columns:1fr;
    }

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

}

@media(max-width:600px){

    .edit-container{
        padding:20px;
        margin:20px auto;
    }

    .edit-title{
        font-size:30px;
    }

    .images{
        grid-template-columns:1fr;
    }

    .img-box img{
        height:220px;
    }

    .edit-form{
        padding:25px;
    }

}

/* =========================
   AUTH PAGE
========================= */

.auth-page{
    min-height:90vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:10px 20px;

    background:
    radial-gradient(circle at top right, rgba(255,215,0,0.08), transparent 40%),
    radial-gradient(circle at bottom left, rgba(255,215,0,0.05), transparent 35%),
    #080808;
}

.auth-box{
    width:100%;
    max-width:520px;

    background:rgba(17,17,17,0.96);

    border:1px solid rgba(255,215,0,0.18);

    border-radius:28px;

    padding:40px;

    box-shadow:
    0 0 50px rgba(255,215,0,0.08),
    0 0 120px rgba(255,215,0,0.03);

    backdrop-filter:blur(12px);
}

.auth-logo{
    font-family:'Great Vibes', cursive;
    font-size:50px;
    color:#CA9740;
    text-align:center;
    margin-bottom:10px;
    text-shadow:0 0 18px rgba(255,215,0,0.35);
}

.auth-subtitle{
    text-align:center;
    color:#aaa;
    margin-bottom:15px;
    line-height:1.2;
}

.auth-tabs{
    display:flex;
    gap:10px;
    margin-bottom:15px;
}

.auth-tab{
    flex:1;
    text-align:center;
    padding:12px;
    border-radius:14px;
    background:#0d0d0d;
    border:1px solid rgba(255,215,0,0.12);
    color:#999;
    font-weight:700;
}

.auth-tab.active{
    background:linear-gradient(45deg,#b8860b,#CA9740);
    color:black;
}

.auth-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.auth-form h3{
    color:#CA9740;
    font-size:20px;
    margin-bottom:5px;
}

.auth-form input{
    width:100%;
    padding:16px 16px;
    border-radius:14px;
    border:1px solid rgba(255,215,0,0.12);
    background:#0b0b0b;
    color:white;
    outline:none;
    transition:0.3s;
    font-size:14px;
}

.auth-form input:focus{
    border-color:#CA9740;
    box-shadow:0 0 15px rgba(255,215,0,0.15);
}

.auth-form button{
    margin-top:10px;
    padding:16px;
    border:none;
    border-radius:14px;
    background:linear-gradient(45deg,#b8860b,#CA9740);
    color:black;
    font-weight:800;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.auth-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(255,215,0,0.18);
}

.auth-separator{
    display:flex;
    align-items:center;
    gap:15px;
    margin:35px 0px;
    color:#666;
}

.auth-separator::before,
.auth-separator::after{
    content:'';
    flex:1;
    height:1px;
    background:rgba(255,255,255,0.08);
}

.auth-error{
    background:rgba(255,0,0,0.08);
    border:1px solid rgba(255,0,0,0.2);
    color:#ff7b7b;
    padding:14px;
    border-radius:14px;
    margin-bottom:20px;
    text-align:center;
}

.auth-success{
    background:rgba(0,255,120,0.08);
    border:1px solid rgba(0,255,120,0.2);
    color:#7dffb2;
    padding:14px;
    border-radius:14px;
    margin-bottom:20px;
    text-align:center;
}

/* MOBILE */
@media(max-width:600px){

    .auth-box{
        padding:30px 22px;
        border-radius:22px;
    }

    .auth-logo{
        font-size:46px;
    }

    .auth-form h3{
        font-size:22px;
    }

}

/* =========================
   CART PAGE
========================= */
.cart-container{
    width:92%;
    max-width:1200px;
    margin:50px auto 80px;
}

.cart-title{
    text-align:center;
    font-size:42px;
    color:#CA9740;
    margin-bottom:40px;
}

.cart-empty{
    background:#111;
    border:1px solid rgba(255,215,0,0.15);
    border-radius:25px;
    padding:70px 30px;
    text-align:center;
}

.cart-empty h3{
    color:#CA9740;
    font-size:32px;
    margin-bottom:15px;
}

.cart-empty p{
    color:#aaa;
    font-size:18px;
    margin-bottom:30px;
}

/* ITEMS */
.cart-items{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.item{
    display:flex;
    align-items:center;
    gap:25px;

    background:#111;
    border:1px solid rgba(255,215,0,0.12);

    border-radius:22px;

    padding:20px;

    transition:0.3s;
}

.item:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(255,215,0,0.08);
}

.item img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:18px;
}

.item-content{
    flex:1;
}

.item-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:white;
}

.item-content p{
    color:#aaa;
    line-height:1.7;
}

.item .price{
    font-size:30px;
    color:#CA9740;
    margin:15px 0;
    font-weight:700;
}

/* TOTAL BOX */
.cart-total{
    margin-top:40px;

    background:#111;
    border:1px solid rgba(255,215,0,0.15);

    border-radius:25px;

    padding:35px;

    text-align:center;
}

.cart-total h2{
    font-size:38px;
    margin-bottom:25px;
}

.cart-total .price{
    color:#CA9740;
}

/* PAY BUTTON */
.pay{
    width:100%;
    max-width:420px;

    padding:18px;

    border:none;
    border-radius:14px;

    background:linear-gradient(45deg,#b8860b,#ffd700);

    color:black;
    font-size:18px;
    font-weight:800;

    cursor:pointer;
    transition:0.3s;
}

.pay:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(255,215,0,0.25);
}

/* REMOVE BTN */
.remove-btn{
    background:#b30000;
    color:white;
}

/* =========================
   MOBILE
========================= */
@media(max-width:800px){

    .hero h1{
    font-family:'Great Vibes', sans-serif;
    font-size:30px;
    line-height:1.0;
    color:#CA9740;
    font-weight:300;
    margin-bottom:0px;
}

.hero h2{
    font-family:'Great Vibes', sans-serif;
    font-size:25px;
    color:#CA9740;
    font-weight:300;
    line-height:1.0;
    max-width:850px;
    margin-bottom:5px;
}

.hero h3{
    font-size:20px;
    color:#fff;
    font-weight:300;
    line-height:1.0;
    max-width:850px;
    margin-bottom:5px;
}

.hero p{
    color:#cfcfcf;
    line-height:1.0;
    margin-top:20px;
    font-size:16px;
}
    
    .item{
        flex-direction:column;
        text-align:center;
    }

    .item img{
        width:100%;
        height:270px;
    }

    .item-content h3{
        font-size:24px;
    }

    .cart-title{
        font-size:30px;
    }

    .cart-total h2{
        font-size:25px;
    }

}

@media(max-width:500px){

    .cart-container{
        width:94%;
        margin-top:30px;
    }

    .item{
        padding:15px;
    }

    .item img{
        height:220px;
    }

    .item .price{
        font-size:24px;
    }

    .pay{
        font-size:16px;
        padding:16px;
    }

}