@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Color */
    --bodyColor: #f7f7f7;
    --accentColor: #ff5d00;
    --accentColor2: #fd6e1b;
    --accentTransparent: #ff90508c;
    --accentColorLight: #fce1d0;
    --font-color: #000000;
    --light-font-color: #494949;
    --noColor: rgba(0, 0, 0, 0);
    --sectionLabelColor: #333333;
    --darkBlue: #002955;
    --accentGradient: linear-gradient(to right, #ff5d00, #ff7b00, #ffd900);
    --goldenColor: #ff8900;
    --whiteColor: #fff;

    /* size */
    --max-width: 1200px;
    --header-height: 80px;
    --fontSmall: 14px;
    --fontNormal: 16px;
    --fontLarge: 18px;
    --fontXlarge: 24px;
    --fontXXlarge: 32px;
    --systemPading: 14px;

}

html {
    font-size: 16px;
}



/* Global Css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.title {
    font-size: var(--fontXlarge);
}

.h-50vh {
    height: 50vh;
}
.h-200 {
    height: 200px;
}
.h-300 {
    height: 300px;
}

.square-100 {
    height: 100px;
    width: 100px;
    object-fit: cover;
}

.squire-200 {
    height: 200px;
    width: 200px;
    object-fit: cover;

}

.square-200 {
    height: 200px;
    width: 200px;
    object-fit: cover;

}

.square-75 {
    height: 75px;
    width: 75px;
}

.squire-50 {
    height: 50px;
    width: 50px;
}

.cart-fab-btn {
    height: 60px !important;
    width: 60px !important;
    padding: 8px;
    border-radius: 40px !important;
    text-decoration: none;
    align-content: center;
    text-align: center;
    background-color: var(--accentColor);
    position: relative;
    color: white;
    font-size: 25px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.cart-fab-btn:hover {
    color: white;
}

.cart-fab-btn div {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 10px;
    left: 30px;
    color: white;
    background-color: grey;
    border-radius: 30px;
    padding: 1px;
    text-align: center;
    align-content: center;
    font-size: 12px;
}

.btn-golden {
    background-color: var(--goldenColor) !important;
    color: white !important;
    border-radius: 5px !important;
    padding: 4px 12px !important;
    font-size: var(--fontNormal) !important;
    text-decoration: none !important;
    align-content: center;
    text-align: center;
}

.btn-white {
    background-color: white !important;
    color: var(--font-color) !important;
    border-radius: 5px !important;
    padding: 4px 12px !important;
    font-size: var(--fontNormal) !important;
    text-decoration: none !important;
    align-content: center;
    text-align: center;
}

.accent-btn {
    border: none;
    background-color: var(--accentColor);
    min-width: 50px;
    min-height: 25px;
    color: white;
    margin: 0px;
    text-decoration: none;
}

.accent-btn:hover {
    color: white;
}


body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.material-icons-outlined {
    vertical-align: middle;
}


.blur-background {
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent */
  backdrop-filter: blur(10px);         /* Blur behind the div */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-radius: 12px;
}

.max-width{
    max-width: var(--max-width) !important;
}

.safe-area {
    width: 100%;
}

.scroll-btn {
    border: none;
    background-color: var(--noColor);
}
.box-fit-cover{
    object-fit: cover  !important;
}
.object-fit-cover {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.object-fit-contain {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
}

.bg-accent {
    background: var(--accentColor) !important;
    color: white !important;
}

.accent-border {
    border: 1px solid var(--accentColor);
}

.text-accent {
    color: var(--accentColor);
}

.fs-normal {
    font-size: 14px;
}

.fs-medium {
    font-size: 16px;
}

.fs-big {
    font-size: 18px;
}

.fs-xbig {
    font-size: 22px;
}

.fs-xxbig {
    font-size: 26px;
}

.fw-semi-bold {
    font-weight: 600;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* Global css end */




.header {
    /* background:  var(--accentColor); */
    padding: 15px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
    /* margin-bottom: 5px; */
}


.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white !important;
    transition: color 0.3s ease;
}

.nav-link {
    color: white !important;
}

.header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0 !important;
}

.header nav ul li {
    display: inline;
}

.header nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header nav ul li a:hover {
    color: #ffd700;
    /* Gold color on hover */
}



footer {
    background: #222;
    color: white;
    padding: 40px 20px;
    /* margin-top: 50px; */
}

footer>p {
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
}

.footer-section {
    flex: 1;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accentColor);
}

.social-icons img {
    width: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Product css */

.product-card {
    max-width: 200px;
    min-width: 200px;
    height: 300px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    text-align: center;
    position: relative;
    border: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-overflow: ellipsis;
    color: var(--font-color);
}

.product-card a {
    text-decoration: none;
}

.product-card img {
    width: 100%;
    height: 65%;
    border-radius: 10px;
    transition: 500ms;
}

/* .product-card:hover  {
    border: 1px solid var(--accentColorLight);
}  */
.product-card:hover img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

.action-buttons {
    font-size: 25px;
    position: absolute;
    top: 30px;
    right: 0px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.action-buttons button {
    background: white;
    border: none;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.product-card:hover .action-buttons {
    right: 10px;
    opacity: 1;
}

.product-card-content {
    height: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly !important;
}

.product-category {
    color: red;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}



.product-title {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    overflow: hidden;
    color: var(--font-color);
    text-overflow: ellipsis;
    line-height: 20px;
    max-height: 40px;
}

.product-price {
    font-size: 16px;
    font-weight: 400;
    color: #27ae60;
    text-align: left;
}

.old-price {
    text-decoration: line-through;
    color: gray;
    margin-right: 5px;
}

.featured-product-section {
    height: 400px;
    max-width: var(--max-width);
    background-image: var(--accentGradient);
    padding: 20px;
    /* border-radius: 12px; */
    color: white;
}

#featured-product-sectionId {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    width: inherit;
    padding: 10px;
    gap: 10px;
}

.login-model-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
}


.align-center {
    align-content: center;
}

.lines-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Set your max lines here */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 1219px) {
    .safe-area {
        padding: 0 20px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {

    /* Small Device */
    :root {
        --fontSmall: 12px;
        --fontNormal: 14px;
        --fontLarge: 16px;
        --fontXlarge: 20px;
        --fontXXlarge: 30px;
    }

    html {
        font-size: 12px;
    }

}

@media (min-width: 600px) and (max-width: 1024px) {
    /* Styles for tablets */
    html{
    font-size: 14px;
}



}

@media (min-width: 1024px) {
    /* Styles for desktops */
html{
    font-size: 16px;
}

}