.breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat';
    font-size: 14px;
    padding: 20px 50px;
}

.breadcrumb a {
    color: #5C5F6A;
    text-decoration: none;
}

.main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    gap: 40px;
}

/* Sidebar Styles */

.sidebar {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-item img {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.sidebar-item span {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #777777;
    font-weight: 400;
}

/* Active state */
.sidebar-item.active {
    background-color: #F5F5F5;
    border-radius: 40px;
}

.sidebar-item.active img {
    opacity: 1;
}

.sidebar-item.active span {
    color: #161616;
    font-weight: 500;
}

/* Hover state */
.sidebar-item:hover:not(.active) {
    background-color: #FAFAFA;
    border-radius: 40px;
}

.sidebar-item:hover:not(.active) img {
    opacity: 0.7;
}

.sidebar-item:hover:not(.active) span {
    color: #444444;
}


/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 20px;
}
.coupons-title {
    font-size: 24px;
    font-weight: 600;
    color: #161616;
    margin-bottom: 40px;
    font-family: 'Montserrat';
}
.coupon-section{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
.coupon-section_collected{
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}
.section-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    align-items: center;
}
.section-title {
    font-size: 16px;
    letter-spacing: 0.02em;
    font-weight: 500;
    font-family: 'Outfit';
    color: #5c5f6a;
}



.coupons-container {
    padding-top: 24px;
}


.coupon-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.coupon-card {
    display: flex;
    justify-content: space-between;
    grid-template-columns: 1fr 2fr;
    background: #FFFFFF;
    width: max-content;
    min-width: 300px;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.coupon-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #161616;
    border-radius: 16px;
}

.coupon-card::after {
    content: "";
    border-bottom: 1px solid #161616;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0%;
    right: 39%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    border-radius: 50%;
    z-index: 1;
    left: 36%;
}
.right-section::after {
    content: "";
    border-top: 1px solid #161616;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 100%;
    right: 58%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    border-radius: 50%;
    z-index: 1;
}

.left-section {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.no-min-spend {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #777777;
    margin-bottom: 16px;
}

.discount {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
}

.discount-amount {
    font-family: 'Playfair Display';
    font-size: 48px;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.discount-amount span {
    font-size: 24px;
    margin-left: 4px;
    font-family: 'Playfair Display';
}

.discount-text {
    font-family: 'Playfair Display';
    font-size: 14px;
    color: #161616;
}

.right-section {
    display: flex;
    flex-direction: column;
    z-index: 2;
    padding-left: 32px;
}

.coupon-title {
    font-family: 'Urbanist';
    font-size: 16px;
    color: #161616;
    font-weight: 500;
    margin-bottom: 8px;
}
.coupon-desc {
    display: flex;
    font-family: 'Urbanist';
    font-size: 14px;
    color: #777777;
    margin-bottom: 16px;
    justify-content: flex-start;
}

.collect-btn {
    width: 100%;
    background: #161616;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 12px;
    font-family: 'Urbanist';
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: lowercase;
    margin-bottom: 16px;
}

.collect-btn:hover {
    background: #333;
}

.collected-btn {
    width: 100%;
    background: #777;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 12px;
    font-family: 'Urbanist';
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: lowercase;
    margin-bottom: 16px;
}

.validity {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.valid-from,
.valid-till {
    font-family: 'Urbanist';
    font-size: 8.69px;
    color: #5c5f6a;
    text-align: left;
    display: flex;
    gap: 8px;
}

.valid-from span,
.valid-till span {
    font-size: 8.69px;
    font-weight: 600;
    font-family: 'Urbanist';
    color: #5c5f6a;
}

@media (max-width: 1200px) {
    .coupon-cards {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 20px;
    }

    .sidebar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 10px;
    }

    .coupon-card {
        min-width: auto;
        width: 100%;
        padding: 20px;
    }
}
