* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --red: #f15c45;
    --white: #ffffff;
    --black: #000;
}

body {
    background: rgb(239, 239, 239);
}

.container-fluid {
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: unset;
}

a:hover {
    color: unset;
}

img {
    width: 100%;
    height: 100%;
}

h3,
h1,
h2,
h4,
h5 {
    font-family: 'Abel', sans-serif;
}

.top-nav a,
.top-nav a:hover {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-family: Poppins;
}

.top-nav li {
    display: inline-block;
    position: relative;
    padding: 0px 10px;
    /* margin-right: 50px; */
    float: right;
}

.top-nav li:last-child {
    margin-right: 0;
}

.top-nav li:after {
    content: '';
    display: block;
    margin: auto;
    height: 3px;
    width: 0px;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}

.top-nav li:hover:after {
    width: 100%;
    background: var(--white);
}

.top-navbar {
    position: fixed;
    /* top: 0; */
    z-index: 1000;
    background: rgba(0, 0, 0, 0.581);
    height: 70px;
    width: 100%;
    margin-left: 0;
    padding: 0;
    transition: all 0.5s;
}

.top-navbar.active {
    transition: all 0.8s ease;
    width: 80%;
    margin-left: 20%;
}

.top-navbar .logo img {
    width: 140px;
    height: 70px;
    /* margin-top: -15px; */
    object-fit: contain;
}

.top-navbar .logo .menu-bar button {
    background: none;
    font-size: 28px;
    font-weight: lighter;
    font-family: Poppins;
    color: var(--white);
    margin: 13px 14px;
    border: 0;
}

.top-navbar .logo .menu-bar button:hover {
    transition: all 0.5s;
    color: var(--red);
}

.close-btn {
    display: none;
}

.side-nav {
    height: 100vh;
    width: 260px;
    max-width: 80vw;
    left: -100%;
    position: fixed;
    background: #11141a;
    top: 0;
    z-index: 2100;
}

.side-nav.active {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    left: 0;
    visibility: visible;
}

.side-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.side-nav ul li {
    padding: 0;
    margin: 0;
    border-bottom: none;
    line-height: normal;
    cursor: pointer;
}

.side-nav ul li a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.side-nav ul li a:hover {
    transition: all 0.25s;
    color: var(--red);
}

.side-nav .contact h4 {
    font-size: 17px;
    padding: 20px 50px;
    color: var(--white);
    line-height: 20px;
    /* margin-bottom: 10px; */
    margin: 0;
    cursor: pointer;
}

.side-nav ul li a i {
    color: var(--red);
    padding: 0px 10px;
}

.side-nav .contact a {
    text-decoration: none;
    color: whitesmoke;
    display: block;
    font-weight: 600;
    font-family: Poppins;
    padding: 7px 15px;
}

.side-nav .contact a i {
    padding-right: 12px;
    color: var(--red);
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    display: none;
    padding: 6px 0 !important;
    height: 60px;
    width: 100%;
    background: #0f1217 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

.mobile-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    height: 100%;
}

.mobile-nav ul li {
    flex: 1;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
}

.mobile-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    gap: 2px;
    line-height: 1.2;
}

