*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
}
.container {
    margin: auto;
    padding: 0 15px;;
    max-width: 900px;
}
.title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    text-transform: capitalize;
}
/*==========================
 Top Announcement Bar
===========================*/

.top-bar{
    background:#F4E2D1;
    color:#111;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    gap:10px;
    position:relative;
}

.top-bar i{
    font-size:20px;
}

.top-bar .arrow {
    font-size: 15px;
    cursor: pointer;
    transition: .3s;
}

.top-bar .arrow:hover{
    transform:translateX(5px);
}

/*==========================
 Main Header
===========================*/

.header{
    width:100%;
    background:#fff;
    height:68px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 24px;
    border-bottom:1px solid #ececec;
    position:sticky;
    top:0;
    z-index:999;
}

.menu-btn,
.header-icons i{
    font-size:28px;
    cursor:pointer;
    color:#111;
    transition:.3s;
}

.menu-btn:hover,
.header-icons i:hover{
    color:#777;
}

/* Logo */

.logo{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    font-size:34px;
    font-weight:900;
    letter-spacing:8px;
    color:#000;
    user-select:none;
}

/* Right Icons */

.header-icons{
    display:flex;
    align-items:center;
    gap:24px;
}

/*==========================
 Mobile Menu
===========================*/

.mobile-menu{
    position:fixed;
    top:0;
    left:-280px;
    width:260px;
    height:100vh;
    background:#fff;
    box-shadow:4px 0 20px rgba(0,0,0,.15);
    transition:.35s;
    z-index:1001;
    padding:25px;
}

.mobile-menu.active{
    left:0;
}

.close-btn{
    font-size:28px;
    cursor:pointer;
    margin-bottom:30px;
}

.mobile-menu ul{
    list-style:none;
}

.mobile-menu ul li{
    padding:14px 0;
    border-bottom:1px solid #eee;
}

.mobile-menu ul li a{
    text-decoration:none;
    color:#111;
    font-size:17px;
    font-weight:600;
}

/* Overlay */

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.4);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:1000;
}

.overlay.show{
    opacity:1;
    visibility:visible;
}

/* Demo Content */

.hero{
    padding:60px 20px;
    text-align:center;
}

.hero h2{
    font-size:34px;
    margin-bottom:10px;
}

.hero p{
    color:#555;
    font-size:18px;
}


/* Help Sec */
.help-wrapper {
    margin: 0 auto;
    padding: 20px 0;
}
/* Breadcrumb */

.breadcrumb{
    font-size:14px;
    color:#767676;
    margin-bottom:18px;
}

.breadcrumb a{
    color:#767676;
    text-decoration:none;
}

.breadcrumb span{
    margin:0 8px;
}

/* Title */

.help-wrapper .help-title{
    font-size:44px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:16px;
}

/* Description */

.help-wrapper .help-description {
    font-size: 20px;
    line-height: 1.5;
    color: #2d2d2d;
    max-width: 980px;
    margin-bottom: 35px;
}

/* Search Box */

.help-wrapper .search-box{
    width:100%;
    display:flex;
    align-items:center;
    background:#ffffff;
    border:2px solid #E6E6E6;
    border-radius:50px;
    padding:16px 24px;
    transition:.3s;
}

.help-wrapper .search-box:hover{
    border-color:#111;
}

.help-wrapper .search-box:focus-within{
    border-color:#111;
    box-shadow:0 0 0 5px rgba(0,0,0,0.05);
}

/* Icon */

.help-wrapper .search-icon{
    width:34px;
    height:34px;
    margin-right:16px;
    flex-shrink:0;
}

.help-wrapper .search-icon svg{
    width:100%;
    height:100%;
}

/* Input */

.help-wrapper .search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    color: #111;
    background: transparent;
}

.help-wrapper .search-input::placeholder{
    color:#8A8A8A;
}

/* Search Button */

.help-wrapper .search-btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.help-wrapper .search-btn:hover{
    background:#333;
}


/* Self Service */
.self-service {
    margin-bottom: 30px;
}
.self-service .container{
    margin:auto;
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
}

/* Header */

.self-service .service-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}
.self-service .view-all {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}
.self-service .view-all i {
    font-size: 12px;
}
.self-service .view-all:hover{
    gap:12px;
}

/* Grid */

.self-service .service-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:28px 18px;
}

/* Card */

.self-service .service-card{
    text-align:center;
    text-decoration:none;
    color:#111;
    padding:16px 10px;
    border-radius:14px;
    transition:.3s;
}

.self-service .service-card:hover{
    background:#f8f8f8;
    transform:translateY(-5px);
}

/* Icon */

.self-service .icon-box{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#000;
    transition:.3s;
}

.self-service .service-card:hover .icon-box{
    background:#000;
    color:#fff;
}

/* Text */

.self-service .service-card h4{
    margin-top:14px;
    font-size:14px;
    font-weight:600;
    line-height:1.35;
}

/* Tablet */

/* Self Service */


/* Self Service */

.faq-section {
    margin:auto;
    background:#fff;
    border-radius:14px;
    padding:25px 0;
}

