body {
    padding-top: 55px;
    background-color: #000;
    margin: 0;

}

body,
h1,
h2,
h3,
p,
a {
    font-family: 'Times New Roman', Times, serif;
}

.header-upper,
.header-top {
    animation: slideInDown 1s ease-in-out;
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for buttons */
.btn-style-two,
.navbar-brand,
.nav-link {
    animation: scaleIn 1s ease-in-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation for carousel */
.carousel-item {
    animation: fadeIn 1.5s ease-in-out;
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Media queries for responsiveness */
@media (max-width: 1200px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 10px;
    }
}

/* cards */


:root {





    --btnbg: #ffcc00;
    --btnfontcolor: rgb(61, 61, 61);
    --btnfontcolorhover: rgb(255, 255, 255);
    --btnbghover: #ffc116;
    --btnactivefs: rgb(241, 195, 46);


    --label-index: #960796;
    --danger-index: #5bc257;
    /* PAGINATE */
    --link-color: #000;
    --link-color-hover: #fff;
    --bg-content-color: #ffcc00;

}

html {
    scroll-behavior: smooth;
}

.container-fluid {
    max-width: 1400px;

}

.Products {
    text-align: center;
    text-decoration: underline gold 3px;
}

.card {
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 0 6px rgba(0, 0, 0, .05);
    transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12), .3s box-shadow, .3s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);
    border: 0;
    border-radius: 1rem;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(1rem - 1px);
    border-top-right-radius: calc(1rem - 1px);
}


.card h5 {

    overflow: auto;
    height: 170px;
    font-weight: 300;
    font-size: 1rem;
}

.card h5 a {
    color: black;
    text-decoration: none;
}

.card-img-top {
    width: 100%;
    min-height: 250px;
    max-height: 250px;
    object-fit: contain;
    padding: 30px;
}

.card h2 {
    font-size: 1rem;
}


.card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
}

/* Centered text */
.label-top {
    position: absolute;
    background-color: var(--label-index);
    color: #fff;
    top: 8px;
    right: 8px;
    padding: 5px 10px 5px 10px;
    font-size: .7rem;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
}

.top-right {
    position: absolute;
    top: 24px;
    left: 24px;

    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 900;
    background: #8bc34a;
    line-height: 90px;
    text-align: center;
    color: white;
}

.top-right span {
    display: inline-block;
    vertical-align: middle;
    /* line-height: normal; */
    /* padding: 0 25px; */
}

.aff-link {
    /* text-decoration: overline; */
    font-weight: 500;
}

