/* travel-bags.css */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
    --primary-blue: #002d5b;
    --accent-blue: #0088cc;
    --text-dark: #333333;
    --text-gray: #8ca4bc;
    --price-red: #ff4d4d;
    --price-blue: #003a70;
    --border-color: #ededed;
    --bg-light: #fcfcfc;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background-color: var(--bg-light);
    color: #1e293b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.travel-hero {
    background-color: white;
    color: black;
    padding: 23px 0;
    text-align: center;
    /* Full width border removed */
}

.hero-content-box {
    border-bottom: 1px solid #ff5e14; /* Limit border to content width */
    padding: 0 40px 40px 40px;
    display: inline-block;
    max-width: 850px;
    margin: 0 auto;
}

.travel-hero h1 {
    font-size: 45px;
    font-weight: bold;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    color: #002d5b;
}

.travel-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.5;
}

/* Main Content */
.travel-content {
    padding: 60px 0;
    display: flex;
    gap: 40px;
}

/* Sidebar */
.travel-sidebar {
    flex: 0 0 300px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.search-box {
    position: relative;
    margin-bottom: 24px;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: #ff5e14;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* ===============================
   COMMON LIST STYLE
================================ */
.category-list,
.status-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li,
.status-item {
    margin-bottom: 6px;
}

/* ===============================
   FULL CLICKABLE ROW
================================ */
.custom-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s ease;
    user-select: none;
    border: none;
}

/* hover effect */
.custom-check:hover {
    background: #e9eef5;
}

/* ===============================
   HIDE DEFAULT CHECKBOX
================================ */
.custom-check input {
    display: none;
}

/* ===============================
   CUSTOM BOX
================================ */
.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ff5e14;
    border-radius: 5px;
    position: relative;
    flex-shrink: 0;
}

/* ===============================
   CHECKED STATE
================================ */
.custom-check input:checked+.checkmark {
    background: #ff5e14;
}

/* tick */
.custom-check input:checked+.checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
    position: absolute;
    top: -2px;
    left: 3px;
}

/* bold text when selected */
.custom-check input:checked~* {
    font-weight: 600;
}

.sidebar-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

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

.partner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--accent-blue);
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.partner-item:hover {
    transform: translateX(5px);
}

.partner-item::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--accent-blue);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Main Main Section */
.travel-main {
    flex: 1;
}

.travel-main h2 {
    font-size: 32px;
    color: #ff5e14;
    margin-bottom: 40px;
    font-weight: bold;
}

.bags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-bottom: 57px;
}

/* Deal Card Style */
.bag-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.bag-card:hover {
    transform: translateY(-5px);
}

.bag-image-container {
    position: relative;
    height: 180px;
    background: #f5f5f5;
    overflow: hidden;
}

.bag-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wave overlay */
.bag-image-container::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,192L80,181.3C160,171,320,149,480,165.3C640,181,800,235,960,234.7C1120,235,1280,181,1360,154.7L1440,128L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.brand-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.brand-badge img {
    width: 70%;
    height: auto;
}

.bag-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bag-info h3 {
    font-size: 17px;
    color: #0f172a;
    margin: 0 0 12px 0;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    line-height: 1.4;
}

.bag-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.bag-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-old {
    color: var(--price-red);
    text-decoration: line-through;
    font-size: 12px;
}

.price-new {
    color: #003a70;
    font-weight: 700;
    font-size: 18px;
    font-family: "Outfit", sans-serif;
}

.bag-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.meta-item i {
    font-size: 13px;
}

.rating i {
    color: #ffb800;
}

.user-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 500;
}

.bag-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.view-link {
    font-size: 13px;
    background-color: #ff5e14;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.view-link:hover {
    background-color: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-actions {
    display: flex;
    gap: 15px;
    color: var(--text-gray);
}

.social-actions i {
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.social-actions i:hover {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.social-actions i.active {
    color: var(--accent-blue);
}

.social-actions .heart-btn.active {
    color: #ff4d4d;
}

/* Responsive */
@media (max-width: 1024px) {
    .travel-content {
        flex-direction: column;
    }

    .travel-sidebar {
        flex: 1;
        width: 100%;
    }

    .bags-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bags-grid {
        grid-template-columns: 1fr;
    }

    .travel-hero h1 {
        font-size: 36px;
    }
}

/* amazon-coupons.css */

.amazon-hero {
    background: linear-gradient(135deg, #02458a 0%, #002d5b 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

.amazon-hero::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 600px;
    height: 400px;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/a/a9/Amazon_logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
    filter: brightness(0) invert(1);
    pointer-events: none;
}

.amazon-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.amazon-hero h1 {
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 600px;
}

/* Main Content Layout */
.coupon-page-content {
    background-color: white;
    padding: 10px 0;
    font-family: "Spinnaker", sans-serif;
}

.coupon-page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

/* Sidebar */
.filter-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Spacing between cards */
}

.filter-card {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h3 {
    font-size: 20px;
    font-weight: 500;
}

.clear-link {
    font-size: 14px;
    color: #ff5e14;
    text-decoration: none;
}

.search-box-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.search-box-wrapper input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 45px;
    border: 1px solid #0088cc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.sidebar-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: #007bff;
    border: none;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.category-filter h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #888;
    cursor: pointer;
}

.category-item input {
    width: 18px;
    height: 18px;
    border: 1px solid #d1d1d1;
    cursor: pointer;
    accent-color: #002d5b;
}

.show-more-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #0088cc;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 500;
}

.show-more-sidebar i {
    font-size: 12px;
}

.show-more-sidebar:hover {
    color: #006699;
}

/* Offer Status Styles */
.status-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #8ca4bc;
}

.status-count {
    color: #8ca4bc;
    font-size: 14px;
}

/* Main Content Area */
.coupons-main {
    flex: 1;
}

.load-more-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    color: #002d5b;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #003a70;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.store-intro {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.store-logo-large {
    flex: 0 0 160px;
    height: 100px;
    background: #002d5b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.store-logo-large img {
    max-width: 100%;
}

.store-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Coupon Tabs */
.coupon-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 4px;
    padding: 0 25px;
    height: 60px;
    margin-bottom: 30px;
}

.tab-title {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.tab-filters {
    display: flex;
    gap: 30px;
    height: 100%;
}

.tab-link {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #888;
    text-decoration: none;
    position: relative;
    padding: 0 5px;
}

.tab-link.active {
    color: #002d5b;
    font-weight: 500;
}

.tab-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #002d5b;
}

/* Responsive */
@media (max-width: 1024px) {
    .coupon-page-content .container {
        display: flex !important;
        flex-direction: column !important;
    }

    .filter-sidebar {
        order: 1 !important;
    }

    .travel-main {
        order: 2 !important;
    }

    .filter-sidebar {
        flex: 1;
        width: 100%;
    }

    .amazon-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .card-main-body {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .offer-desc-text {
        max-width: 100%;
    }

    .card-footer-strip {
        flex-direction: column;
        gap: 20px;
    }

    .brand-social {
        flex-direction: column;
        gap: 15px;
    }
}