/* Header */

.faq-section .faq-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px 20px;
}



.faq-section .view-all {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}
.faq-section .view-all i {
    font-size: 12px;
}
.faq-section .view-all:hover{
    gap:14px;
}

/* Accordion */

.faq-section .faq-item{
    border-top:1px solid #ECECEC;
}

.faq-section .faq-item:last-child{
    border-bottom:1px solid #ECECEC;
}

.faq-section .faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 15px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.faq-section .faq-question:hover{
    background:#fafafa;
}

.faq-section .faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.faq-section .faq-question i{
    font-size:20px;
    color:#111;
    transition:.3s;
}

/* Active */

.faq-section .faq-item.active .faq-question i{
    transform:rotate(180deg);
}

/* Answer */

.faq-section .faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fff;
}

.faq-section .faq-answer-content {
    padding: 8px 15px;
}

.faq-section .faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 6px;
}

.faq-section .faq-answer ul{
    padding-left:18px;
}

.faq-section .faq-answer li {
    color: #555;
    margin-bottom: 4px;
    line-height: 1.7;
    font-size: 14px;
}
/* FAQ Section */

/* Support Section */
.support-section {
    text-align: center;
    padding: 30px 0;
}
.support-section .title{
    margin-bottom:28px;
}

/* Button */
.support-section .service-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    transition: .3s;
    margin-bottom: 45px;
}
.support-section .service-btn:hover{
    background:#222;
    transform:translateY(-2px);
}

/* Contact Grid */
.support-section .contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
}
.support-section .contact-item{
    padding:10px 30px;
    position:relative;
}
.support-section .contact-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:15%;
    width:1px;
    height:70%;
    background:#E4E4E4;
}

/* Icon */
.support-section .contact-icon{
    font-size:48px;
    color:#111;
    margin-bottom:18px;
}

/* Title */
.support-section .contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

/* Text */
.support-section .contact-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.support-section .contact-email{
    color:#111;
    font-weight:500;
}
.support-section .contact-phone {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-top: 4px;
    text-decoration: none;
}
.support-section .contact-phone:hover{
    text-decoration:underline;
}

/* Hover */
.support-section .contact-item{
    transition:.3s;
}
.support-section .contact-item:hover{
    transform:translateY(-5px);
}
.support-section .contact-item:hover .contact-icon{
    color:#000;
}
/* Support Section */


/* Social Section */
.social-section {
    background: #fff;
    padding: 20px  0;
    text-align: center;
}
/* Heading */
.social-section .title {
    margin-bottom: 18px;
}
/* Subtitle */

.social-section p {
    font-size: 20px;
    color: #666;
    margin-bottom: 14px;
}

/* Icons */
.social-section .social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:28px;
}

.social-section .social-icons a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #111;
    font-size: 30px;
    transition: .3s ease;
}
.social-section .social-icons a:hover{
    background:#111;
    color:#fff;
    transform:translateY(-6px) scale(1.05);
}
/* Social Section */

/* Footer Sec */
.shein-footer{
    width:100%;
    background:#fff;
    border-top:1px solid #e8e8e8;
}

/* Accordion */

.shein-footer .footer-accordion{
    border-bottom:1px solid #ececec;
}

.shein-footer .footer-title{
    width:100%;
    background:#fafafa;
    border:none;
    border-top:1px solid #ececec;
    padding:15px 16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    color:#111;
    text-transform:uppercase;
}

.shein-footer .footer-title i{
    font-size: 16px;
    transition:.3s;
}

.shein-footer .footer-accordion.active .footer-title i{
    transform:rotate(90deg);
}

/* Content */

.shein-footer .footer-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    background:#fff;
}

.shein-footer .footer-content ul {
    list-style: none;
    padding: 15px;
}

.shein-footer .footer-content ul li{
    padding:6px 0;
}

.shein-footer .footer-content ul li a{
    text-decoration:none;
    color:#555;
    font-size:14px;
    transition:.3s;
}

.shein-footer .footer-content ul li a:hover{
    color:#000;
}

/*========================
  Bottom Footer
========================*/

.shein-footer .footer-bottom {
    padding: 16px 0;
}
.shein-footer .footer-brand{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:25px;
}

