/* Linklerin altındaki çizgiyi kaldırmak için */
#new-arrival a,
#new-arrival .btn-link,
#new-arrival .product-content h5 a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.product-item {
    background: #fff;
    height: 100%;
}

.image-holder {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.product-image {
    width: 100%;
    height: auto;
}

.product-content {
    padding: 0;
    margin: 0;
}

.product-title {
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
}

    .product-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 0.3px;
        display: block;
        line-height: 1.2;
    }

        .product-title a:hover {
            color: #666;
        }

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.price {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    white-space: nowrap;
}

.price-note {
    color: #666;
    font-size: 0.85rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.sidebar {
    background-color: #343a40;
    min-height: 100vh;
    padding-top: 20px;
    position: fixed;
    width: inherit;
    max-width: inherit;
}

    .sidebar a {
        color: white;
        text-decoration: none;
        padding: 10px 20px;
        display: block;
        transition: all 0.3s;
    }

        .sidebar a:hover {
            background-color: #495057;
        }

        .sidebar a.active {
            background-color: #0d6efd;
        }

.main-content {
    padding: 20px;
    margin-left: 16.666667%;
}

.card {
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.table img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.product-image-preview {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

/* Custom container widths */
.container {
    max-width: 100% !important;
}

.container-lg {
    max-width: 100% !important;
}

.container-xl {
    max-width: 100% !important;
}

.container-xxl {
    max-width: 100% !important;
}

/* Campaign Section Styles */
.collection {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.collection-item {
    margin: 0 !important;
    padding: 0 !important;
    flex: 1;
    display: flex;
}

.column-container {
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh;
    display: flex;
}

.column-container .image-holder {
    height: 100%;
    flex: 1;
}

.column-container .image-holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.collection-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

/* Hide scrollbar for the entire page */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Modern Slider Content Styles */
.slider-content-modern {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.slider-content-box {
    background: rgba(30, 30, 30, 0.65);
    border-radius: 24px;
    padding: 2.5rem 3.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    text-align: center;
    max-width: 600px;
    width: 90%;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: auto;
}

.slider-title {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.slider-desc {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #e0e0e0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .slider-content-box {
        padding: 1.2rem 1rem;
        max-width: 95vw;
    }
    .slider-title {
        font-size: 1.5rem;
    }
    .slider-desc {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}