/* ==========================================
   MATCH POINT BURQUA CENTRE
   Brand theme + light/dark UI
========================================== */

:root{
    color-scheme:light;
    --brand-green:#0F2E26;
    --brand-green-deep:#071A15;
    --brand-gold:#C29A5B;
    --brand-gold-soft:#E3C990;
    --brand-black:#000000;
    --page:#FBFAF7;
    --surface:#FFFFFF;
    --surface-alt:#F3EFE7;
    --text:#14241F;
    --muted:#66736D;
    --hairline:rgba(15,46,38,.14);
    --brand-shadow:0 24px 70px rgba(15,46,38,.13);
    --radius:8px;
    --transition:220ms ease;
}

body.dark-mode{
    color-scheme:dark;
    --page:#071411;
    --surface:#0D221D;
    --surface-alt:#102B24;
    --text:#F8F3EA;
    --muted:#C3BBAF;
    --hairline:rgba(227,201,144,.22);
    --brand-shadow:0 28px 80px rgba(0,0,0,.42);
}

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

html{
    scroll-behavior:smooth;
    scroll-padding-top:96px;
}

body{
    font-family:'Montserrat',Arial,sans-serif;
    background:
        linear-gradient(180deg,rgba(194,154,91,.08),transparent 360px),
        var(--page);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.7;
    transition:background-color var(--transition),color var(--transition);
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

h1,h2,h3,
.footer-content h2,
.about-content h2,
.section-title h2,
.card h3,
.feature-card h3,
.category-card h3,
.testimonial-card h4,
.contact-info h2,
.stat h2{
    font-family:'Cinzel','Times New Roman',serif;
    letter-spacing:.02em;
}

.container,
.collection-grid,
.stats-grid,
.category-grid,
.footer-content{
    width:min(1180px,calc(100% - 40px));
}

.container{
    margin:auto;
}

.section{
    padding:32px 0;
}

main > .collections:first-child{
    padding-top:116px;
}

/* ==========================================
   PRELOADER
========================================== */

#loader{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:Center;
    align-items:Center;
    z-index:9999;
    background:var(--page);
}

.spinner{
    width:60px;
    height:60px;
    border-radius:50%;
    animation:spin 1s linear infinite;
    border:5px solid var(--hairline);
    border-top:5px solid var(--brand-gold);
}

@keyframes spin{
    100%{ transform:rotate(360deg); }
}

/* ==========================================
   NAVBAR
========================================== */

header,
header.sticky{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:color-mix(in srgb,var(--page) 88%,transparent);
    border-bottom:1px solid var(--hairline);
    box-shadow:none;
    backdrop-filter:blur(18px);
}

header.sticky{
    box-shadow:0 16px 40px rgba(0,0,0,.08);
}

.navbar{
    width:min(1180px,calc(100% - 40px));
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:Center;
    padding:14px 0;
    min-height:84px;
    gap:22px;
}

.logo{
    display:inline-flex;
    flex-direction:column;
    align-items:Center;
    gap:7px;
    line-height:1;
    text-decoration:none;
}

.brand-main{
    display:flex;
    align-items:Center;
    gap:clamp(8px,1.4vw,16px);
    font-family:'Cinzel',serif;
    font-weight:600;
    font-size:clamp(19px,2.3vw,29px);
    letter-spacing:.09em;
    text-transform:uppercase;
    color:var(--brand-green);
    white-space:nowrap;
}

body.dark-mode .brand-main{
    color:var(--brand-gold-soft);
}

.brand-diamond{
    width:9px;
    height:9px;
    flex:none;
    background:var(--brand-gold);
    transform:rotate(45deg);
}

.brand-sub{
    display:flex;
    align-items:Center;
    gap:9px;
    font-family:'Cinzel',serif;
    font-weight:500;
    font-size:clamp(9px,.95vw,12px);
    letter-spacing:.15em;
    color:var(--brand-gold);
    white-space:nowrap;
}

.brand-diamond-sm{
    width:5px;
    height:5px;
    flex:none;
    background:var(--brand-gold);
    transform:rotate(45deg);
}

.brand-line{
    width:clamp(28px,3.4vw,52px);
    height:1px;
    flex:none;
    background:var(--brand-gold);
}

