
:root{
    --pink:#e84393;
}
*{
    margin: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
    outline: none;
    border: none;
    text-decoration: none;
    transition: .2s linear;

}
.best-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e91e63;
    color: white;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.box {
    position: relative;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}
section{
    padding: 2rem 9%;

}
.heading{
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(239, 232, 181, 0.159);

}


.heading span{
    color:#b9ac7f;
    
}
.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}
.btn:hover{
    background: #b9ac7f;
}
header{
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #fff;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgb(0, 0, 0, .1);
}

 header .logo{
    font-size:2.5rem;
    color: #333;
    font-weight: bolder;
 }

header .logo span{
    color:#b9ac7f;
}

header .navbar a{
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #666;
}

header .navbar a:hover{
    color: #b9ac7f;
}

header .icons a{
    font-size: 3rem;
    color: #333;
    margin-left: 1.5rem;
}

header .icons a:hover{
    color:#b9ac7f;
}

header #toggler{
    display: none;
}

header .fa-bars{
    font-size: 3rem;
    color: #333;
    border-radius:none;
    padding: .5rem 1.5rem;
    cursor: pointer; 
    display: none;
}

.home {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    min-height: 100vh;
    background: url(homebg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0 5rem; /* Add padding for smaller screens */
    text-align: left; /* Align text to the left */
}

.home .content {
    max-width: 50rem;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background for readability */
    padding: 2rem;
    border-radius: 1rem;
    margin-top: -25rem; /* Move the container upwards */
}

.home .content h3 {
    font-size: 3.5rem;
    color: #333;
}

.home .content span {
    font-size: 1.51rem;
    color: #b9ac7f;
    padding: 1rem 0;
    line-height: 2.0;
}

.home .content p {
    font-size: 1.8rem;
    color: #060606;
    padding: 1rem 0;
    line-height: 1.6;
}

/* Responsive Design for smaller devices */
@media (max-width: 768px) {


    .home .content {
        max-width: 100%; /* Allow the content to take full width on smaller devices */
        padding: 1.5rem;
    }
}

.about .row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-bottom: 3rem;
}

.about .row .image-container {
    flex: 1 1 40rem;
    position: relative;
    display: flex;
    justify-content: center; /* Center the image */
}

.about .row .image-container img {
    width: 73%;
    border: 1.5rem solid #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    object-fit: cover;
}

.about .row .image-container h3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: rgba(0,0,0,.1);
    width: 70%;
    padding: 1rem 2rem;
    text-align: center;
    mix-blend-mode: screen;
}

.about .row .content {
    flex: 1 1 40rem;
}

.about .row .content h3 {
    font-size: 3.5rem;
    color: #333;
}

.about .row .content p {
    font-size: 1.6rem;
    color: #999;
    padding: .5rem 0;
    padding-top: 2rem;
    line-height: 1.5;
}

/* Responsive Design for smaller devices */
@media (max-width: 768px) {
    .about .row {
        flex-direction: column; /* Stack the content vertically */
        text-align: left; /* Center the text on smaller devices */
    }

    .about .row .image-container {
        justify-content: center; /* Center the image */
        flex-basis: auto; /* Allow flexibility */
    }

    .about .row .image-container img {
        width: 50%; /* Adjust the image size for smaller screens */
    }

    .about .row .content {
        padding-top: 2rem;
    }
}

/* CSS for Show More Button */
.show-more-btn {
display: inline-block;
margin: 3rem auto; /* Center align the button with margin on top and bottom */
padding: 1rem 2rem; /* Add padding for better clickability */
font-size: 1.7rem; /* Adjust font size for readability */
color: #fff; /* Text color */
background-color: #0e0d0b; /* Button background color */
border: none; /* Remove default border */
border-radius: 5rem; /* Rounded corners */
text-align: center; /* Center align the text inside the button */
cursor: pointer; /* Change cursor to pointer on hover */
transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.show-more-btn:hover {
background-color: #b9ac7f; /* Lighter background color on hover */
color: #333; /* Change text color on hover */
transform: scale(1.05); /* Slightly enlarge button on hover */
}

.show-more-btn:focus {
outline: none; /* Remove default focus outline */
box-shadow: 0 0 0 3px rgba(130, 128, 123, 0.5); /* Add a custom focus outline */
}

.icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #eee;
}

.icons-container .icons {
    background: #fff;
    border: .1rem solid rgba(0,0,0,.1);
    padding: 2rem;
    display: flex;
    align-items: center;
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border-radius: .5rem;
    position: relative;
}