.over-bg {
    background: rgba(53, 53, 53, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(0.0px);
    -webkit-backdrop-filter: blur(0.0px);
    border-radius: 10px;
}

.bold-btn {

    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 50px 5px 50px;
}

.box .btn {
    font-size: 1.5rem;
}

@media (max-width: 1025px) {
    .btn {
        padding: 5px 40px 5px 40px;
    }
}

@media (max-width: 250px) {
    .btn {
        padding: 5px 30px 5px 30px;
    }
}

/* START BUTTON */
.btn-warning {
    background: var(--btnbg);
    color: var(--btnfontcolor);
    fill: #ffffff;
    border: none;
    text-decoration: none;
    outline: 0;
    /* box-shadow: -1px 6px 19px rgba(247, 129, 10, 0.25); */
    border-radius: 100px;
}

.btn-warning:hover {
    background: var(--btnbghover);
    color: var(--btnfontcolorhover);
    /* box-shadow: -1px 6px 13px rgba(255, 150, 43, 0.35); */
}

.btn-check:focus+.btn-warning,
.btn-warning:focus {
    background: var(--btnbghover);
    color: var(--btnfontcolorhover);
    /* box-shadow: -1px 6px 13px rgba(255, 150, 43, 0.35); */
}

.btn-warning:active:focus {
    box-shadow: 0 0 0 0.25rem var(--btnactivefs);
}

.btn-warning:active {
    background: var(--btnbghover);
    color: var(--btnfontcolorhover);
    /* box-shadow: -1px 6px 13px rgba(255, 150, 43, 0.35); */
}

/* END BUTTON */

.bg-success {
    font-size: 1rem;
    background-color: var(--btnbg) !important;
    color: var(--btnfontcolor) !important;
}

.bg-danger {
    font-size: 1rem;
}


.price-hp {
    font-size: 1rem;
    font-weight: 600;
    color: darkgray;
}

.amz-hp {
    font-size: .7rem;
    font-weight: 600;
    color: darkgray;
}

.fa-question-circle:before {
    /* content: "\f059"; */
    color: darkgray;
}

.fa-heart:before {
    color: crimson;
}

.fa-chevron-circle-right:before {
    color: darkgray;
}

/* cards ends */
.navbar-collapse {
    max-height: none;
    /* Ensure the max height is not set */
    overflow: hidden;
    /* Add overflow property */
}

.navbar-nav {
    max-height: none;
    /* Ensure the max height is not set */
}

.navbar-toggler {
    margin-bottom: 10px;
    /* Add margin to the navbar-toggler */
}

.navbar {
    background-color: blue;
    border-color: blue;
    border-radius: 0;
    /* Optional: Remove border radius if desired */
    overflow: hidden;
    /* Add overflow property */
    padding: 10px;
    /* Add padding to the navbar */
}

.navbar-default .navbar-nav>li>a {
    color: yellow;
    /* Apply attractive font */
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: yellow;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: blue;
    /* Change background color on hover/focus */
}

.navbar-default .navbar-nav>li>a:hover {
    color: gold;
    /* Change text color on hover */
}

/* Optional: Remove dropdown arrow */
.navbar-default .navbar-toggle .icon-bar {
    display: none;
}

.header-upper .info-box ul {
    list-style-type: none;
    /* Remove list item markers */
    padding: 0;
}




.header-top,
.header-upper {
    background-color: black;
    color: yellow;
    padding: 10px 0;
}

.header-top .links-nav,
.header-upper .links-nav {
    list-style-type: none;
    /* Remove list item markers */
    padding: 0;
    /* Remove default padding */
    margin: 0;
    /* Remove default margin */
}

.header-top .links-nav li a,
.header-top .social-links a,
.header-upper .links-nav li a {
    color: yellow;
}

.header-top .links-nav li a:hover,
.header-top .social-links a:hover,
.header-upper .links-nav li a:hover {
    color: gold;
    /* Change color on hover */
}

.header-upper .info-box ul {
    list-style-type: none;
    /* Remove list item markers */
    padding: 0;
}

.header-upper .info-box ul li {
    display: inline;
    /* Display list items inline */
    margin-right: 20px;
    /* Add spacing between items if necessary */
}

.header-upper .info-box ul li .icon-box {
    display: inline-flex;
    /* Align icons and text horizontally */
    align-items: center;
    /* Center items vertically */
    margin-right: 10px;
    /* Add spacing between icons and text */
}

.email-icon,
.phone-icon {
    font-size: 1.2rem;
    /* Adjust icon size if needed */
    color: #ffd700;
    /* Set icon color to gold */
    vertical-align: middle;
    /* Align icons vertically */
}



main {
    background-color: #000000;
    color: white;
    font-size: 60px;
    padding-top: 30px;
    max-width: 10000px;
    overflow-x: visible;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 80px;
    grid-auto-flow: dense;
    grid-gap: 10px;
}

.grid li {
    position: relative;
}

.grid li:nth-child(n+1) {
    grid-row: span 2;
}

.grid li:nth-child(2n+1) {
    grid-row: span 3;
    grid-column: span 2;
}

.grid li:nth-child(2n+1) {
    grid-row: span 4;
    grid-column: span 2;
}



@media (max-width: 768.98px) {
    main {
        font-size: 30px;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        grid-auto-rows: 40px;
        grid-gap: 5px;
    }

    .grid li {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 575.98px) {
    main {
        font-size: 15px;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        grid-auto-rows: 24px;
        grid-gap: 5px;
    }
}


* {
    box-sizing: border-box;
}





ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* about */

.about-us-style {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}

.about_title {
    font-size: 36px;
    margin-bottom: 20px;
}

.decor-line {
    display: block;
    margin: 0 auto 20px;
    width: 50px;
    height: 3px;
    background-color: #edbe39;
}

.about_content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-style-two {
    background: #edbe39;
    color: #000;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-style-two:hover {
    background: #fff;
    color: #000;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}


/* Contact Us Section */
.contact-us-style {
    background-color: #000;
    padding: 80px 0;
}

.contact-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-desc {
    color: #fff;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-form form {
    max-width: 500px;
}

.contact-form button {
    background-color: #ffcc00;
    color: #000;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #ffc116;
}

.google-map {
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-list li {
        font-size: 16px;
    }

    .contact-form button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* fotter */
.footer-section {
    background-color: black;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.developer-link,
.instagram-link {
    color: #edbe39;
    text-decoration: none;
    font-weight: bold;
}

.developer-link:hover,
.instagram-link:hover {
    text-decoration: underline;
}


.footer-separator {
    border-top: 1px solid #edbe39;
    margin-top: 2px;
}

#wa {
    width: 20%;
}

/* nav */

/* Modal */
.modal {
    display: none;
    /* Hide the modal by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
}






/* Responsive styling for modal content */
.modal-content1 {
    width: 60%;
    /* Example percentage width */

    margin: 0 auto;
    /* Center the modal content */
    margin-top: 2%;
    padding: 20px;
    /* Example responsive padding */
    font-size: 1rem;
    /* Example responsive font size */
    /* Additional styling */
    background-color: #ffffff;
    /* Light gray background color */
    border-radius: 10px;
    /* Rounded corners */
    border: 10px solid #3498db;
    /* Border color */
}

@media only screen and (max-width: 600px) {
    .modal-content1 {
        width: 100%;
    }
}

/* Flexbox for alignment */
.product-details {
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive font size for product details */
.product-details p {
    margin: 0px;
    font-size: 1;
    /* Example responsive font size */
    color: #000;
    background: #ffffff;
}

/* Responsive styling for modal image */
#productImage {
    width: 100%;
    /* Ensure image takes full width */
    height: auto;
    /* Allow height to adjust according to aspect ratio */
    max-width: 100%;
    /* Ensure image does not exceed container width */
    max-height: 300px;
    /* Set a maximum height to prevent excessive stretching */
    object-fit: contain;
    /* Maintain aspect ratio and cover entire container */
    border-radius: 10px;
    /* Optional: Rounded corners */
}

/* CSS for hovering animations on catalog images */
.grid li {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.grid li img {
    transition: transform 0.3s ease;
}

.grid li:hover img {
    transform: scale(1.1);
}