/* Logo */
.shein-footer .logo {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 8px;
    color: #000;
    line-height: 1;
    position: relative;
    left: auto;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

/* Country */
.shein-footer .country{
    display:flex;
    align-items:center;
    gap:12px;
    cursor:pointer;
    font-size:18px;
    color:#111;
    font-weight:500;
}

.shein-footer .country i{
    font-size:28px;
}

/* Links */


.shein-footer .f-accordion {
    background: #fafafa;
}

.shein-footer .footer-links{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:18px;
}

.shein-footer .footer-links a{
    text-decoration:none;
    color:#222;
    font-size:18px;
}

.shein-footer .footer-links span{
    color:#bbb;
}

/* Copyright */

.shein-footer .copyright{
    text-align:center;
    color:#777;
    font-size:17px;
}

/* Bottom Home Indicator */

.shein-footer .home-bar{
    width:340px;
    height:8px;
    background:#000;
    border-radius:20px;
    margin:30px auto 10px;
}

/*========================
  Responsive
========================*/

@media(max-width:768px){

    
}
/* Footer Sec */



/* Responsive */


/*==========================
 Responsive
===========================*/

@media(max-width:992px){
    .service-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .header{
        padding:0 16px;
        height:62px;
    }

    .logo{
        font-size:26px;
        letter-spacing:5px;
    }

    .menu-btn,
    .header-icons i{
        font-size:23px;
    }

    .header-icons{
        gap:18px;
    }

    .top-bar{
        font-size:15px;
        padding:0 45px 0 12px;
        text-align:center;
    }

    .top-bar i{
        font-size:16px;
    }


    /* Help Sec */

    

    .help-wrapper .help-title{
        font-size:28px;
    }

    .help-wrapper .help-description {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .help-wrapper .search-box{
        padding:14px 18px;
    }

    .help-wrapper .search-input{
        font-size:16px;
    }

    .help-wrapper .search-btn{
        display:none;
    }

    .help-wrapper .search-icon{
        width:28px;
        height:28px;
        margin-right:12px;
    }
     /* Help Sec */

     /* FAQ Sec */
    .faq-section .faq-header{
        padding:0 18px 15px;
    }

   

    .view-all{
        font-size:18px;
    }

    .faq-section .faq-question{
        padding:18px;
    }
    .faq-section .view-all {
        font-size: 16px;
        gap: 2px;
    }
    .faq-section .faq-question h3{
        font-size:18px;
    }

    .faq-section .faq-answer-content{
        padding:0 18px 18px;
    }

    .faq-section .faq-answer p,
    .faq-section  .faq-answer li{
        font-size:15px;
    }
     /* FAQ Sec */

     /*support section */
    .support-section{
        padding:35px 20px;
    }
    .support-section .service-btn{
        width:100%;
        padding:16px;
        font-size:20px;
        margin-bottom:35px;
    }
    .support-section .contact-grid{
        grid-template-columns:1fr;
    }
    .support-section .contact-item{
        padding:30px 10px;
    }
    .support-section .contact-item:not(:last-child)::after{
        display:none;
    }
    .support-section .contact-item:not(:last-child){
        border-bottom:1px solid #ECECEC;
    }
    .support-section .contact-title{
        font-size:22px;
    }

    .support-section .contact-text{
        font-size:17px;
    }
    .support-section .contact-phone{
        font-size:24px;
    }
    .support-section .contact-icon{
        font-size:42px;
    }
    /* support section */

    /* Social Sec */
    .social-section{
        padding:40px 15px;
    }


    .social-section p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .social-section .social-icons{
        gap:18px;
    }

   .social-section .social-icons a {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    /* Social Sec */

    /* Footer Sec */
    .footer-title{
        padding:18px 20px;
        font-size:18px;
    }

    .footer-content ul{
        padding:0 20px 18px;
    }

    .footer-content ul li a{
        font-size:15px;
    }

    .footer-bottom{
        padding:28px 20px;
    }


    .logo{
        font-size:38px;
        letter-spacing:6px;
    }
    .shein-footer .logo {
        font-size: 24px;
    }
    .country{
        font-size:16px;
    }

    .footer-links{
        justify-content:flex-start;
        gap:10px;
    }

    .footer-links a{
        font-size:15px;
    }

    .copyright{
        text-align:left;
        font-size:14px;
        line-height:1.6;
    }

    .home-bar{
        width:220px;
        height:6px;
    }

    .shein-footer .footer-links {
        gap: 6px;
        margin-bottom: 9px;
    }
    .shein-footer .footer-links a {
        font-size: 15px;
    }
    .shein-footer .country {
        gap: 8px;
        font-size: 14px;
    }
    .shein-footer .country i {
        font-size: 16px;
    }   
    .shein-footer .country i {
        font-size: 14px;
    }
    .shein-footer .copyright {
        font-size: 14px;
    }
    .shein-footer .home-bar {
        width: 100%;
    }
    /* Footer Sec */
}

@media(max-width:600px){

    body{
        padding:15px;
    }

    .self-service{
        padding:0;
    }

    .title{
        font-size:22px;
    }

    .self-service .view-all{
        font-size:16px;
    }

    .self-service .service-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px 12px;
    }

    .self-service .icon-box{
        width:58px;
        height:58px;
        font-size:28px;
    }

    .self-service .service-card h4{
        font-size:15px;
    }
}
/* Sel */
   


@media(max-width:480px){

    .logo{
        font-size:22px;
        letter-spacing:4px;
    }

    .header-icons{
        gap:15px;
    }
    .title {
        font-size: 20px;
    }   
    .menu-btn,
    .header-icons i{
        font-size:21px;
    }

    .top-bar{
        font-size:13px;
    }
    .social-section .social-icons {
        gap: 11px;
    }
    .shein-footer .footer-bottom .container {
        padding: 0 8px;
    }
    .shein-footer .footer-links {
        gap: 2px;
        margin-bottom: 9px;
    }
}