.icons-container .icons img {
    height: 40rem;
    margin-right: 0rem;
}
/* CSS for Product Category Title */
.product-category {
margin: 2rem 0;
}

.product-category .category-title {
font-size: 2.5rem; /* Adjust the font size */
color: #333; /* Text color */

font-weight: bold; /* Make the text bold */
border-bottom: 2px solid #dbdbdb; /* Add a bottom border for emphasis */
padding-bottom: 0.5rem; /* Add padding below the text */
margin-bottom:2rem; /* Add margin below the title */
text-align: center; /* Center align the text */
background-color: #ffffff; /* Optional background color for contrast */
border-radius: 0.5rem; /* Optional rounded corners for the background */
display: inline-block; /* Align with other elements nicely */
}


/* Hover effect similar to products */
.icons-container .icons:hover {
    box-shadow: 0 .7rem 1.7rem rgba(0,0,0,.2);
    transform: scale(1.02);
    transition: 0.3s;
}

.icons-container .icons img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

/* CSS for Product Section */
.box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.box {
    flex: 1 1 calc(33.333% - 1rem);
    box-sizing: border-box;
}

.hidden {
    display: none;
}

.show-more-btn {
    display: block;
    margin: 1rem auto;
}

/* Gallery section CSS */
.gallery {
    padding: 50px 0;
    text-align: center;
    background-color: #f2f2f2;
}

.gallery .heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Individual gallery items */
.gallery-item {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Additional images initially hidden */
.gallery-more {
    display: none; /* Hidden initially */
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Buttons */
.gallery-buttons {
    margin-top: 20px;
    text-align: center;
}

.gallery-buttons button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.gallery-buttons button:hover {
    background-color: #b9ac7f;
}




/* Styling for visible products */

/* Style for postage text */
.postage {
    font-size: 14px; /* Set a suitable font size */
    font-style: italic; /* Make the text italic */
    color: #6b6b6b; /* Set a light gray color */
    margin-top: 5px; /* Add some space above */
    text-align: center; /* Center the text */
}

.box-container.expanded .hidden {
    display: block;
}


.products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;

}

.products .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,.1);
    position: relative;
}

.products .box-container .box .discount{
    position: absolute;
    top: 1rem; left: 1rem;
    padding: .7rem 1rem;
    font-size: 2rem;
    color: #b9ac7f#b9ac7f;
    background: rgba(232, 215, 30, 0.5);
    z-index: 1;
    border-radius: .5rem;
}

.products .box-container .box .image{
    position: relative;
    text-align: center;
    padding-left: 2rem;
    overflow: hidden;
}

.products .box-container .box .image img{
    height: 25rem;
}

.products .box-container .box:hover .image img{
    transform: scale(1.1);
}

.products .box-container .box .image .icons{
    position: absolute;
    bottom: -7rem; left: 0; right: 0;
    display: flex;
}

.products .box-container .box:hover .image .icons{
    bottom: 0;
}

.products .box-container .box:hover .image .icons a{
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    width: 50%;
    background:#52d11f;
    color: #fff;
}

.products .box-container .box:hover .image .icons .cart-btn{
    border-left: .1rem solid #fff7;
    border-right: .1rem solid #fff7;
    width: 100%;
}

.products .box-container .box:hover .image .icons a:hover{
    background: #333;
}

.products .box-container .box .content{
    padding: 2rem;
    text-align: center;
}

.products .box-container .box .content h3{
    font-size: 2.5rem;
    color: #333;
}

.products .box-container .box .content .price{
    font-size: 2.5rem;
    color: #b9ac7f;
    font-weight: bolder;
    padding-top: 1rem;
}

.products .box-container .box .content .price span{
    font-size: 1.5rem;
    color: #999;
    font-weight: lighter;
    text-decoration: line-through;
}

.postage {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}




/* Review Section Styles */
.review {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.review .heading {
    text-align: center;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.review .heading span {
    color:  #b9ac7f;
 
}

.review .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* Space between review boxes */
}

.review .box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    flex: 1 1 30%; /* Flex basis for three boxes per row */
    position: relative;
    margin: 0; /* Reset margin */
}

.review .stars {
    color: #ffc107; /* Star color */
    margin-bottom: 2rem;
}

.review .user {
    display: flex;
    align-items: center;
}

.review .user img {
    width: 40px;
    height: 40px;  
    border-radius: 50%;
    margin-right: 0.5rem;
}
.user-info h3 {
    font-size: 1.5em; /* Adjust size as needed */
    font-weight: bold; /* Optional: make the text bold */
}

