* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}
button{ 
    cursor: pointer; 
    border: none;
    background: none;
 }

 img{
    width: 100%;
 }


.title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(to right, #333 20%, #E56C85 40%, #E56C85 60%, #333 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}



 .section-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
 }

 .section-title{
    text-align: center;
    padding: 60px 0 20px;
    text-transform: uppercase;
    font-size: 30px;
 }

 .section-title::after{
  display: none;
 } 

header{
    position: fixed;
    width: 100%;
    z-index: 5;
    background:white;
    border: 2px solid rgb(203, 203, 203);
}

header .navbar{
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    line-height: 1.2; 
}

.navbar .nav-logo .logo-text{
    font-size: 20px;
    font-weight: bold;
    color: #332d2d;
    margin: 0;
}

.logo-subtext{
    font-size: 12px;
    color: #777;
    margin-top: 2px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar .nav-menu{
    display: flex;
    gap: 10px;
    margin: 0 auto;
}

.navbar .nav-menu .nav-link{
    padding: 10px 18px;
    background: white;
    font-size: 15px;
    color:#332d2d;
    border-radius: 6px;
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover{
    color:#E56C85;
    background:transparent;
}

.navbar :where(#menu-close-button, #menu-open-button){
    display: none;
}


.icons {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none; 
    margin: 0;
    padding: 0;
}

.icons li {
    list-style: none; 
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none; 
    position: absolute;
    right: 0;
    top: 100%; 
    background-color: #ffffff;
    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
    z-index: 9999 !important; 
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    margin-top: 5px;
    padding: 15px;
}


.dropdown:hover .dropdown-content {
    display: block !important;
}

.dropdown-content::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}


.user-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content::before {
    content: "";
    position: absolute;
    top: -15px; 
    left: 0;
    width: 100%;
    height: 15px;
    display: block;
}

.dropdown-content.show {
    display: block !important;
}


.dropdown-sub a {
    color: #E56C85; 
    text-decoration: none;
    transition: 0.3s; 
    display: block;   
    padding: 10px;
    font-weight: bold;
}

.dropdown-sub a:hover {
    color: purple;             
}


.login-btn{
    font-size: 14px;
    color:  #E56C85;
    font-weight: bold;
    border: 2px solid #F9CED8;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-icon .fa-cart-plus {
    color:#332d2d;
}    

.login-btn:hover{
    color:#F9CED8;
    border-color: #F9CED8;
    background:#E56C85 ;
}

.hero-section{
    min-height: 100vh;
    background-color:#F9CED8;
    padding-top: 100px;
}

.hero-section {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Purchase Styling */
    .purchase-section{
        padding: 100px;
        background-color: white;
    }

    .history-container {
    display: flex;
    list-style: none; 
    margin: 0;
    padding: 0;
    background-color: white;
    justify-content: space-around;
    border-top:  1px solid #f0eeeec0 ;
    border-bottom: 1px solid #ddd; 
}

.history-btn {
    flex: 1; 
    text-align: center;
}

.history-btn a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent; 
}


.history-btn a:hover {
    color: #E56C85; 
}

.history-btn.active a {
    color: #E56C85;
    border-bottom: 3px solid#E56C85;
}





.hero-section .section-content{
    display: flex;
    align-items: center;
    gap: 60px;
    color:#332d2d;
    justify-content: space-between;
    
}    
.hero-section .hero-details .title {
    font-size: 50px;
    color:rgb(24, 24, 46);
    font-family: "Arial";
}

.hero-section .hero-details .description{
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: 20px;
}

.hero-section .hero-details .buttons{
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button{
    padding: 10px 26px;
    border: 2px solid transparent;
    color:white;
    border-radius: 25px;
    background: #E56C85;
    font-weight: 700;
    transition: 0.3s ease;
}

.hero-section .hero-details .button:hover{
    color:white;
    border-color: white;
    background: transparent;
}

.hero-section .hero-details .customize {
    padding: 10px 26px;
    border: 2px solid white;
    color: white;
    border-radius: 25px;
    background: transparent;
    font-weight: 700;
    transition: 0.3s ease;
}

.hero-section .hero-details .customize:hover{
    color: rgb(130, 69, 79);
    border-color: #E56C85;
    background: #E56C85;
}

.hero-section .hero-image-wrapper{
    max-width: 500px;
    margin-right: 30px;
}

/* Modal Background */
.modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(8px); 
}

.opt-link{
     color: #000;
}

.opt-link:hover{
     color:#E56C85 ;
}

/* Modal Box */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 20px; top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

/* Modal Buttons Style */
.modal-options {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.opt-btn {
    flex: 1;
    padding: 15px;
    border: 2px solid #e67e9a;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.opt-btn:hover {
    background: #e67e9a;
    color: white;
}


/*discount styling*/
.discount-section{
    padding: 20px 0;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    background: palegoldenrod;
}




/*category styling*/


.category-section{
    padding: 70px 0;
    background: white;    
}

.category-section .section-content{
    display: block;
    text-align: center; 
}

.category-section .category-details .section-title{
    padding: 0;
}

.category-section .category-details{
    max-width: 600px;
    margin: 0 auto;
}

.category-section .category-details .text{
    line-height: 25px;
    margin: 10px 0 20px;
    text-align: center;
    font-size: 15px;
}

.text{
    color:#444;
}

.shop-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 20px;
    padding: 20px 0;
    margin-top: 30px;
}


.category-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    
    height: 250px; 
    width: 100%;
    
    background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat;
    
    border-radius: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.category-box:hover {
    transform: scale(1.03);
}


/*best seller styling*/

.bestseller-section{
    padding: 70px 0;
    background:whitesmoke;
}

.bestseller-header{
    font-size: 35px;
}
.bestseller-p{
    font-size: 15px;
    color: #777;
}

/* Container adjustment */
.bestseller-container {
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;         
}

/* Button Styling */
.view-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #332d2d;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.view-all-btn:hover {
    border-color: #b6b5b5;
    color: #332d2d;
    background: #edebeb;
}