.nav-links{
    display:flex;
    align-items:Center;
    gap:clamp(18px,2.4vw,34px);
    color:var(--muted);
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.nav-links a{
    font-weight:500;
    transition:var(--transition);
    position:relative;
    color:inherit;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--brand-green);
}

body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active{
    color:var(--brand-gold-soft);
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:0;
    height:1px;
    background:var(--brand-gold);
    transition:.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.theme-toggle,
.menu-btn{
    min-height:44px;
    border:1px solid var(--hairline);
    border-radius:var(--radius);
    background:var(--surface);
    color:var(--text);
    cursor:pointer;
    transition:transform var(--transition),border-color var(--transition),background-color var(--transition);
}

.theme-toggle{
    display:inline-flex;
    align-items:Center;
    justify-content:Center;
    gap:8px;
    padding:0 14px;
    font-size:.78rem;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.theme-toggle:hover,
.menu-btn:hover{
    transform:translateY(-2px);
    border-color:var(--brand-gold);
}

.menu-btn{
    display:none;
    width:46px;
    font-size:26px;
    cursor:pointer;
    color:var(--text);
}

/* ==========================================
   BUTTONS
========================================== */

.btn{
    display:inline-flex;
    align-items:Center;
    justify-content:Center;
    min-height:50px;
    padding:0 24px;
    border:1px solid var(--brand-gold);
    border-radius:var(--radius);
    background:var(--brand-gold);
    color:var(--brand-green-deep);
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    box-shadow:none;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 36px rgba(194,154,91,.28);
}

.btn::before{
    display:none;
}

.btn.secondary{
    background:transparent;
    border:2px solid var(--brand-gold);
    color:white;
    box-shadow:none;
}

.btn.secondary:hover{
    background:var(--brand-gold);
    color:var(--brand-green-deep);
}

/* ==========================================
   HERO
========================================== */

.hero{
    position:relative;
    display:flex;
    align-items:Center;
    justify-content:flex-start;
    text-align:left;
    background:
        linear-gradient(90deg,rgba(194,154,91,.12),transparent 45%),
        var(--surface-alt);
    min-height:0;
    height:auto;
    padding:132px 20px 56px;
    isolation:isolate;
    overflow:hidden;
}

.hero-content{
    position:relative;
    z-index:2;
    color:var(--text);
    width:min(1180px,calc(100% - 40px));
    max-width:560px;
    margin:auto;
}

.hero h4,
.about-content h5,
.section-title h5,
.contact-info h5{
    color:var(--brand-gold);
    font-size:.78rem;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.hero h4{
    margin-bottom:12px;
    animation:fadeDown 1s;
}

.hero h1{
    margin-bottom:14px;
    animation:fadeUp 1.2s;
    max-width:560px;
    font-size:clamp(2rem,4.2vw,3.1rem);
    line-height:1.14;
    color:var(--brand-green);
}

body.dark-mode .hero h1{
    color:white;
}

.hero p{
    margin-bottom:22px;
    animation:fadeUp 1.4s;
    max-width:460px;
    color:var(--muted);
    font-size:1rem;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    animation:fadeUp 1.6s;
    justify-content:flex-start;
    gap:12px;
}

.hero-buttons .btn{
    min-height:44px;
    padding:0 20px;
    font-size:.82rem;
}

.hero-buttons .btn.secondary{
    color:var(--brand-green);
}

body.dark-mode .hero-buttons .btn.secondary{
    color:white;
}

/* ==========================
   ABOUT
========================== */

.about{
    padding:32px 0;
}

.about .container{
    display:grid;
    align-items:Center;
    grid-template-columns:minmax(0,.55fr) minmax(0,1fr);
    gap:clamp(20px,3.5vw,36px);
}

.about-image img{
    border-radius:0;
    box-shadow:none;
    transition:transform .6s ease;
    height:auto;
    aspect-ratio:3/2;
    object-fit:cover;
}
.about-image:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 48px rgba(15,46,38,.16);
}

.about-image::after{
    content:"";
    position:absolute;
    inset:10px -8px -8px 10px;
    z-index:-1;
    border:1px solid var(--brand-gold);
    border-radius:12px;
}

.about-image-inner{
    overflow:hidden;
    border-radius:7px;
}

.about-image img{
    border-radius:0;
    box-shadow:none;
    transition:transform .6s ease;
    height:auto;
    aspect-ratio:3/2;
    object-fit:cover;
}

.about-image:hover img{
    transform:scale(1.08);
}

.about-content h5{
    margin-bottom:10px;
}

.about-content h2,
.section-title h2,
.contact-info h2{
    color:var(--brand-green);
    font-size:clamp(1.6rem,3vw,2.4rem);
    line-height:1.16;
}

body.dark-mode .about-content h2,
body.dark-mode .section-title h2,
body.dark-mode .contact-info h2{
    color:white;
}

.about-content h2{
    margin-bottom:14px;
}

.about-content p,
.section-title p,
.card p,
.feature-card p,
.category-card ul li,
.testimonial-card p,
.contact-info p{
    color:var(--muted);
}

.about-content p{
    margin-bottom:18px;
    max-width:46ch;
}

/* ==========================
   SECTION TITLES / COLLECTIONS
========================== */

.section-title{
    text-align:Center;
    width:min(1180px,calc(100% - 40px));
    margin:0 auto 48px;
}

.section-title h2{
    margin-top:10px;
}

.collection-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.featured-tabs{
    width:min(1180px,calc(100% - 40px));
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

.featured-tab{
    min-height:132px;
    display:flex;
    flex-direction:column;
    align-items:Center;
    justify-content:Center;
    gap:12px;
    padding:18px;
    border:1px solid var(--hairline);
    border-radius:var(--radius);
    background:var(--surface);
    color:var(--brand-green);
    box-shadow:var(--brand-shadow);
    font-family:'Cinzel','Times New Roman',serif;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:.03em;
    text-align:Center;
    transition:transform .25s ease,border-color .25s ease,background-color .25s ease;
}

.featured-tab i{
    color:var(--brand-gold);
    font-size:1.8rem;
}

.featured-tab:hover,
.featured-tab:focus-visible{
    transform:translateY(-5px);
    border-color:var(--brand-gold);
    background:var(--surface-alt);
    outline:none;
}

body.dark-mode .featured-tab{
    color:var(--brand-gold-soft);
}

@media(max-width:780px){
    .featured-tabs{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

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

    .gallery-grid img{
        height:240px;
    }
}

.card,
.feature-card,
.category-card,
.testimonial-card,
.contact-box,
.stat{
    border:1px solid var(--hairline);
    border-radius:var(--radius);
    background:var(--surface);
    box-shadow:var(--brand-shadow);
}

.card{
    display:grid;
    grid-template-rows:auto 1fr;
    overflow:hidden;
}

.card:hover,
.feature-card:hover,
.category-card:hover,
.testimonial-card:hover{
    transform:translateY(-7px);
    border-color:color-mix(in srgb,var(--brand-gold) 70%,var(--hairline));
    box-shadow:var(--brand-shadow);
}

.card img{
    height:auto;
    aspect-ratio:4/3;
    object-fit:cover;
}

.card h3,
.feature-card h3,
.category-card h3,
.testimonial-card h4{
    color:var(--brand-green);
}

body.dark-mode .card h3,
body.dark-mode .feature-card h3,
body.dark-mode .category-card h3,
body.dark-mode .testimonial-card h4{
    color:var(--brand-gold-soft);
}

.card h3{
    font-size:26px;
    margin:25px 25px 10px;
}

.card p{
    margin:0 25px 30px;
}

/* ==========================
   GALLERY
========================== */

.gallery{
    background:var(--surface-alt);
}

.gallery-grid{
    width:min(880px,calc(100% - 40px));
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    column-gap:32px;
    row-gap:48px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border:4px solid #1D1D1D;
    border-radius:0;
    box-shadow:none;
}

/* ==========================
   WHY US
========================== */

.why,
.testimonials,
.contact{
    background:
        linear-gradient(90deg,rgba(194,154,91,.1),transparent 45%),
        var(--surface-alt);
}

.features-grid,
.testimonial-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
}

.features-grid{
    display:grid;
    margin-top:60px;
}

.feature-card,
.testimonial-card,
.category-card{
    padding:28px;
}

.feature-card{
    text-align:Center;
    transition:.4s;
}

.feature-card i{
    width:46px;
    height:46px;
    display:grid;
    place-items:Center;
    margin:0 auto 24px;
    border:1px solid var(--hairline);
    color:var(--brand-gold);
    font-size:42px;
}

.feature-card h3{
    margin-bottom:15px;
    font-size:24px;
}

/* ==========================
   CATEGORIES
========================== */

.category-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
}

.category-card{
    transition:.35s;
    min-height:0;
    border-top:4px solid var(--brand-gold);
}

.category-card h3{
    margin-bottom:14px;
    font-size:28px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:14px;
}

.product-item{
    display:flex;
    flex-direction:column;
    gap:8px;
    text-align:Center;
}

.product-item img{
    width:100%;
    aspect-ratio:1/1.18;
    max-height:220px;
    object-fit:cover;
    object-position:Center top;
    border:1px solid var(--hairline);
    border-radius:10px;
    box-shadow:0 8px 16px rgba(15,46,38,.1);
}

.product-item p{
    font-size:.9rem;
    line-height:1.35;
    font-weight:600;
    color:var(--muted);
}

@media(max-width:780px){
    .product-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media(max-width:420px){
    .product-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

/*==================================
    STATS
==================================*/

.stats{
    color:white;
    background:
        linear-gradient(135deg,rgba(194,154,91,.22),transparent 44%),
        var(--brand-green-deep);
}

.stats-grid{
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.stat{
    text-align:Center;
    padding:40px 24px;
    background:rgba(255,255,255,.055);
    border-color:rgba(227,201,144,.24);
}

.stat h2{
    color:var(--brand-gold-soft);
    font-size:48px;
    line-height:1;
    margin-bottom:14px;
}

.stat p{
    opacity:.85;
    color:rgba(255,255,255,.74);
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

/*==================================
    TESTIMONIALS
==================================*/

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

.testimonial-card{
    transition:.35s;
}

.testimonial-card p{
    margin-bottom:20px;
    font-size:16px;
}

.testimonial-card p:first-child{
    color:var(--brand-gold);
    letter-spacing:.18em;
}

/*==================================
    CONTACT
==================================*/

.contact-box{
    display:grid;
    width:min(1180px,calc(100% - 40px));
    grid-template-columns:.9fr 1.1fr;
    gap:42px;
    padding:clamp(24px,5vw,56px);
}

.contact-info h2{
    margin:20px 0;
}

.contact-info p{
    margin:18px 0;
}

.contact-info i{
    width:24px;
    color:var(--brand-gold);
}

.contact-info a[href^="tel:"]{
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:var(--hairline);
}

.contact-info a[href^="tel:"]:hover{
    color:var(--brand-gold);
    text-decoration-color:var(--brand-gold);
}

.contact-form label{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    outline:none;
    transition:.3s;
    border:1px solid var(--hairline);
    border-radius:var(--radius);
    background:var(--page);
    color:var(--text);
    font-family:'Montserrat',Arial,sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--brand-gold);
    box-shadow:0 0 0 4px rgba(194,154,91,.16);
}

.contact-form button{
    border:0;
    cursor:pointer;
    font-family:Poppins,sans-serif;
}

/*==================================
    FOOTER
==================================*/

footer{
    color:white;
    padding:70px 0 30px;
    background:var(--brand-green-deep);
}

.footer-content{
    margin:auto;
    text-align:Center;
}

.footer-content h2{
    color:var(--brand-gold-soft);
    font-size:42px;
    margin-bottom:20px;
}

.footer-content p{
    opacity:.8;
}

.social{
    display:flex;
    justify-content:Center;
    gap:20px;
    margin:35px 0;
}

.social a,
.whatsapp,
#topBtn{
    border-radius:var(--radius);
}

.social a{
    width:55px;
    height:55px;
    display:flex;
    align-items:Center;
    justify-content:Center;
    background:rgba(255,255,255,.08);
    transition:.4s;
    font-size:20px;
    border:1px solid rgba(227,201,144,.26);
    color:var(--brand-gold-soft);
}

.social a:hover{
    transform:translateY(-6px);
    background:var(--brand-gold);
    color:var(--brand-green-deep);
}

.copyright{
    margin-top:30px;
    font-size:14px;
    opacity:.7;
}

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:62px;
    height:62px;
    background:#25D366;
    color:white;
    display:flex;
    align-items:Center;
    justify-content:Center;
    font-size:32px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:999;
    transition:.4s;
}

.whatsapp:hover{
    transform:scale(1.12);
}

.directions{
    position:fixed;
    right:25px;
    bottom:101px;
    width:62px;
    height:62px;
    display:flex;
    align-items:Center;
    justify-content:Center;
    border:1px solid var(--brand-gold);
    border-radius:var(--radius);
    background:var(--brand-gold);
    color:var(--brand-green-deep);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    font-size:26px;
    z-index:999;
    transition:.4s;
}

.directions:hover{
    transform:scale(1.12);
}

#topBtn{
    position:fixed;
    right:30px;
    bottom:177px;
    width:52px;
    height:52px;
    cursor:pointer;
    display:flex;
    align-items:Center;
    justify-content:Center;
    box-shadow:0 14px 35px rgba(0,0,0,.18),0 8px 22px rgba(181,133,46,.24);
    font-size:18px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(16px) scale(.9);
    z-index:998;
    transition:opacity .3s ease,visibility .3s ease,transform .3s ease,box-shadow .3s ease;
    border:1px solid var(--hairline);
    background:var(--surface);
    color:var(--brand-gold);
}

#topBtn.show-top{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0) scale(1);
}

#topBtn:hover{
    transform:translateY(-6px) scale(1.04);
    box-shadow:0 18px 42px rgba(0,0,0,.22),0 10px 26px rgba(181,133,46,.3);
}