.user-info span {
    font-size: 1.2em; /* Adjust size as needed */
    color: #666; /* Optional: change color for better visibility */
}

.review .review-proof {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    margin-top: 1rem;
}

.review .hidden {
    display: none; /* Hidden class style */
}

.toggle-button {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    background-color: #313331; /* Button color */
    color: #fff;
    cursor: pointer;
    font-size: 1.59rem;
}

.toggle-button:hover {
    background-color: #b9ac7f; /* Darker green on hover */
}

/* Media Query for responsiveness */
@media (max-width: 600px) {
    .review .box {
        flex: 1 1 100%; /* Full width for mobile devices */
    }
}

@media (min-width: 600px) {
    .review .box {
        flex: 1 1 30%; /* Three boxes per row for medium and larger screens */
    }
}


/* Footer Section Styles */
.footer {
    background-color: #000; /* Black background */
    color: #f2f0e4; /* White/Off-white text */
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 26px; /* Base font size */
}

.footer .box-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.footer .box {
    flex: 1 1 25%;
    margin: 0 20px;
    text-align: left;
}

.footer .box h3 {
    font-size: 2.25rem; /* Clean and balanced heading size */
    color: #f2f0e4; /* Gold color for headings */
    margin-bottom: 15px;
    font-weight: 600; /* Slightly bold headings */
}

.footer .box a {
    display: block;
    font-size: 1.50rem; /* Regular link font size */
    color: #f2f0e4; /* White/Off-white text */
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6; /* Better readability */
}

.footer .box a:hover {
    color: #ffff0e; /* Gold on hover */
}

.footer .logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer .footer-logo {
    width: 80px;
    margin-right: 10px;
}

.footer .company-name {
    font-size: 1.50rem; /* Company name size */
    font-weight: bold;
    color: #f2f0e4; /* Gold for company name */
}

.footer .credit {
    margin-top: 40px;
    font-size: 1.875rem; /* Slightly smaller for the credit text */
    color: #888;
    text-align: center;
    width: 100%;
}
.footer .ssm-number {
    font-size: 1.70rem; /* Adjust the font size */
    color: #f2f0e4; /* Consistent color with the rest of the footer */
    text-align: center; /* Center the SSM number */
    margin-top: 40px; /* Add some space above the SSM number */
    margin-bottom: 5px; /* Space between SSM number and credit */
}


.footer .credit span {
    color: #f2f0e4;
}

.footer .box i {
    margin-right: 10px;
}

.footer .box-container a {
    display: flex;
    align-items: center;
}

.footer .box-container a i {
    font-size: 1.79rem;
    color: #f2f0e4; /* Gold icons */
    margin-right: 8px;
}

@media (max-width: 768px) {
    .footer .box-container {
        flex-direction: column;
        align-items: center;
    }

 
    .footer .box {
        flex: 1 1 100%;
        text-align: center;
        margin: 20px 0;
    }
}


@media (max-width: 768px) {
    .footer .box-container {
        flex-direction: column;
        align-items: center;
    }

    .footer .box {
        flex: 1 1 100%;
        text-align: center;
        margin: 20px 0; /* Adjust margin for spacing */
    }
}

@media (max-width: 768px) {
    .footer .box {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer .box-container {
        flex-direction: column;
        align-items: center;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer .box-container {
        flex-direction: column;
    }

    .footer .box-container .box {
        flex: 1 1 100%;
    }
}







/* media queries*/
@media (max-width:991px){
    
html{
    font-size: 55%
}
header{
    padding: 2rem;
}
section{
    padding: 2rem;
}
.home{
    background-position: center;
}

}

@media (max-width:768px){
    html .fa-bars{
        display: block;
    }
    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #eee;
        border-top: .1rem solid rgba(0,0,0,.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header #toggler:checked ~ .navbar{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);;
    }
    header .navbar a{
        margin: 1.5rem;
        padding: 1.5rem;
        background: #fff;
        border: .1rem solid rgb(0, 0, 0, .1);
        display: block;
    }
    .home.content h3{
        font-size: 5rem;

    }
    .home.content span{
        font-size: 2.5rem;
        
    }
    .icons-container .icons h3{
        
        font-size: 2rem;
    }
    
    
    .icons-container .icons span{
        font-size: 1.7rem;
    }
}


@media (max-width:450px){
    
    html{
        font-size: 50%
    }
    .heading{
        font-size: 3rem;
    }
    
    }































































