* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}
body {
    background-color: transparent; 
    letter-spacing: 2px;
    background-position: top center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.container {
    width: 1200px;
    margin: 0 auto;
    background-image: url('img/bg.png');
    background-size: 1200px auto;
    background-repeat: no-repeat;
}

.header-content {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fafafa;
}
.logo {
    padding-left: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    height: auto;
    width: auto;
    max-width: none;
}
nav ul {
    padding-left: 50px;
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #999;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}
nav a:hover,
nav a.active {
    color: #000;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 30px;
}

.search-input {
    width: 250px;
    height: 30px;
    background-image: url('img/search.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 40px;
    border: 1px solid #fc0202;
}

.search-input input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 12px;
    caret-color: black;
    border-radius: 40px;
}

.search-input input:focus {
    outline: none;
}

.search-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('img/search_button.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.search-box button {
    width: 40px;
    height: 30px;
    background-image: url('img/search_button_bg.png');
    background-size: 100% 100%;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    
}

.search-box button:hover {
    background-color: #e6a500;
}


.explore-h1 { 
    font-size: 50px; 
    font-weight: Regular; 
    margin: 120px 0 0 550px;
    background: linear-gradient(to right,#FFF8E7, #F9C250); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    letter-spacing: 4px; 
    text-shadow: 1px 1px 3px rgba(249, 194, 80, 0.2);
  }

.eachbox-h2 {    
    font-size: 22px; 
    font-weight: Regular; 
    background: linear-gradient(to right,#FFF8E7, #F9C250); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    margin: 30px 0 0 620px;
    text-shadow: 1px 1px 3px rgba(249, 194, 80, 0.2);
}

.mysterious-box {
    width: 300px;
    height: 157px;
    margin: 70px 0 0 650px;

    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mysterious-box img { 
    height: 180px; 
    padding-bottom: 20px; 
}

.buy-img {
    width: 140px;
    height: 55px;
    margin: 30px 0 0 730px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #fc0202;
    position: relative;
    width: 170px;
    letter-spacing: 4px;
    margin: 170px 0 0 500px;
    height: 100px;
    text-shadow: 1px 1px 3px rgba(249, 194, 80, 0.2);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 30px;
}

 .product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
 .product-card:hover {
    transform: translateY(-10px);
}

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

.product-img {
     width: 100%;
     height: 200px;
     overflow: hidden;
 }

.product-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s;
 }
.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(249, 194, 80, 0.2);
}
.product-info p {
    text-align: left;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(249, 194, 80, 0.2);
}

.product-info .price {
     color: #fc0202;
     font-weight: bold;
     font-size: 18px;
     text-shadow: 1px 1px 3px rgba(249, 194, 80, 0.2);
 }

.about-section {
    display: flex;
    margin: 60px 30px 0px 30px;
    align-items: center;
}
.about-text {
    flex: 1;
    background-color: rgba(255,255,255,0.8);
    border-radius: 10px 0 0 10px;
    height: 300px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-right: -1px;
}
.about-text h3 {
    font-size: 24px;
    color: #fc0202;
    text-shadow: 1px 1px 3px rgba(249, 194, 80, 0.2);
}
.about-text-p-box {
    padding-top: 10px;
}
.about-text p {
    line-height: 1.8;
    color: #333;
    text-indent: 2em;
    text-shadow: 1px 1px 3px rgba(249, 194, 80, 0.2);
}

.about-img {
    flex: 1;
    height: 300px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-left: -1px;
 }

.about-img img{
    width: 100%;
    height: 100%;
}


.blind-box-section {
    text-align: center;
    width: 320px;
    height: 260px;
    margin-top: 30px;
    margin-left: 480px;
    color: #fc0202;
    font-size: 18px;
    text-shadow: 1px 1px 3px rgba(249, 194, 80, 0.2);
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.gold {
    padding-top: 10px;
}



footer {
    width: 1200px;    
    margin: 0 auto;
    color: #fff;
    background-image: url('img/footer-bg.png');
}

.footer-content {
    display: flex;
    text-align: center;
    padding-top: 20px;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px 20px 0;
}
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffb703;
    padding-bottom: 10px;
}
.about-us-box {
    width: 190px;
    margin-left: 80px;
}

.contact-us-box {
    flex: 1;
    width: 310px;
    margin: 0 auto;
}
.contact-us-box p {
    text-align: left;
    
}
.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 0 auto;
    width: 110px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #ffb703;
}


.copyright {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 20px;
    padding-bottom: 20px;
}
.copyright a {
    color: #fff;
    margin-top:10px;
    text-decoration: none;
}

.copyright a:hover {
    color: #ffb703;
}