.categories {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-card {
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.category-card:hover .card-img {
    transform: scale(1.05);
}

.category-card .card-img {
    transition: transform 0.5s ease;
}

.gradient-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.05) 30%, transparent 100%);
    transition: all 0.3s ease;
}

.category-card:hover .gradient-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}

.category-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-content h1{
    font-family: "Cookie", cursive;
    font-size: 80px;
    color: black;
    font-weight: 500 !important;
}

.category-content:hover h1{
    font-family: "Cookie", cursive;
    font-size: 80px;
    color: white;
    font-weight: 500 !important;
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .categories .col-lg-6 {
        margin-bottom: 1px;
    }
    
    .category-card {
        margin-bottom: 1px;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Animation for card entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation for grid items */
.col-lg-6:nth-child(1) .category-card { animation-delay: 0.1s; }
.col-lg-6:nth-child(2) .category-card { animation-delay: 0.2s; }
.col-lg-6:nth-child(3) .category-card { animation-delay: 0.3s; }
.col-lg-6:nth-child(4) .category-card { animation-delay: 0.4s; }


.products {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header h2 {
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    border-radius: 2px;
}

.nav-pills .nav-link {
    background: transparent;
    color: #6c757d;
    border: 2px solid transparent;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.product-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

.product-image {
    border-radius: 15px 15px 0 0;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.product-actions {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    background: #dc3545 !important;
    color: white !important;
    transform: scale(1.1);
}

.product-overlay {
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.add-to-cart-btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.product-card:hover .add-to-cart-btn {
    transform: translateY(0);
    opacity: 1;
}

.product-rating .fas.fa-star {
    font-size: 0.9rem;
}

.btn-outline-primary {
    border: 2px solid;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-pills .nav-link {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
}

/* Animation for product cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation */
.col-xl-3:nth-child(1) .product-card { animation-delay: 0.1s; }
.col-xl-3:nth-child(2) .product-card { animation-delay: 0.2s; }
.col-xl-3:nth-child(3) .product-card { animation-delay: 0.3s; }
.col-xl-3:nth-child(4) .product-card { animation-delay: 0.4s; }

.banner-section {
    position: relative;
}

.banner-slide {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-content {
    animation: fadeInUp 1s ease-out;
}
.banner-content h1{
    font-family: "Cookie", cursive;
    font-size: 80px;
    color: black;
    font-weight: 400 !important;
}

.banner-subtitle {
    color: #ca1515;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.banner-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.banner-description {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    opacity: 0.9;
    color: black !important;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(220, 53, 69, 0.8);
    border-color: #dc3545;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: #dc3545;
    border-color: #dc3545;
    transform: scale(1.2);
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item {
    animation-duration: 1s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-slide {
        height: 60vh;
        min-height: 400px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .banner-slide {
        height: 50vh;
        min-height: 350px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-content {
        padding: 0 1rem;
    }
}

/* Auto-play animation */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Optional: Add parallax effect */
.banner-slide {
    background-attachment: fixed;
}

/* Loading state */
.carousel-item:not(.active) .banner-content {
    opacity: 0;
    transform: translateY(30px);
}

.carousel-item.active .banner-content {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.3s;
}

.trend-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header h3 {
    font-size: 1.5rem;
}

.section-title-badge {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    border-radius: 2px;
}

.trend-product-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.trend-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.product-image img {
    transition: transform 0.3s ease;
}

.trend-product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-title {
    font-size: 0.95rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating .fas.fa-star {
    font-size: 0.8rem;
}

.badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
    font-weight: 500;
}

/* Animation for cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trend-product-card {
    animation: slideInUp 0.5s ease forwards;
}

/* Stagger animation */
.trend-products .trend-product-card:nth-child(1) { animation-delay: 0.1s; }
.trend-products .trend-product-card:nth-child(2) { animation-delay: 0.2s; }
.trend-products .trend-product-card:nth-child(3) { animation-delay: 0.3s; }
.trend-products .trend-product-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .trend-section {
        padding: 2rem 0;
    }
    
    .section-header h3 {
        font-size: 1.3rem;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .product-image img {
        height: 80px !important;
    }
}

@media (max-width: 576px) {
    .trend-column {
        margin-bottom: 2rem;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-title-badge {
        left: 50%;
        top: -10px;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
    }
}

/* Price styling enhancements */
.text-danger {
    color: #dc3545 !important;
    font-size: 1rem;
}

.text-primary {
    color: #dc3545 !important;
    font-size: 1rem;
}

.text-muted.text-decoration-line-through {
    font-size: 0.85rem;
}

/* Hover effects for links */
a:hover .product-title {
    color: #dc3545 !important;
}

/* Loading state */
.trend-product-card {
    position: relative;
}

.trend-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.trend-product-card:hover::before {
    left: 100%;
}

.discount-section {

}

.bg-gradient-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

.discount-image {
    position: relative;
}

.discount-overlay {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
}

.discount-badge {
    animation: pulse 2s infinite;
}

.sale-text {
    font-size: 2rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.countdown-item {
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1) !important;
}

.countdown-number {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.countdown-label {
    letter-spacing: 1px;
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    border: none;
    color: #000;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,193,7,0.4) !important;
    color: #000;
}

.btn-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-warning:hover::before {
    left: 100%;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

@keyframes countdownFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.countdown-number {
    animation: countdownFlash 1s infinite;
}

.countdown-item:nth-child(1) .countdown-number { animation-delay: 0.1s; }
.countdown-item:nth-child(2) .countdown-number { animation-delay: 0.2s; }
.countdown-item:nth-child(3) .countdown-number { animation-delay: 0.3s; }
.countdown-item:nth-child(4) .countdown-number { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 992px) {
    .discount-content {
        padding: 3rem 2rem !important;
    }
    
    .display-1 {
        font-size: 4rem;
    }
    
    .countdown-number {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .discount-section {
        padding: 2rem 0;
    }
    
    .row.g-0 {
        border-radius: 1rem !important;
    }
    
    .discount-image {
        min-height: 300px;
    }
    
    .display-5 {
        font-size: 2.5rem;
    }
    
    .display-1 {
        font-size: 3.5rem;
    }
    
    .countdown-number {
        font-size: 2rem !important;
    }
    
    .countdown-item {
        padding: 1rem !important;
    }
}

@media (max-width: 576px) {
    .discount-content {
        padding: 2rem 1.5rem !important;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-1 {
        font-size: 3rem;
    }
    
    .countdown-number {
        font-size: 1.5rem !important;
    }
    
    .btn-warning {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Loading animation */
.discount-section {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Optional: Add floating elements */
.discount-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.discount-content::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

    .content-body{
        margin-top:5rem !important;
    }
.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc3545 !important;
}

.services {
    padding-top: 80px;
    padding-bottom: 50px;
}

.services__item {
    padding-left: 65px;
    position: relative;
    margin-bottom: 20px;
}

.services__item i {
    font-size: 36px;
    color: #ca1515;
    position: absolute;
    left: 0;
    top: 4px;
}

.services__item h6 {
    color: #111111;
    font-weight: 600;
    margin-bottom: 5px;
}

.services__item p {
    margin-bottom: 0;

    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    color: #666666;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px 0;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #dc3545;
}

.btn-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cart {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.search-form .form-control:focus {
    box-shadow: none;
    background: transparent;
    color: white;
}

.modal-content.bg-dark {
    background: rgba(0,0,0,0.9) !important;
    backdrop-filter: blur(10px);
}


/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #dc3545;
}

.breadcrumb-item.active {
    color: #dc3545;
}

/* Filter Section */
.filter-title {
    color: #2c3e50;
    font-size: 1.1rem;
}

.filter-section {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-check-input:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

.form-check-label {
    cursor: pointer;
    transition: color 0.3s ease;
}

.form-check-input:checked + .form-check-label {
    color: #dc3545;
    font-weight: 500;
}

/* Price Range */
.form-range::-webkit-slider-thumb {
    background: #dc3545;
}

.form-range::-moz-range-thumb {
    background: #dc3545;
}

/* Product Card */
.product-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
}

.product-image {
    border-radius: 12px 12px 0 0;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.product-actions {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions .btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    background: #dc3545 !important;
    color: white !important;
    transform: scale(1.1);
}

.product-overlay {
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.add-to-cart-btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.product-card:hover .add-to-cart-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    #mobileFilters {
        margin-bottom: 2rem;
    }
    
    .products-header {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
    
    .sort-options {
        width: 100%;
    }
    
    .sort-options .form-select {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .shop-section {
        padding: 2rem 0;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation */
.col-xl-4:nth-child(1) .product-card { animation-delay: 0.1s; }
.col-xl-4:nth-child(2) .product-card { animation-delay: 0.2s; }
.col-xl-4:nth-child(3) .product-card { animation-delay: 0.3s; }
.col-xl-4:nth-child(4) .product-card { animation-delay: 0.4s; }

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom Pagination Styles */
.pagination .page-link {
    color: #dc3545;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
}

.pagination .page-link:hover {
    color: #dc3545;
    background-color: #f8f9fa;
}

/* Product Gallery */
.product-gallery .main-image {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.thumbnail-item img {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumbnail-item img.active,
.thumbnail-item img:hover {
    border-color: #dc3545;
    transform: scale(1.05);
}

/* Product Info */
.product-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.product-price .badge {
    font-size: 0.8rem;
}

/* Quantity Selector */
.quantity-selector .input-group {
    max-width: 150px;
}

.quantity-selector .btn {
    border-color: #dee2e6;
}

.quantity-selector .form-control {
    border-left: none;
    border-right: none;
}

/* Product Tabs */
.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    color: #dc3545;
    background: transparent;
    border-bottom: 3px solid #dc3545;
}

.nav-tabs .nav-link:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.tab-content {
    border: 1px solid #e9ecef;
    border-top: none;
}

/* Related Products */
.related-products {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-gallery {
        margin-bottom: 2rem;
    }
    
    .add-to-cart-section .row {
        flex-direction: column;
    }
    
    .add-to-cart-section .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-gallery,
.product-info,
.product-tabs {
    animation: fadeIn 0.6s ease forwards;
}

.product-info { animation-delay: 0.1s; }
.product-tabs { animation-delay: 0.2s; }

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Button Enhancements */
.btn-primary {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-primary:disabled {
    background: #6c757d;
    cursor: not-allowed;
}


/*CArt List STart*/

.cart-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 70vh;
}

.cart-item {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background-color: rgba(0,0,0,0.02);
}

.quantity-selector .form-control {
    border: 1px solid #dee2e6;
}

.quantity-selector .btn {
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.quantity-selector .btn:hover:not(:disabled) {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.quantity-selector .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-attributes .badge {
    font-size: 0.75rem;
    font-weight: 500;
}

.empty-cart-icon {
    opacity: 0.6;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item {
    animation: fadeIn 0.5s ease forwards;
}

/* Stagger animation for cart items */
.cart-item:nth-child(1) { animation-delay: 0.1s; }
.cart-item:nth-child(2) { animation-delay: 0.2s; }
.cart-item:nth-child(3) { animation-delay: 0.3s; }
.cart-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .cart-section {
        padding: 2rem 0;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .product-info h6 {
        font-size: 0.9rem;
    }
    
    .quantity-selector {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quantity-selector .form-control {
        width: 60px !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cart-item td {
        padding: 1rem 0.5rem;
    }
    
    .d-flex.gap-3 {
        gap: 1rem !important;
    }
    
    .product-info {
        min-width: 150px;
    }
}

/* Success alert styling */
.alert-success {
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

/* Card enhancements */
.card {
    border-radius: 15px;
    overflow: hidden;
}

.card-header {
    border-bottom: 1px solid #e9ecef;
}

/* Input group enhancements */
.input-group .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.input-group .btn-success {
    background: linear-gradient(135deg, #198754, #157347);
    border: none;
}

.input-group .btn-success:hover {
    background: linear-gradient(135deg, #157347, #0f5132);
}

/*Cart List End*/


/*CART Start*/

.cart-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 60vh;
}

.cart-header {
    position: relative;
}

.cart-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    border-radius: 2px;
}

.empty-cart-state {
    background: white;
    border-radius: 15px;
    padding: 4rem 2rem !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.empty-cart-icon {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-section {
        padding: 2rem 0;
    }
    
    .cart-header h1 {
        font-size: 2.5rem;
    }
    
    .empty-cart-state {
        padding: 3rem 1rem !important;
    }
}

/* Animation for cart items */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item {
    animation: slideInUp 0.5s ease forwards;
}

/*CART End*/