/* Custom CSS - To be used with Bootstrap */

:root {
    --bs-primary: #4361ee;
    --bs-primary-rgb: 67, 97, 238;
    --bs-secondary: #6c757d;
    --bs-success: #28a745;
    --bs-info: #4cc9f0;
    --bs-warning: #ffc107;
    --bs-danger: #f72585;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
}

/* General Style Settings */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    background-image: linear-gradient(135deg, #1a1a2e, #16213e);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Navbar Customizations */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

/* Card Customizations */
.card {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.scale-110 {
    transform: scale(1.1);
}

.card-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Button Customizations */
.btn {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a0ca3, #4361ee);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-outline-primary {
    border-color: #4361ee;
    color: #4361ee;
}

.btn-outline-primary:hover {
    background-color: #4361ee;
    color: white;
    transform: translateY(-2px);
}

/* Form Customizations */
.form-control {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Footer Customizations */
footer {
    background-color: rgba(0, 0, 0, 0.2);
}

footer a {
    transition: all 0.3s ease;
}

/* Modern Card Design */
.modern-card {
    position: relative;
    background: rgba(30, 30, 40, 0.7);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1rem;
}

.modern-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-card:hover .card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    transition: opacity 0.3s ease;
}

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

.card-actions {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.modern-card:hover .card-actions {
    transform: translateY(0);
    opacity: 1;
}

.card-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.card-action-btn::before {
    content: attr(title);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.card-action-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.info-btn {
    background-color: #4cc9f0;
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.buy-btn {
    background-color: #4361ee;
    box-shadow: 0 0 10px rgba(67, 97, 238, 0.5);
}

.fav-btn {
    background-color: #f72585;
    box-shadow: 0 0 10px rgba(247, 37, 133, 0.5);
}

.card-action-btn:hover {
    transform: scale(1.15);
}

.info-btn:hover {
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.8);
}

.buy-btn:hover {
    box-shadow: 0 0 15px rgba(67, 97, 238, 0.8);
}

.fav-btn:hover {
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.8);
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    display: inline-flex;
    align-items: center;
}

.current-price.free {
    color: #4ade80;
}

.steam-price {
    text-decoration: line-through;
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 2px;
    position: relative;
    display: inline-block;
}

.price-container.has-discount::after {
    content: attr(data-discount);
    position: absolute;
    right: -45px;
    top: 0;
    background: linear-gradient(135deg, #f72585, #b5179e);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(247, 37, 133, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.buy-now-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.5);
}

/* Game Badge Styles */
.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-badge i {
    font-size: 0.8rem;
}

.badge-popular {
    background: linear-gradient(135deg, #3a0ca3, #4361ee);
    border: 1px solid rgba(67, 97, 238, 0.3);
}

.badge-sale {
    background: linear-gradient(135deg, #f72585, #b5179e);
    border: 1px solid rgba(247, 37, 133, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, #4cc9f0, #4895ef);
    border: 1px solid rgba(76, 201, 240, 0.2);
}

/* Specific Styles for Labeled Cards */
.card-popular {
    border: 1px solid rgba(67, 97, 238, 0.2);
}

.card-sale {
    border: 1px solid rgba(247, 37, 133, 0.2);
}

.card-new {
    border: 1px solid rgba(76, 201, 240, 0.2);
}

.card-popular:hover {
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
}

.card-sale:hover {
    box-shadow: 0 15px 30px rgba(247, 37, 133, 0.2);
}

.card-new:hover {
    box-shadow: 0 15px 30px rgba(76, 201, 240, 0.2);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Settings */
@media (max-width: 768px) {
    .ribbon {
        width: 170px;
        font-size: 0.7rem;
        left: -40px;
        top: 30px;
    }
}

/* Carousel Control Button Styles */
#featuredGamesCarousel .carousel-control-prev,
#featuredGamesCarousel .carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    width: 5%; /* Slightly increase width */
    opacity: 0.7; /* Make slightly more visible initially */
    transition: opacity 0.2s ease;
}

#featuredGamesCarousel .carousel-control-prev:hover,
#featuredGamesCarousel .carousel-control-next:hover {
    opacity: 1; /* Fully visible on hover */
}

#featuredGamesCarousel .carousel-control-prev-icon,
#featuredGamesCarousel .carousel-control-next-icon {
    background-size: 60%, 60%; /* Slightly enlarge icon size */
    filter: brightness(1.5); /* Make icon slightly brighter */
}

/* Carousel Image Styles */
.carousel-game-image {
    max-height: 400px; /* To limit carousel height */
    width: 100%;
    object-fit: cover; /* Fit image to cover the area, maintain aspect ratio, crop if necessary */
    object-position: center; /* Center the image for cropping */
}

footer a:hover {
    color: var(--bs-primary) !important;
}

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

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

/* Responsive Settings */
@media (max-width: 576px) {
    .game-detail-container {
        padding: 15px;
    }
    
    .price-container-large.has-discount::after {
        position: static;
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .review-item {
        padding: 15px;
    }
}

/* Additional Styles for Similar Games */
.transition-all {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3545;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.object-fit-cover {
    object-fit: cover;
}

/* Steam Price Style */
.steam-price {
    text-decoration: line-through;
    font-size: 0.9em; /* Optionally slightly smaller */
    color: #adb5bd; /* More readable gray tone, opacity removed */
}

/* Countdown Timer */
.countdown-timer {
    font-size: 0.95rem;
}
.countdown-timer .badge {
    font-size: 0.9rem;
    padding: 0.3em 0.6em;
}

/* Modern Price and Rating Styles */
.discount-badge-inline {
    font-size: 0.85rem;
    padding: 0.35em 0.65em;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

.game-rating-stars {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
}

.rating-score {
    font-size: 1rem;
    margin-right: 1rem;
}

/* Game Detail Page Styles */
.game-detail-container {
    background: rgba(30, 30, 40, 0.7);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.game-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-thumbnails {
    margin-top: 15px;
}

.thumbnail-swiper {
    padding: 5px;
}

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

.thumbnail-item.active {
    border-color: var(--bs-primary);
    box-shadow: 0 0 10px rgba(var(--bs-primary-rgb), 0.5);
}

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

.thumbnail-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--bs-primary);
    background: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

.game-info-card {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.game-badge-large {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.game-description {
    color: #e2e2e2;
    line-height: 1.6;
    font-size: 0.95rem;
}

.game-meta {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
}

.meta-label {
    font-size: 0.8rem;
    color: #adb5bd;
    margin-bottom: 5px;
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
}

.game-purchase-section {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 12, 163, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(67, 97, 238, 0.2);
}

.price-container-large {
    position: relative;
    display: flex;
    flex-direction: column;
}

.game-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.game-price.free {
    color: #4ade80;
}

.steam-price-large {
    text-decoration: line-through;
    font-size: 1.1rem;
    color: #adb5bd;
    margin-top: 2px;
}

.price-container-large.has-discount::after {
    content: attr(data-discount);
    position: absolute;
    right: -60px;
    top: 5px;
    background: linear-gradient(135deg, #f72585, #b5179e);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(247, 37, 133, 0.4);
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.system-requirements {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(67, 97, 238, 0.1);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(67, 97, 238, 0.5);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.social-share {
    margin-top: 25px;
}

.similar-games-section {
    padding: 30px;
    background: rgba(30, 30, 40, 0.5);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.similar-game-card {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.similar-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.similar-game-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.similar-game-img {
    height: 120px;
    overflow: hidden;
}

.similar-game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.similar-game-content {
    padding: 12px;
}

.similar-game-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-game-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    position: relative;
}

.game-reviews {
    padding: 30px;
    background: rgba(30, 30, 40, 0.5);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-form {
    margin-bottom: 30px;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-star {
    font-size: 1.5rem;
    color: #adb5bd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-star.hover, .rating-star.text-warning {
    color: #ffc107 !important;
}

.review-item {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.review-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.review-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.review-date {
    color: #adb5bd;
    margin-bottom: 10px;
}

.review-text {
    color: #e2e2e2;
    line-height: 1.5;
    margin-bottom: 0;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 0.9rem;
}

/* Specific Styles for System Requirements */
.system-req-content {
    color: #e2e2e2;
    line-height: 1.6;
}

.system-req-content .fw-bold {
    color: #fff;
    font-weight: 600 !important;
}

.system-req-content ul.bb_ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.system-req-content ul.bb_ul li {
    margin-bottom: 0.5rem;
}

/* Modern Tab Design */
.game-tabs .nav-tabs {
    border: none;
    background: rgba(20, 20, 30, 0.5);
    border-radius: 12px;
    padding: 8px;
    display: inline-flex;
    margin-bottom: 15px;
}

.game-tabs .nav-item {
    margin-right: 5px;
}

.game-tabs .nav-item:last-child {
    margin-right: 0;
}

.game-tabs .nav-link {
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    color: #adb5bd;
    transition: all 0.3s ease;
    background: transparent;
}

.game-tabs .nav-link:hover {
    color: white;
    background: rgba(67, 97, 238, 0.1);
}

.game-tabs .nav-link.active {
    color: white;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.game-tabs .tab-content {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Description Content Overflow Management */
.game-description-content {
    overflow-wrap: break-word; /* Break long words/URLs */
    word-wrap: break-word;     /* For older browsers */
    word-break: break-word;    /* Break words at appropriate places (break-all is more aggressive) */
    line-height: 1.7;          /* Increase readability */
}

.game-description-content img {
    max-width: 100%;           /* Prevent images from overflowing */
    height: auto;              /* Maintain aspect ratio */
    display: block;            /* Can remove bottom margin */
    margin: 1rem 0;            /* Add vertical space to images */
    border-radius: 8px;        /* Slight corner rounding for images */
}

.game-description-content table {
    width: 100% !important;    /* Force table width to container */
    max-width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    display: block;            /* Make table a block element */
    overflow-x: auto;          /* Add scrollbar if horizontal overflow */
    white-space: nowrap;       /* Allow cell content to scroll */
}

.game-description-content th,
.game-description-content td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    white-space: normal;       /* Allow cell content to wrap normally */
    vertical-align: top;
}

.game-description-content th {
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.game-description-content a {
    color: var(--bs-info);     /* Color links within description */
    text-decoration: underline;
}

.game-description-content a:hover {
    color: #80deea;            /* Hover color */
}

/* Responsive Settings */
@media (max-width: 992px) {
    .game-info-card {
        margin-top: 20px;
    }
    
    .price-container-large.has-discount::after {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .game-detail-container {
        padding: 20px;
    }
    
    .game-title {
        font-size: 1.5rem;
    }
    
    .game-price {
        font-size: 1.5rem;
    }
    
    .similar-game-img {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .game-detail-container {
        padding: 15px;
    }
    
    .price-container-large.has-discount::after {
        position: static;
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .review-item {
        padding: 15px;
    }
}

/* Added to Cart Info Styles */
.added-to-cart-info {
    font-size: 0.85rem;
    color: #a0aec0;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.added-to-cart-info .fa-shopping-basket {
    color: #38a169;
}

.added-to-cart-info strong {
    color: #e2e8f0;
}

/* Game Detail Navigation Styles */
.game-detail-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.back-button {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.back-button:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    background-color: rgba(255, 255, 255, 0.08);
}

.breadcrumb-custom {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-custom .breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--bs-info);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #adb5bd;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: ">";
    padding: 0 0.4rem;
}

/* Stock Info Styles */
.stock-info {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stock-info .fa-check-circle {
    color: var(--bs-success);
}

.stock-info .fa-triangle-exclamation {
    color: var(--bs-danger);
}

/* Sold Today Info Styles */
.sold-today-info {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a0aec0; /* Metin rengi */
}

.sold-today-info .fa-fire { /* İkon sınıfını ve rengini güncelledik */
    color: var(--bs-danger); /* Bootstrap danger rengi */
}

.sold-today-info strong {
    color: #e2e8f0; /* Sayı için biraz daha açık bir renk */
}