#topBtn:focus-visible{
    outline:3px solid rgba(218,196,150,.65);
    outline-offset:4px;
}

/*==================================
    RESPONSIVE
==================================*/

@media(max-width:1040px){
    .collection-grid,
    .features-grid,
    .category-grid,
    .testimonial-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .about .container,
    .contact-box{
        grid-template-columns:1fr;
    }
}

@media(max-width:991px){
    .nav-links{
        display:none;
        position:absolute;
        top:84px;
        left:20px;
        right:20px;
        width:auto;
        flex-direction:column;
        text-align:Center;
        align-items:stretch;
        gap:0;
        padding:12px;
        border:1px solid var(--hairline);
        background:var(--surface);
        box-shadow:var(--brand-shadow);
    }

    .nav-links.show{
        display:flex;
        animation:fadeDown .35s ease;
    }

    .nav-links a{
        display:block;
        padding:14px;
    }

    .nav-links a::after{
        display:none;
    }

    .menu-btn{
        display:block;
    }
}

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:680px){
    .section{
        padding:24px 0;
    }

    main > .collections:first-child{
        padding-top:100px;
    }

    .navbar{
        min-height:76px;
    }

    .theme-toggle span{
        display:none;
    }

    .hero{
        padding-top:100px;
        padding-bottom:48px;
    }

    .hero h1{
        font-size:clamp(1.8rem,8vw,2.4rem);
    }

    .about{
        padding:24px 0;
    }

    .about-image{
        max-width:240px;
        margin:0 auto;
    }

    .collection-grid,
    .features-grid,
    .category-grid,
    .testimonial-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

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

    .gallery-grid img{
        height:220px;
    }

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

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

    .whatsapp{
        right:16px;
        bottom:16px;
        width:56px;
        height:56px;
        font-size:28px;
    }

    .directions{
        right:16px;
        bottom:84px;
        width:56px;
        height:56px;
        font-size:24px;
    }

    #topBtn{
        right:16px;
        bottom:152px;
        width:48px;
        height:48px;
        font-size:16px;
    }
}

/*==================================
    SCROLL ANIMATION
==================================*/

.card,
.feature-card,
.category-card,
.testimonial-card,
.about-image,
.about-content,
.contact-box,
.stat{
    opacity:0;
    transform:translateY(60px);
    transition:.8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.card,
.feature-card,
.category-card{
    will-change:transform;
}

.cursor-glow{
    display:none;
}

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:var(--page);
}

::-webkit-scrollbar-thumb{
    border-radius:20px;
    background:var(--brand-gold);
}

::-webkit-scrollbar-thumb:hover{
    background:#8E651F;
}