.mobile-nav ul li a span {
    color: #cbd5e1 !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.mobile-nav ul li a i {
    color: #cbd5e1 !important;
    font-size: 16px !important;
    padding: 0 !important;
    margin-bottom: 2px;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a:hover span,
.mobile-nav ul li a:hover i {
    color: #ffffff !important;
}

.mobile-nav ul li a.active,
.mobile-nav ul li a.active span,
.mobile-nav ul li a.active i {
    color: var(--red, #f15c45) !important;
}

.main {
    /* padding: 10px 20px; */
    height: 100vh;
    width: 100%;
    margin-left: 0;
    padding: 0;
    /* background: rgb(174, 174, 174); */
}

.main.active {
    transition: all 0.8s ease;
    width: 80%;
    margin-left: 20%;
    padding: 0;
}

.main video {
    height: calc(100vh + 20px);
    object-fit: cover;
}

.main .data {
    padding: 0px 4px;
    width: 100%;
    /* height: 100%; */
}

.main .button-div {
    width: 100%;
}

.main .data .intro {
    margin-top:18px;
    text-align: center;
    color: rgb(217, 156, 0);
    font-family: Poppins;
}

.main .data h2 {
    font-family: 'Abel', sans-serif;
    text-align: center;
}

.box {
    width: 23.5%;
    height: auto;
    box-shadow: 2px 2px 4px rgba(79, 79, 79, 0.512);
    padding:0px;
    margin: 10px;
    float: left;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.box:hover {
    transition: all 0.5s;
    box-shadow: 4px 4px 9px rgba(79, 79, 79, 0.512);
    cursor: pointer;
}

.box.active {
    width: 31%;
}

.box .box-title img {
    object-fit: contain;
}

.box .box-title p {
    font-size: 12px;
    text-transform: capitalize;
}

.box .box-title span {
    color: #3c3c3c;
    font-size: 12px;
}

.box .box-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 100%;
}

.box .box-img img {
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.box .box-img img:hover {
    transform: scale(1.2);
}

.box .actions li {
    display: inline-block;
    list-style: none;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
}

.box .actions li i {
    color: var(--red);
}


/* button css  */

.button {
    position: relative;
    transition: 500ms ease-out;
}

.button:hover {
    color: white;
}

.button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    background-color: var(--red);
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 500ms ease-out;
}

.button:hover::after {
    height: 100%;
    color: white;
}

.footer {
    visibility: hidden;
    padding: 10px;
    background: var(--black);
    bottom: 0;
    width: 100%;
}

.footer p {
    color: var(--white);
}

.carousel {
    margin-top: 60px;
}

.detail .detail-box {
    border-radius: 12px;
    background: whitesmoke;
    padding: 10px 20px;
    box-shadow: 2px 2px 3px #3c3c3c84;
    margin: 12px 0px;
}

.detail .detail-box i {
    color: var(--red);
    font-size: 24px;
}

.detail .detail-box p {
    font-weight: 600;
}

.detail .detail-box .pdata {
    padding-right: 10px;
    text-align: left;
}

.sold-box {
    padding: 20px;
}

.sold-box h3 {
    color: #3c3c3c;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Abel', sans-serif;
}

.sold-box input {
    width: 100%;
    padding: 10px;
}

.sold-box p,.sold-box select {
    background: white;
    border: 0.5px solid #5f5f5f;
    border-radius: 2px;
    width: 100%;
    padding: 11px;
}

.data h1,
.data h2 {
    text-transform: uppercase;
    font-weight: lighter;
    font-family: 'Abel', sans-serif;
}

.data h4 {
    /* text-transform:; */
    font-family: Poppins;
    text-align: center;
    font-weight: 300;
}

.main .catalouge {
    width: 70%;
    margin: 20px auto;
    padding: 10px 20px;
    box-shadow: 2px 2px 4px #3c3c3c88;
    border-radius: 7px;
    cursor: pointer;
}

.main .catalouge:hover {
    transition: all 0.5s ease-in-out;
    box-shadow: 3px 3px 6px #3c3c3c70;
    width: 72%;
}

.main .catalouge a {
    display: block;
    text-align: right;
}

.main .catalouge a i {
    color: var(--red);
    font-size: 17px;
    font-weight: 600;
}

.main .catalouge p {
    font-size: 17px;
    /* font-weight: 600; */
}

.searchtext {
    text-align: left;
    font-size: 15px;
    color: var(--red);
    text-transform: capitalize;
}

.searchtext i {
    color: var(--red);
}

.search input {
    border: 0.5px solid #3c3c3c;
    border-radius: 7px;
    background: whitesmoke;
    padding: 10px 20px;
    width: 100%;
}

.search .filter select {
    border: 0.5px solid #3c3c3c;
    border-radius: 7px;
    background: whitesmoke;
    padding: 10px 20px;
    width: 100%;
}

.contactgal {
    padding: 20px 10px;
}

.contactgal .div {
    width: 45%;
    margin: 10px;
    text-align: center;
    box-shadow: 2px 2px 3px #3c3c3c88;
    padding: 10px;
    border-radius: 7px;
}

.contactgal .div:hover {
    transition: all 0.5s;
    width: 45.7%;
    cursor: pointer;
    box-shadow: 2px 2px 5px #3c3c3c88;
}

.contactgal .div i {
    color: #3c3c3c;
}

.data form {
    width: 70%;
    margin: 20px auto;
    height: 100%;
}

.data form .form-group {
    margin: 10px 0px;
}

.data form label {
    font-size: 15px;
}

.toptext {
    font-family: 'Abel', sans-serif;
    background: #7171717c;
    color: var(--white);
    margin-top: -30%;
    padding: 10px 20px;
    /* text-align: center; */
    border-radius: 25px 25px 0px 0px;
    font-weight: 600;
    letter-spacing: 3px;
    /* animation: pop 0.5s alternate 7s; */
}

.w3-animate-bottom {
    position: relative;
    animation: animatebottom 0.7s
}

.data form a {
    font-size: 14px;
}

.data form a:hover {
    transition: all 0.4s;
    color: var(--red);
}

.register .img1,
.register .img2 {
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.pro_img {
    height: 600px;
    object-fit: contain;
}

.share-div {
    margin-top: -20px;
    padding: 10px;
}

.share-div a {
    background-color: var(--black);
    border: 1px solid var(--white);
    border-radius: 50%;
    padding: 10px;
    margin: 10px;
}

.share-div i {
    color: var(--white);
}

.share-div a:hover {
    transition: all 0.5s;
    padding: 6px;
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0
    }
    to {
        bottom: 0;
        opacity: 1
    }
}


/* ribbon css */

.box {
    position: relative;
}

.ribbon {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#F70505 0%, #f15c45 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    left: -21px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #f15c45;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #f15c45;
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #f15c45;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #f15c45;
}

#success-msg {
    background: #DEF1D8;
    color: green;
    padding: 10px;
    margin: auto;
    display: none;
    position: fixed;
    bottom: 0;
    width: 80%;
}

#loading-msg {
    background: #f8e8a6;
    color: rgb(128, 83, 0);
    padding: 10px;
    margin: auto;
    display: none;
    position: fixed;
    bottom: 0;
    width: 80%;
}

