* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	line-height: 1;
}
table {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	line-height: 1;
}

h1 {
	font-size: 2rem; 
	font-weight: 700;
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1.5rem;
}


@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#customAlert.hide {
    animation: fadeOut 1s ease-in-out forwards;
}

.alert {
    margin-top: 20px;
}

.card {
    transform: translateY(-2px);
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-body {
    position: relative;
    padding: 20px;
}

.badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.bi {
    font-size: 1.2rem;
}

.list-unstyled li {
    display: flex;
    align-items: center;
}

.list-unstyled li i {
    margin-right: 0.5rem;
}

.modal-content {
    border-radius: 15px; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.modal-header.bg-primary {
    background-color: #0d6efd; 
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.modal-body {
    padding: 20px;
    font-size: 1rem;
    line-height: 1.6;
    z-index: 1050; 
}

.modal-footer {
    border-top: none; 
    justify-content: flex-end; 
}

.modal-footer .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    border-radius: 8px; 
    padding: 8px 16px;
    font-size: 0.9rem;
}

.modal-footer .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}
.download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px; 
	padding: 10px 20px;
	font-size: 16px;
	color: #fff;
	background-color: #007bff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
}
.download-btn:hover {
	background-color: #0056b3;
}
.cart-actions {
	display: flex;
	justify-content: space-between; 
	align-items: center; 
	margin-top: 20px; 
}

.cart-total {
	font-weight: bold;
	font-size: 1.2rem;
}

.checkout-button {
	padding: 10px 20px;
}
.responsive-img {
    width: 55px; 
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.responsive-img:hover {
    transform: scale(1.8); 
    cursor: zoom-in; 
    height: auto;
    object-fit: cover;
}
@media (max-width: 768px) {
    .row.g-3 > .col-md-8,
    .row.g-3 > .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .card {
        margin-bottom: 20px;
    }

    .table {
        font-size: 10px;
    }

    .table th,
    .table td {
        padding: 8px;
    }
}
.carousel-inner img {
    width: 100%;
    height: auto;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 100%;
    height: auto;
}
.custom-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
}
.floating-close {
    position: absolute; 
    top: 10px;
    right: 10px;
    z-index: 1050; 
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
}