/*best seller img*/

.bestseller-images {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    padding: 20px;
    flex-wrap: wrap;
}


.bestlootbag-img, 
.bestactivitybook-img, 
.bestcaketopper-img, 
.bestpartyhat-img {
    width: 100%;      
    height: 250px;     
    overflow: hidden;  
    border-radius: 15px 15px 0 0; 
}


.bestlootbag-img img, 
.bestactivitybook-img img, 
.bestcaketopper-img img, 
.bestpartyhat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.bestseller-images .product-card {
    max-width: 280px; 
    flex: 1 1 250px;  
    margin: 10px;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffe680;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 18px;
    color: #1a2a47;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px; 
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: bold;
    color: #E56C85 ;
    font-size: 18px;
}

/* Customize Button */

.backtocart{
 color: black;
}

.customize-btn {
    background: #E56C85 ;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.customize-btn:hover {
    background:#E56C85 ;
    transform: translateY(-2px);
}

/* REVIEW STYLING */

.review-section{
    padding: 80px 0;
    background: white;
    text-align: center;
}
.review-header {
    font-size: 32px;
    color: #1a253c;   
    font-weight: bold;
    margin-bottom: 8px;
}
.review-card {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.review-p {
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
}

.review-header-wrapper {
    margin-bottom: 40px;
    line-height: 1.4;
}

.customer-reviews {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    text-align: left; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stars {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 14px;
}

.review-content {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}


.info-text {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: bold;
    font-size: 15px;
    color: #332d2d;
}

.status {
    font-size: 12px;
    color: #666;
}

.review-date{
    font-size: 15px;
    font-weight: lighter;
    color:#888888af ;
}

.button-browse{
    width: 100%; 
    margin-top: 15px;
    background: #E56C85;
    color: #fff; 
    padding: 10px;
                        
}


/*READY STYLING*/

.ready-section{
    padding: 80px 0;
    text-align: center;
    background-color:#E56C85 ; 
    background-image: linear-gradient(to right,#E56C85  , white);
}

.ready-text{
    color: white;
    margin-bottom: 25px;
}

.ready-header{
    font-size: 35px;
    font-weight: bold;
    font-family:Arial, Helvetica, sans-serif;
}

.ready-p{
    font-size: 15px;
}

.ready-section .startshopping-btn {
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: rgb(234, 232, 232);
    color: #332d2d;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.ready-section .contactus-btn {
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #E56C85;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.startshopping-btn:hover{
    border-color: #b6b5b5;
    color: #332d2d;
    background:  rgb(225, 225, 225);
}

.contactus-btn:hover{
    border-color: #b6b5b5;
    color: #E56C85;
    background: #edebeb;
}

/*DIVISION STYLING*/
.div-section{
    padding: 40px 0;
    background-color: white;
}

/*SOCIAL LINK STYLING*/

.sociallink-section {
    display: flex;
    justify-content: center; 
    gap: 50px;
    align-items: flex-start;
    padding: 60px 5%;
    background: linear-gradient(to right, #e56c8474 ,rgb(248, 232, 235), #c0e1f1,rgb(226, 255, 226));
    font-family: 'Segoe UI', Tahoma, sans-serif;
    flex-wrap: wrap; 
}

.section-text, .links {
    flex: 0 1 auto;
    min-width: 200px;
}

.company-p {
    font-size: 20px;
    font-weight: bold;
    color: #1a2a4e;
    margin: 0;
    font-family: sans-serif;
}

.company-subtext {
    font-size: 13px;
    color: #444;
    display: block;
    margin-bottom: 15px;
}

.text-p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 250px; 
}


.links {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.quicklink-header {
    font-size: 18px;
    color: #1a2a4e;
    margin-bottom: 25px;
    font-weight: bold;
    font-family: sans-serif;
}

.sub-links {
    margin-bottom: 12px;
}

.quick-links {
    text-decoration: none; 
    color: #4a5568;
    font-size: 16px;
    transition: 0.3s ease;
}

.quick-links:hover {
    color: #E56C85;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #1a2a4e;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.social-link:hover {
    transform: translateY(-3px); 
}


/*Shop Styling*/

.shop-section{
    padding: 100px 0;
    background: white;
}

.shop-header{
    margin-top: 10px;
    font-size: 35px;
    font-family: sans-serif;
}

.shop-p{
    margin-top: 5px;
    font-size: 15px;
    color: #666;
    font-family: sans-serif;
}

.search {
    margin: 40px auto; 
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    background: #f6f6f6;
    max-width: 800px; 
    width: 90%; 
    border: 1px solid #ccc; 
}

.search:focus-within{
    border-color: #999; 
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); 
    transform: translateY(-1px);

}

.search-input{
    font-size: 15px;
    font-family: sans-serif;
    color: #1a253c;
    margin-left: 14px;
    outline: none;
    border: none;
    background: transparent;
    flex: 1px;
}

.shop-container {
    display: flex; 
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    align-items: flex-start;
}

.filters{
    margin-top: 20px;
    border-radius: 8px;
    width: 250px; 
    flex-shrink: 0;
    border: 1px solid #b6b5b5;
    padding: 20px; 
}

.filter-header{
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: bold;
}

.filter-text{
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.boxcontainer {
    list-style: none;
    padding: 0;    
}

.filter-list {
    font-size: 14px;
    margin-bottom: 8px; 
    display: flex;
    align-items: center;
    gap: 8px; 
    cursor: pointer;
}

.filter-list input[type="checkbox"] {
    accent-color: #E56C85;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.shop-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px; 
    padding: 20px;
    width: 100%;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
}


/* CUSTOMIZE STYLING */

.customize-container {
    padding: 40px 8%; 
    background-color: white;
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
}
.back-nav {
    width: 100%; 
    display: flex;
    justify-content: flex-start; 
    margin-bottom: 10px;
}

.backtoshop {
    text-decoration: none;
    color: black; 
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-family: sans-serif;
    transition: 0.3s ease;
}

.backtoshop i {
    font-size: 14px;
}


.backtoshop:hover {
    color: #E56C85; 
}

.preview-section, .form-section {
    flex: 1;
    min-width: 350px; 
}

.preview-section{
    border: 1px solid silver;
    border-radius: 20px;
    padding: 40px;
    width: 50%;
}

.custom-head{
    margin-bottom: 20px;
}

.custom-img{
    border-radius: 20px;
    width: 100%;
}

.product-details{
    margin-top: 10px;
    line-height: 1.6;
    color: #666;
}

.total-price{
    color: #E56C85 ;
}



.form-section{
    border: 1px solid silver;
    border-radius: 20px;
    padding: 40px;
    width: 50%;
   
}

.form-head{
    margin-bottom: 30px;
}

.upload-box{
    border: 2px dashed silver;
    border-radius: 20px;
    text-align: center;
    margin-top: 10px;
    padding: 40px;
    color: #666;
    margin-bottom: 30px;
}

.upload-p{
    margin-top: 10px;
    line-height: 1.2;
    
}

.add-text{
    margin-top: 20px;
}

.custom-text{
    display: flex;
    width: 100%;
}


.input-groupp{
     margin-top: 20px;
    margin-bottom: 20px;
}

.font-option{
    border: 1px solid transparent;
    background-color: rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 10px;
    width: 100%;
}


.size-options{
  display: flex;
  gap: 10px;
}

.size-btn{
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 10px;
    font-size: 15px;
    width: 50%;
    margin-bottom: 20px;
    transition: 0.3s;
}

.size-btn.active {
    background: #E56C85 ; 
    color: black;      
    border-color:#E56C85 ;
}
.quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 8px; 
    cursor: pointer;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.qty-btn:hover {
    background-color: #f0f0f0;
}

#qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    background-color: #f4f4f4;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}


#qty-input::-webkit-inner-spin-button,
#qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn{
    border: 2px solid transparent;
    background-color: #E56C85 ;
    border-radius: 8px;
    padding: 10px;
    color: white;
    font-size: 18px;
    width: 100%;
}

.fa-trash {
    transition: 0.3s;
    padding: 8px;
    border-radius: 50%;
}

.fa-trash:hover {
    background: #fff5f5; 
    transform: scale(1.2);
}

.remove-btn {
    color: #ff4d4d;
    font-size: 1.2rem;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.remove-btn:hover {
    color: #b30000;
    transform: scale(1.2); 
}


/*ABOUT US STYLING*/
.aboutus-section{
    padding: 100px 20px;
    background: linear-gradient(to left, #e56c8489 ,rgb(248, 232, 235), #c0e1f1,rgb(226, 255, 226));
}
.aboutus-header{
    font-size: 50px;
    text-align: center;
    margin-top: 30px;
}
.aboutus-p{
    text-align: center;
    margin-top: 10px;
    color:#555;
    font-size: 20px;
}
.ourstory-section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text {
    flex: 1.2;
}
.about-img {
    flex: 0.8;
    display: flex;
    justify-content: center;
}
.about-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.ourstory-header {
    font-size: 35px;
    font-weight: bold;
    color: #1a2a44;
    margin-bottom: 15px;
}
.ourstory-p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}



/* --- MOBILE RESPONSIVE FOR ABOUT US (PERFECT FIXED) --- */
@media screen and (max-width: 768px) {
    .aboutus-section {
        padding: 120px 20px 40px !important;
        text-align: center !important;
    }

    .aboutus-header {
        font-size: 32px !important;
    }

    .aboutus-p {
        font-size: 16px !important;
    }

    .ourstory-section {
        display: flex !important;
        flex-direction: column-reverse !important;
        padding: 40px 20px !important;
        gap: 25px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .about-text {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .ourstory-header {
        font-size: 26px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .ourstory-p {
        font-size: 14px !important;
        text-align: justify !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-bottom: 12px !important;
        line-height: 1.6 !important;
    }

    .about-img {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto 20px auto !important;
        display: block !important;
    }

    .about-img img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
    }
}


/* vision mission styling */
.visionmission-section{
    padding: 100px;
    background-color: whitesmoke ;
}
.visionmission-text{
    display: flex;
    gap: 30px;
    color: white;
}

.mission-text{
    border: 1px solid #e2a8a1;
    background-color: #E56C85 ;
    border-radius: 20px;
    padding: 30px;
    line-height: 1.6;
    flex: 1;
}

.vision-text{
    border: 1px solid hsla(201, 29%, 61%, 0.481);
    background-color: #6ec4ee;
    border-radius: 20px;
    padding: 30px;
    line-height: 1.6;
    flex: 1;
}

.vision-header, .mission-header{
    margin-bottom: 20px;
    font-weight: bold;
}

.vm-logo{
    display: flex;
    align-items: center;     
    justify-content: center; 
    width: 80px;  
    height: 80px; 
    border-radius: 50%; 
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);  
    color: white; 
    font-size: 30px;   
    margin-bottom: 30px; 
}

/* Feature Styling */

.feature-section{
    padding: 100px 0;
    background-color: white;
}

.feature-text{
    text-align: center;
    margin-bottom: 30px;
}

.feature-head{
    font-size: 35px;
    font-weight: bold;
    color: #1a2a44;
    margin-bottom: 10px;
}

.feature-p{
    color: #666;
    margin-bottom: 10px;
}

.feature-container{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    width: 90%;  
    max-width: 1200px;   
    margin: 0 auto;
}

.h-text, .m-text, .c-text, .s-text {
    flex: 1;              
    border: 1px solid #eee; 
    border-radius: 20px;
    text-align: center;
    padding: 40px 20px;   
    transition: 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.h-text:hover, .m-text:hover, .c-text:hover, .s-text:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.f-header{
    margin-bottom: 30px;
    margin-top: 20px;  

}

.f-logo{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #e56c8475 ;
    width: 60px;  
    height: 60px; 
    border-radius: 50%; 
    font-size: 30px;
}

/* Banner styling */
.banner-section{
    padding: 80px 0;
    text-align: center;
    background-color:#E56C85 ; 
    background-image: linear-gradient(to right,#e56c8489 , white);
}

.banner-text{
    color: white;
    margin-bottom: 25px;
    line-height: 1.6;
}

.banner-header{
    font-size: 35px;
    font-weight: bold;
    font-family:Arial, Helvetica, sans-serif;
}

.banner-p{
    font-size: 17px;
}

.banner-section .browse-btn {
    align-items: center;
    gap: 10px;
    padding: 17px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #E56C85 ;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.banner-section .contact-btn {
    align-items: center;
    gap: 10px;
    padding: 17px;
    border: 2px solid white;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.289);
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.browse-btn:hover{
    background:  rgb(225, 225, 225);
}

.contact-btn:hover{
    color: #E56C85 ;
    background: white;
}

.banner-button{
    gap: 30px;
}

/*DIVISION STYLING*/
.div-section{
    padding: 40px 0;
    background-color: white;
}




/* SECTION WRAPPER */
.contactus-section {
    padding: 80px 20px 40px;
    background: linear-gradient(to left,#e56c8489 , #f8e8eb, #c0e1f1, #e2ffe2);
    text-align: center;
}
.contactcus-header {
    font-size: 45px; 
    font-weight: bold;
    color: #1a2a47;
    margin-top: 40px;
}

.contactus-p {
    font-size: 18px; 
    color: #555;
    margin-top: 10px; 
    margin-bottom: 50px ;
}

.contactinfo-section {
    padding: 40px 20px 80px;
    background-color: #f8f9fa;
}

/* THE FLEXBOX LAYOUT */
.infolist-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

.contact-right-side {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

/* COMMON CARD STYLES */
.contactinfo-content, .messageus-container, .payment-methods-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.followus-container {
    background-color: #e56c849b ; 
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HEADERS */
.infolist-header, .messageus-header, .payment-header {
    font-size: 22px;
    color: #1a2a47;
    margin-bottom: 30px;
    font-weight: bold;
}

/* CONTACT ITEMS & ICONS */
.contact-item {
    display: flex; 
    gap: 15px; 
    margin-bottom: 20px;
    align-items: center;
 }

.icon-box { 
    width: 45px;
    height: 45px;
    border-radius: 12px; 
    display: flex;
    align-items: center;
    justify-content: center; 
    color: white; 
    font-size: 18px;
}

.socmed-icon { 
    background: rgba(255,255,255,0.2);
 }

.phone-bg {
     background-color: #e56c845d ;
}

.email-bg {
     background-color: #a2d2ff;
}

.location-bg {
     background-color: #b9fbc0; 
}

.hours-bg {
     background-color: #d8bbff;
 }

.text-content .label { font-size: 13px; color: #7d8597; margin: 0; }
.text-content .info { font-size: 15px; color: #1a2a47; font-weight: 600; margin: 0; }

/* FORM GRID */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 15px; }
.form-group label { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #1a2a47; }
input, textarea { 
    background: #f4f6f9; border: 1px solid transparent; 
    padding: 12px; border-radius: 10px; font-family: inherit;
}

textarea { height: 120px; resize: none; }
.send-btn {
    background: #E56C85 ; color: white; border: none; padding: 15px;
    border-radius: 12px; width: 100%; font-weight: bold; cursor: pointer;
    transition: 0.3s; margin-top: 10px;
}

.send-btn:hover { background: #E56C85 ; transform: translateY(-2px); }

/* PAYMENT GRID */
.payment-grid { display: flex; gap: 15px; }
.payment-item { flex: 1; text-align: center; padding: 20px; border: 1px solid #eee; border-radius: 15px; }
.payment-icon { 
    width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center; color: white; font-size: 20px;
}

.gcash-bg { background: #007dfe; }
.cod-bg { background: #4caf50; }
.store-bg { background: #ffb4a2; }




/*LOGIN STYLING*/

.login-section {
    background: linear-gradient(135deg, #e0f2f1 0%, #fce4ec 50%, #e1f5fe 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif; 
}

/* Card Container */
.login-section .login-container {
    background: white;
    width: 100%;
    max-width: 650px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 100px;
}

.login-section .form-title {
    color: #1a2a47;
    font-size: 32px;
    margin-bottom: 5px;
}

.login-section .form-subtitle {
    color: #7d8597;
    font-size: 15px;
    margin-bottom: 30px;
}

/* Grid System */
.login-section .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Input Fields */
.login-section .input-group {
    position: relative;
    text-align: left;
    margin-bottom: 20px;
}

.login-section .input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a2a47;
}

.login-section .input-group i {
    position: absolute;
    left: 15px;
    top: 42px;
    color: #adb5bd;
}

.login-section .input-group input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    background: #f4f6f9;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.3s;
    box-sizing: border-box; 
}

.login-section .input-group input:focus {
    border-color: #E56C85;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 138, 122, 0.1);
}

/* Checkbox & Terms (Updated Fix) */
.login-section .terms {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
    text-align: left;
    font-size: 13px;
    color: #555;
}

.login-section .terms input[type="checkbox"] {
    margin-top: 3px;
    width: 17px;
    height: 17px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #E56C85;
}

/* Login Form Options (Remember Me/Forgot Pass) */
.login-section .form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    margin: 20px 0;
    color: #555;
}

.login-section .form-options div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-section .terms label, 
.login-section .form-options label {
    cursor: pointer;
    line-height: 1.6;
}

.login-section .terms a, 
.login-section .forgot-pass, 
.login-section .switch-form a {
    color: #E56C85;
    text-decoration: none;
    font-weight: 600;
}

.login-section .terms a:hover, 
.login-section .forgot-pass:hover {
    text-decoration: underline;
}

/* Action Button */
.login-section .btn {
    width: 100%;
    padding: 15px;
    background: #E56C85 !important; 
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: block;
}

.login-section .btn:hover {
    background: #E56C85 !important;
    transform: translateY(-2px);
}

.login-section .switch-form {
    margin-top: 25px;
    font-size: 14px;
    color: #7d8597;
}



.alert-box {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-box i {
    font-size: 18px;
}

.payment-grid {
        grid-template-columns: 1fr;
}



/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .infolist-container { flex-direction: column; }
    .contact-left-side, .contact-right-side { width: 100%; max-width: 100%; }
    .form-grid, .payment-grid { grid-template-columns: 1fr; }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .login-section .form-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 900px){  
    
    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block !important; 
    }

    body.show-mobile-menu header::before{
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
        z-index: 99;
    }

    .navbar :where(#menu-close-button,
     #menu-open-button){
        display: block;
    }

    .navbar #menu-close-button{
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button{
        color: #332d2d;
    }

    .navbar .nav-menu {
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding-top: 100px;
        transition: left 0.3s ease;
        z-index: 100;
        display: flex; 
    }


    body.show-mobile-menu .navbar .nav-menu{
        left: 0;
    }


    .navbar .nav-menu .nav-link{
        display: block;
        margin-top: 17px;
        color: black;
        font-size: 15px;
        text-align: center;
    }



    .hero-section .section-content{
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }
    .discount-section{
        max-width: 100%;
    }

    .hero-section .hero-details :is(.description), .category-section .category-details{
        max-width: 100%;
    }

    .hero-section .hero-details .buttons{
        justify-content: center;
    }

    .hero-section .hero-image-wrapper{
        max-width: 270px;
        margin-right: 0;
     }

     .category-section .section-content{
        gap: 70px;
        flex-direction: column;
     }

     .shop-categories {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }

    /*contact us*/
   .infolist-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .messageus-container, .contactinfo-content {
        max-width: 100%; 
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .sociallink-section {
        flex-direction: column; 
        text-align: center;
        gap: 40px;
    }

    .social-icons {
        justify-content: center;
    }

    .section-content {
        width: 100%;
    }

    .sociallink-section {
        flex-direction: column; 
        text-align: center;      
        gap: 40px;               
        padding: 40px 20px;      
    }

    .soc-text .social-icons {
        justify-content: center; 
        margin-top: 20px;
    }

    .quicklink-header {
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }


    .links .sub-links {
        margin-bottom: 12px;
    }

    .sociallink-section .text-p {
        max-width: 250px;       
        margin: 5px auto;
    }


    /* --- MOBILE RESPONSIVE --- */
@media screen and (max-width: 900px) {
    .infolist-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-left-side, .messageus-container {
        width: 100%;
        max-width: 100%;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}
}

@media screen and (max-width: 900px) {

    .shop-container {
        flex-direction: column;
    }

    .filters {
        width: 100%;
        margin-bottom: 20px;
    }

   
    .shop-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 180px; 
    }
}

@media screen and (max-width: 480px) {

    .shop-images {
        grid-template-columns: 1fr;
    }
}


@media screen and (max-width: 900px) {
    .infolist-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-left-side, .contact-right-side {
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        flex-direction: column;
        gap: 15px;
    }

    .contactcus-header {
        font-size: 32px;
    }
}



/* --- ULTIMATE RESET PARA SA MOBILE PURCHASE --- */
/* --- TABLE-TO-CARD MOBILE TRANSFORMATION --- */
@media screen and (max-width: 900px) {
    /* 1. I-reset ang container para sa mobile */
    main.purchase-history-container {
        padding: 100px 10px 20px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 2. Gawing "Card" ang bawat order container */
    div[style*="background:#fff"] {
        display: block !important;
        width: 100% !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 8px !important;
        padding: 15px !important;
        margin-bottom: 15px !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
        box-sizing: border-box !important;
    }

    /* 3. Gawing "Table Cell" ang bawat row sa loob */
    div[style*="display:flex"] {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    /* 4. Product Cell (Image + Name): I-align sa kaliwa */
    div[style*="display:flex"]:has(img) {
        justify-content: flex-start !important;
        gap: 12px !important;
    }

    /* 5. Image styling */
    div[style*="display:flex"] img {
        width: 70px !important;
        height: 70px !important;
        object-fit: cover !important;
    }

    /* 6. Product Info: I-wrap ang text para hindi putol */
    div[style*="flex:1"] {
        flex: 1 !important;
        min-width: 0 !important;
    }

    div[style*="flex:1"] p {
        font-weight: 600 !important;
        font-size: 14px !important;
        margin: 0 !important;
    }

    /* 7. Label trick (Para magmukhang table) */
    /* Dito natin ilalagay yung 'data-label' effect */
    div[style*="font-weight:bold"]:not(:has(span)):not([style*="border-top"])::before {
        content: "Price: ";
        font-weight: 600;
        color: #666;
        margin-right: 5px;
    }
}