body {
    background: #f9f9f9;
    font-family: Arial, sans-serif;
    padding-top: 70px;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-icon,
.account-icon {
    position: relative;
    font-size: 20px;
    color: #111;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;

    width: 18px;
    height: 18px;

    background: #afa2a2;
    color: #fff;

    font-size: 10px;
    font-weight: 600;

    border-radius: 50%;

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

    line-height: 1;
}
.cart-section {
    padding: 60px 0;
    background: #f8f8f8;
    width: 100%;
    margin-top: 10vh;
}

.cart-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.cart-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.cart-items {
    flex: 2;
}

.cart-item {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.cart-image img {
    width: 120px;
    height: 150px;
    object-fit: cover;
}

.cart-details {
    flex: 1;
}

.quantity-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.quantity-box button {
    width: 30px;
    height: 30px;
    border: none;
    background: #111;
    color: white;
    cursor: pointer;
}

.quantity-box input {
    width: 50px;
    text-align: center;
}

.remove-item {
    margin-top: 10px;
    background: none;
    border: none;
    color: red;
    cursor: pointer;
}

.cart-summary {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-total {
    font-weight: bold;
    font-size: 18px;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #111;
    color: white;
    border: none;
    cursor: pointer;
}
.view-all-section {
    padding: 120px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.view-all-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.view-all-section p {
    color: #777;
    margin-bottom: 40px;
}

.view-all-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #111;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: 0.3s ease;
}

.view-all-btn:hover {
    background-color: #111;
    color: #fff;
}


.footer-main-desktop{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    width: 100%;
    background-color: #222225;
    color: #FFFFFF;
    flex-shrink: 0;
    margin-top: 5vh;

}
.join-our-world{
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 25%;
}
.sub-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 25%;
    font-size: 17px;
    color: #6b6a6a;
    text-align: center;
}
.main-desktop-form{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30%;
    width: 60%;
}
.md-form-input{
    box-sizing: content-box;
    height: 50%;
    width: 60%;
    margin-right: 5%;
    outline: none;
    background-color: transparent;
    border-radius: 5px;
    color: #727171;
    border: thin solid #2c2c2c;
    padding-left: 20px;

}
.main-subscribe-btn{
    height: 50%;
    width: 20%;
    border: none;
    border-radius: 5px;
    color: black;
    background-color: #FFFFFF;
    transition: background-color 0.5s ease-in;
}
.main-subscribe-btn:hover{
    background-color: black;
    color: #FFFFFF;
}
.md-tc{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
    width: 50%;
    color: #727171;
    font-size: 17px;

}

/* Mobile */
@media (max-width: 768px) {
    .cart-wrapper {
        flex-direction: column;
    }
}