#error-msg {
    background: #EFDCDD;
    color: red;
    padding: 10px;
    margin: auto;
    display: none;
    position: fixed;
    bottom: 0;
    width: 80%;
}

form select {
    width: 100%;
    padding: 7px;
    background: white;
    border: 0.5px solid #c2c2c2;
    border-radius: 7px;
}

.userbox .box {
    border: 10px;
}

.userbox .bigi {
    font-size: 40px;
    padding: 20px 0px;
    color: var(--red);
}

.userbox p {
    font-size: 25px;
}

.userbox span {
    font-size: 30px;
}

#search_bar input {
    border-radius: 10px;
    border: 0.5px solid #5f5f5f;
}

.table {
    padding: 10px;
}

.table #table_data {
    width: 60%;
    margin: 10px auto;
    text-align: center;
}

.table #table_data table {
    width: 100%;
    margin: 0px auto;
    text-align: center;
}

.table td,
.table th {
    padding: 10px;
    font-size: 15px;
}

@media (max-width:850px) {
    .box {
        width: 45%;
        padding:4px 22px;
    }
    .box .box-img{
        padding:9px;
        border-radius: 5px;
    }
    .box .box-img img{
        border-radius: 5px;
    }
    .box.active {
        width: 46%;
        margin: 10px;
    }
    .data h4 {
        font-size: 17px;
    }
    .detail .detail-box .pdata {
        text-align: right;
    }
    .register .img1,
    .register .img2 {
        height: 100vh;
        object-fit: contain;
    }
    .toptext {
        margin-top: -50%;
    }
    .usersearch form {
        width: 100%;
    }
}

@media (max-width:660px) {
    .contactgal .div {
        width: 98%;
    }
    .contactgal .div:hover {
        width: 98.7%;
    }
    .box {
        width: 99%;
        margin: 20px auto;
    }
    .box.active {
        width: 93%;
    }
    .box-title {
        padding: 0px;
    }
    .box-title p {
        font-size: 14px;
    }
    .box-title span {
        font-size: 13px;
    }
    .main video {
        height: 500px;
        object-fit: cover;
    }
    .pro_img {
        height: 500px;
    }
    .userbox .bigi {
        font-size: 30px;
    }
    .userbox p {
        font-size: 18px;
    }
    .userbox span {
        font-size: 20px;
    }
    .table #table_data {
        width: 100%;
    }
    .table td,
    .table th {
        padding: 7px;
        font-size: 14px;
    }
}

@media (max-width:600px) {
    .menu-bar {
        display: none;
    }
    /* .box {
        width: 90%;
        margin: 20px;
    } */
    .mobile-nav {
        display: block;
    }
    .data h1,
    .data h2 {
        font-size: 18px;
    }
    .data h4 {
        font-size: 14px;
    }
    .main .catalouge {
        width: 80%;
    }
    .main .catalouge:hover {
        width: 82%;
    }
    .main .catalouge p {
        font-size: 14px;
    }
    .footer {
        visibility: hidden;
    }
    .toptext {
        margin-top: -90%;
    }
}

@media (max-width:420px) {
    .toptext {
        margin-top: -120%;
    }
}

@media (max-width:395px) {
}

/* SOLD OUT Watermark & Overlay */
.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.sold-out-text {
    color: #fff;
    background: var(--red, #f15c45);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    transform: rotate(-10deg);
    white-space: nowrap;
}

/* PWA Styling */
.pwa-banner {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: #181a1a;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 15px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.pwa-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pwa-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.pwa-text {
    display: flex;
    flex-direction: column;
}

.pwa-text h5 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0;
    font-size: 15px;
    text-transform: none;
}

.pwa-text p {
    color: #b1b1b1;
    font-size: 11px;
    margin: 0;
    line-height: 14px;
    text-align: left;
}

.pwa-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.pwa-btn-close {
    background: transparent;
    border: none;
    color: #b1b1b1;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
}

.pwa-btn-install {
    background: var(--red, #f15c45);
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    padding: 6px 16px;
    box-shadow: 0 2px 5px rgba(241, 92, 69, 0.4);
    transition: all 0.2s ease;
}

.pwa-btn-install:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .pwa-banner {
        max-width: 380px;
        left: auto;
        right: 20px;
        bottom: 20px;
    }
}