@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --primary-blue: #0A2240;
    --secondary-blue: #1A73E8;
    --orange-cta: #F26422;
    --orange-hover: #D75518;
    --light-bg: #F5F7FA;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --success: #28a745;
    --danger: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figtree', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Extra Large screens (e.g. 1920x1080) Support */
.container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0 15px;
}

@media (min-width: 1340px) {
    .container {
        max-width: 1280px;
    }
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--orange-cta);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-blue);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary {
    background: var(--orange-cta);
    color: var(--white);
    border: 2px solid var(--orange-cta);
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue), #103460);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Featured Brands Section */
.brands-section {
    padding: 50px 0;
    background: var(--white);
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.brand-card {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    transition: transform 0.3s;
    font-weight: bold;
    color: var(--text-dark);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Deals Layout */
.deals-section {
    padding: 20px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.deal-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.deal-image {
    width: 100%;
    height: 180px;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    object-fit: contain;
    padding: 10px;
}

.deal-image img {
    max-width: 100%;
    max-height: 100%;
}

.deal-content {
    padding: 20px;
}

.deal-brand {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.deal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.deal-commission {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Forms (Login/Signup) */
.auth-container {
    max-width: 400px;
    margin: 80px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.auth-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.auth-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-switch a {
    color: var(--secondary-blue);
    font-weight: 600;
}

/* User Dashboard Layout */
.dashboard-layout {
    display: flex;
    min-height: calc(100vh - 150px);
}

.sidebar {
    width: 250px;
    background: var(--white);
    border-right: 1px solid var(--border-color);
    padding: 20px 0;
}

.sidebar-nav li {
    padding: 0;
}

.sidebar-nav a {
    display: block;
    padding: 15px 25px;
    color: var(--text-dark);
    font-weight: 500;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--light-bg);
    border-left-color: var(--orange-cta);
    color: var(--primary-blue);
}

.main-content {
    flex: 1;
    padding: 30px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.stat-title {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Link Generator */
.link-generator-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.link-generator-box p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.input-group {
    display: flex;
    gap: 10px;
}

.generated-link {
    margin-top: 20px;
    padding: 15px;
    background: var(--light-bg);
    border: 1px dashed var(--border-color);
    border-radius: 5px;
    display: none;
    word-break: break-all;
}

.sharing-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-telegram {
    background: #0088cc;
    color: white;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background: var(--light-bg);
    color: var(--text-dark);
    font-weight: 600;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: var(--orange-cta);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--orange-cta);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    opacity: 0.7;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .dashboard-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .input-group {
        flex-direction: column;
    }
}

/* Ps-24 Replicated UI Styles */
.ck-header {
    background: var(--white);
    border-bottom: 1px solid #eaeaea;
    padding: 0 20px;
    height: 75px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ck-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ck-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ck-menu-icon {
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.ck-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.ck-header-center {
    flex: 1;
    max-width: 700px;
    margin: 0 40px;
}

.ck-search-form {
    background: #f5f6f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 48px;
}

.ck-search-icon {
    color: #888;
    font-size: 22px;
}

.ck-search-input {
    border: none;
    background: transparent;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    outline: none;
    color: #333;
}

.ck-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ck-header-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.ck-wallet strong {
    font-size: 15px;
}

.ck-header-divider {
    width: 1px;
    height: 20px;
    background: #e0e0e0;
}

.ck-breadcrumb-bar {
    background: #fcfcfc;
    border-bottom: 1px solid #eaeaea;
    padding: 12px 0;
    font-size: 12px;
    color: #666;
}

.ck-breadcrumb-bar strong {
    color: #333;
}

/* Dashboard Sidebar overrides */
.ps24-dashboard-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    background: #fff;
}

.ps24-sidebar {
    width: 280px;
    border-right: 1px solid #eaeaea;
    padding: 20px 0;
    background: #fff;
}

.ps24-sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 25px 25px 0;
    margin-right: 20px;
    transition: 0.2s;
}

.ps24-sidebar-nav li a span {
    font-size: 20px;
    color: #666;
}

.ps24-sidebar-nav li a.active,
.ps24-sidebar-nav li a:hover {
    background: #f4f6fa;
    color: #0036da;
}

.ps24-sidebar-nav li a.active span,
.ps24-sidebar-nav li a:hover span {
    color: #0036da;
}

.ps24-main-content {
    flex: 1;
    padding: 0px;
    background: #f5f6f8;
    padding: 13px;
}

/* Essential style adaptions for Ps24 header */
.header-search {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-limiter {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.header-limiter nav a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.header-limiter nav a:hover {
    color: #f26422;
}

.header-search form {
    margin: 0;
    display: flex;
    flex: 1;
    min-width: 150px;
}

.header-search form input[type="search"] {
    padding: 8px 15px;
    border-radius: 20px;
    /* border: 1px solid #ccc; */
    outline: none;
    width: 100%;
    font-size: 14px;
}

.openNav-btn {
    font-size: 24px;
    text-decoration: none;
    color: #333;
    margin-right: 15px;
    line-height: 1;
}

.user-actions-btn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-left: 10px;
    background: #0b63f6;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
}

.user-actions-btn:hover {
    background: #0a54d4;
}

.d-md-none {
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.sidenav a {
    padding: 10px 15px 10px 30px;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid #f9f9f9;
}

.sidenav a:hover {
    background-color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    padding: 0;
    border: none;
}

.header-right-box {
    display: flex;
    align-items: center;
}

/* Responsive Adjustments */
@media screen and (max-width: 850px) {
    .d-md-none {
        display: inline-block;
    }

    .d-md-inline-block {
        display: none !important;
    }

    .header-right-box {
        flex: 1;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 576px) {
    .user-actions-btn {
        display: none;
        /* Hide button on tiny screens to save space, user can use sidenav */
    }

    .header-right-box {
        width: 100%;
        margin-top: 5px;
    }

    .header-search form {
        width: 100%;
    }
}

/* --------------------------------- */
/* Homepage specific styles */
/* --------------------------------- */
.brands-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
}

.brand-ui-card {
    flex: 0 0 auto;
    width: 170px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.brand-ui-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.brand-ui-logo {
    height: 50px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.brand-ui-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.brand-ui-btn {
    background: var(--primary-blue);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    width: 100%;
    text-align: center;
}

/* Slick Slider Banner Adjustments */
.homePgeBnr {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.banner-slider {
    margin: 0;
}

.slick-slide {
    padding: 0 8px;
    outline: none;
}

.banner-img-link {
    display: block;
    outline: none;
    transition: transform 0.3s ease;
}

.banner-img-link:hover {
    transform: scale(1.02);
}

.banner-img-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.slick-arrow.slick-prev,
.slick-arrow.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 20;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    color: transparent;
}

.slick-arrow.slick-prev {
    left: 20px;
}

.slick-arrow.slick-next {
    right: 20px;
}

.slick-prev:before {
    content: "❮" !important;
    font-family: sans-serif !important;
    color: #111 !important;
    font-size: 20px;
    font-weight: 800;
}

.slick-next:before {
    content: "❯" !important;
    font-family: sans-serif !important;
    color: #111 !important;
    font-size: 20px;
    font-weight: 800;
}

.slick-arrow:hover {
    background: #fafafa !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --------------------------------- */
/* Top Categories Styles             */
/* --------------------------------- */
.topCategoryMain {
    padding: 30px 0;
    position: relative;
    background-color: #FFFFFF;
}

.topCategoryMain h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
    padding: 0 15px;
}

.category-slider {
    margin: 0;
}

.category-slider .slick-slide {
    padding: 0 5px;
    outline: none;
}

.cat-item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 10px;
    outline: none;
}

.cat-item-link:hover {
    color: #111;
}

.cat-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cat-item-link:hover .cat-img-wrap {
    box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.06);
    border-color: #DDDCE7;
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-slider .slick-arrow {
    top: 40%;
}

@media (max-width: 768px) {
    .cat-img-wrap {
        width: 80px;
        height: 80px;
    }

    .cat-item-link {
        font-size: 12px;
    }

    .topCategoryMain h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

/* --------------------------------- */
/* Flash Deal Section                */
/* --------------------------------- */
.flash-deal-section {
    position: relative;
    width: 100%;
    margin: 30px 0;
    overflow: hidden;
    background: url('https://asset22.ckassets.com/resources/image/dynamicpage_images/Flash%20Desktop-1775452860.jpg') center/cover no-repeat;
    padding: 50px 0;
}

.flash-deal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.flash-deal-section .container {
    position: relative;
    z-index: 2;
}

.flash-deals-slider {
    margin: 0 -10px;
}

.flash-deals-slider .slick-slide {
    outline: none;
}

.flash-deal-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #fff;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.flash-deal-card:hover {
    transform: translateY(-3px);
}

.flash-deal-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}

.flash-deal-content {
    background: #fff;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
    border-radius: 0 0 12px 12px;
}

.flash-deal-merchant {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.flash-deal-merchant img {
    width: 60px;
    height: 30px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
    padding: 2px;
}

.flash-deal-label {
    background: #f1f5f9;
    font-size: 11px;
    color: #333;
    font-weight: 600;
    padding: 4px 8px;
    margin-left: 8px;
    border-radius: 4px;
}

.flash-deal-btn {
    background: #0073ff;
    color: #fff;
    padding: 8px 12px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    line-height: 1;
}

.flash-deals-slider .slick-arrow {
    top: 45%;
    z-index: 10;
}

@media (max-width: 768px) {
    .flash-deal-section {
        padding: 30px 0;
        margin: 15px 0;
        background-position: left center;
    }

    .flash-deal-card-img {
        height: 160px;
    }

    .flash-deal-merchant img {
        width: 60px;
        height: 35px;
    }

    .flash-deal-btn {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .flash-deal-card {
        margin: 0 5px;
    }
}

/* --------------------------------- */
/* Most Popular Brands               */
/* --------------------------------- */
.popular-brands-section {
    width: 100%;
    margin-bottom: 30px;
}

.popular-brands-slider {
    margin: 0 -10px;
}

.popular-brands-slider .slick-slide {
    outline: none;
}

.pb-card {
    background: #ffffff;
    border-radius: 16px;
    margin: 10px 10px;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
}

.pb-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pb-card-top {
    background: rgb(251, 231, 229);
    color: rgb(212, 16, 0);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 8px 10px;
    border-radius: 0;
    text-transform: capitalize;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.pb-card-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    height: 110px;
}

.pb-card-middle img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}

.pb-card-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
}

.pb-btn {
    position: relative;
    overflow: hidden;
    background: #0134d4;
    color: #fff !important;
    text-align: center;
    border-radius: 14px !important;
    padding: 0 16px;
    width: 208px !important;
    height: 60px !important;
    font-size: 18px !important;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.pb-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.pb-btn:hover::before {
    width: 100%;
}

.pb-btn-text {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 2.4;
}

.popular-brands-slider .slick-arrow {
    top: 40%;
    z-index: 10;
}

@media (max-width: 768px) {
    .pb-card {
        border-radius: 16px;
        margin: 10px 5px;
        border: 1px solid #E5E7EB;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    }

    .pb-card-top {
        background: rgb(251, 231, 229) !important;
        color: rgb(212, 16, 0) !important;
        font-size: 10px;
        padding: 6px 8px;
        border-radius: 0;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        font-weight: 600;
    }

    .pb-card-middle {
        height: 80px;
        padding: 12px 8px;
    }

    .pb-card-middle img {
        max-width: 85px;
        max-height: 40px;
    }

    .pb-card-bottom {
        padding: 0 8px;
        height: 40px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pb-btn {
        width: 122px !important;
        height: 40px !important;
        font-size: 10px !important;
        padding: 0 10px;
        border-radius: 8px !important;
        font-weight: 600 !important;
        line-height: 14px !important;
    }

    .popular-brands-slider {
        margin: 0 -5px;
    }
}

/* --------------------------------- */
/* Ps24 Accurate Styles       */
/* --------------------------------- */
.Ps24-deals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px 0;
}

/* Breakpoints for 2 and 3 columns */
@media (min-width: 576px) {
    .Ps24-deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .Ps24-deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.Ps24-deal-wrapper {
    height: 100%;
}

.Ps24-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    height: 100%;
    transition: box-shadow 0.2s ease, border-color 0.2s;
    gap: 12px;
    /* reduced gap slightly for mobile fitting */
    word-break: break-word;
    /* ensure long titles don't overflow */
}

.Ps24-card:hover {
    box-shadow: 0px 4px 15px rgba(255, 100, 100, 0.12);
    border-color: #ffd8d8;
}

@media (max-width: 400px) {
    .Ps24-card {
        padding: 10px;
        gap: 8px;
    }
}

.Ps24-card-left {
    position: relative;
    width: 30%;
    max-width: 110px;
    min-width: 80px;
    /* shrink slightly on very small screens */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Ps24-discount-circle {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #FF5A5F;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(255, 90, 95, 0.3);
}

.Ps24-discount-circle small {
    font-size: 8px;
    font-weight: 500;
    text-transform: lowercase;
}

.Ps24-product-img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

.Ps24-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Ps24-title-link {
    text-decoration: none;
    color: #111;
}

.Ps24-title-link:hover .Ps24-title {
    color: #007bff;
}

.Ps24-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.Ps24-ribbon {
    font-size: 10px;
    color: #FF5A5F;
    font-weight: 600;
    text-align: right;
    min-height: 15px;
    line-height: 15px;
    margin-bottom: 4px;
}

.Ps24-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.Ps24-prices {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.Ps24-discounted {
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.Ps24-original {
    font-size: 12px;
    color: #888;
    text-decoration: line-through;
}

.Ps24-time {
    font-size: 10px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 3px;
}

.Ps24-clock-icon {
    width: 11px;
    height: 11px;
    fill: #b5b5b5;
}

.Ps24-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.Ps24-merchant-logo {
    height: 18px;
    max-width: 60px;
    object-fit: contain;
}

.Ps24-buy-btn {
    background: #0036DA;
    color: #fff;
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s;
}

.Ps24-buy-btn:hover {
    background: #0036DA;
    color: #fff;
    text-decoration: none;
}

/* Custom Styles for Best Cards & Finance UI */
.ck-card-section {
    padding: 30px 0;
    background: linear-gradient(to right, #eff6ff, #f8fafc);
}

.ck-card-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.ck-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ck-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.ck-card-view-all {
    color: #0073ff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ck-card-slider .slick-slide {
    padding: 0 10px;
}

.ck-db-card {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    background: #fff;
    display: block;
}

.ck-db-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.ck-db-card-banner {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.ck-db-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.ck-db-card-logo-wrap {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ck-db-card-logo {
    width: 80px;
    height: 45px;
    object-fit: contain;
}

.ck-db-card-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    border: none;
    border-radius: 6px;
    color: #0056b3;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Custom Styles for How Ps-24 Works */
.hw-sec-wrapper {
    background: var(--white);
    padding: 50px 0;
}

.hw-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.hw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.hw-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #111;
}

.hw-slider-card {
    padding: 0 10px;
}

.hw-card-body {
    background: #fcfcfc;
    border-radius: 12px;
    padding: 25px 20px;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.hw-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hw-card-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

/* Dynamic Stores Page Styles */
.stores-page-wrap {
    background: #fdfdfd;
    min-height: calc(100vh - 400px);
    padding: 20px 0 50px;
}

.stores-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.stores-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.stores-breadcrumb a:hover {
    color: #0073ff;
}

.stores-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stores-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.stores-sort-nav {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 30px;
}

.stores-sort-btn {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    border-right: 1px solid #e5e7eb;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
    text-decoration: none;
}

.stores-sort-btn:last-child {
    border-right: none;
}

.stores-sort-btn:hover,
.stores-sort-btn.active {
    background: #f8fafc;
    color: #111;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 768px) {
    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .stores-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .stores-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.store-grid-card {
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    padding-bottom: 12px;
    text-align: center;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.store-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

.store-card-label {
    height: 32px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.store-card-logo-wrap {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.store-card-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-card-btn-wrap {
    padding: 0 12px;
    margin-top: auto;
}

.store-card-btn {
    background: #0073ff;
    color: #fff;
    width: 100%;
    padding: 12px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: background 0.3s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-card-btn:hover {
    background: #005bb5;
}

/* AllStoresPageStyles */
.all-stores-page {
    padding: 20px 0 50px;
    background: #fff;

}

.stores-breadcrumb {
    padding: 20px 0;

}

.stores-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;

}

.stores-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;

}

.stores-breadcrumb .hover-text-blue {
    color: #888;
    text-decoration: none;
    font-weight: 500;

}

.stores-breadcrumb .hover-text-blue:hover {
    color: #0073ff;

}

.stores-breadcrumb .separator {
    margin: 0 8px;
    color: #333;
    font-weight: 500;

}

.stores-breadcrumb .active {
    color: #111;
    font-weight: 600;

}

.all-stores-layout {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;

}

.all-stores-main {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 25px 24px;

}

.all-stores-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-top: 0;
    margin-bottom: 14px;

}

.all-stores-header p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 0;

}

.all-stores-alphabets {
    margin-top: 16px;
    margin-bottom: 8px;

}

.alphabet-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1px;
    list-style: none;
    padding: 0;
    margin: 0;

}

.alphabet-listli a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    font-size: 16px;
    font-weight: 600;
    color: #0073ff;
    text-decoration: none;
    cursor: pointer;

}

.alphabet-listli a:hover {
    background: #0073ff;
    color: #fff;

}

.stores-list-blocks {
    margin-top: 20px;

}

.letter-block {
    margin: 16px 0 28px;
    position: relative;

}

.letter-separator {
    border-bottom: 1px dashed rgba(136, 136, 136, 0.5);
    width: 98%;
    margin-bottom: 28px;

}

.letter-content {
    position: relative;

}

.letter-badge {
    position: absolute;
    left: 0;
    top: -10px;
    background: #0073ff;
    width: 65px;
    height: 38px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.letter-badge p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;

}

.letter-stores {
    padding-top: 10px;
    padding-left: 70px;

}

.store-grid-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;

}

.store-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all0.3sease-out;

}

.store-link-item:hover {
    color: #0073ff;

}

@media (max-width:768px) {
    .all-stores-main {
        padding: 25px 12px;

    }

    .alphabet-listli a {
        font-size: 12px;

    }

    .letter-badge {
        left: -12px;

    }

    .letter-stores {
        padding-left: 60px;

    }

    .store-grid-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

    .store-link-item {
        font-size: 14px;

    }


}

/* DealDetailPageStyles */
.deal-detail-page {
    /*Resetsomedefaults*/
    color: #333;

}

.dd-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;

}

.dd-col-left {
    flex: 0 0 100%;
    max-width: 100%;

}

.dd-col-right {
    flex: 0 0 100%;
    max-width: 100%;

}

@media (min-width:768px) {
    .dd-col-left {
        flex: 0 0 40%;
        max-width: 40%;

    }

    .dd-col-right {
        flex: 0 0 calc(60% - 30px);
        max-width: calc(60% - 30px);

    }


}

.dd-image-container {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;

}

.dd-main-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;

}

.hotdeal-tag {
    display: block;
    color: #f5a623;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px;

}

.dd-product-name {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;

}

.dd-divider {
    border: 0;
    border-top: 1px solid #eaeaea;
    margin: 15px 0;

}

.dd-offer-table-wra p {
    margin-bottom: 20px;

}

.dd-offer-table {
    width: 100%;
    max-width: 300px;
    text-align: left;
    border-collapse: collapse;

}

.dd-offer-tableth {
    padding: 4px 10px 4px 0;
    font-weight: 500;
    color: #666;
    text-align: right;
    width: 40%;

}

.dd-offer-tabletd {
    padding: 4px 0;
    font-weight: 700;

}

.dd-disc-price {
    font-size: 22px;
    color: #212529;

}

.dd-orig-price {
    font-size: 14px;
    text-decoration: line-through;
    color: #999;

}

.dd-discount {
    color: #28a745;

}

.dd-buy-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;

}

.dd-store-logo img {
    height: 40px;
    width: 80px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 5px;

}

.dd-buy-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #007bff;
    color: #fff;
    border-radius: 8px;
    padding: 10px 30px;
    text-decoration: none;
    transition: background0.2s;
    text-align: center;

}

.dd-buy-btn:hover {
    background: #0056b3;
    color: #fff;
    text-decoration: none;

}

.dd-btn-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-bottom: 4px;

}

.dd-btn-sub {
    font-size: 11px;
    font-weight: 400;
    margin-top: 2px;
    opacity: 0.9;

}

.dd-verified-wra p {
    margin-top: 25px;

}

.dd-verified- img {
    max-width: 200px;
    height: auto;

}

.dd-join-us {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;

}

.dd-join-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

}

.dd-join-label {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    margin-right: 15px;

}

.dd-social-btn {
    padding: 6px 15px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 02px5pxrgba(0, 0, 0, 0.1);

}

.dd-btn-whatsap p {
    background: #28a745;

}

.dd-btn-telegram {
    background: #007bff;

}

.dd-description {
    margin-top: 30px;

}

.dd-desc-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;

}

.dd-desc-list {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    padding-left: 20px;

}

.dd-desc-list li {
    margin-bottom: 8px;

}

.dd-pricing-footer {
    margin-top: 30px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;

}

.dd-pf-title {
    font-size: 16px;
    font-weight: 700;
    color: #17a2b8;
    margin: 0 0 10px 0;

}

.dd-pf-content p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;

}

.dd-bottom-tags {
    margin-top: 20px;

}

.dd-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #e9ecef;
    color: #495057;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;

}

.dd-bottom-breadcrumb {
    margin-top: 15px;
    font-size: 12px;

}

.dd-bottom-breadcrumb a {
    color: #17a2b8;
    text-decoration: none;

}

.dd-bottom-breadcrumb span {
    color: #6c757d;

}

/* BlendedDeal/StorePageStyles */
.ck-store-deal-page {
    background: #f4f7fa;
    min-height: calc(100vh - 300px);
    position: relative;
    padding-bottom: 50px;

}

.store-banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1b2838 0%, #2a4369 100%);
    z-index: 1;

}

.store-deal-container {
    position: relative;
    z-index: 2;
    padding-top: 20px;
    max-width: 1300px;

}

.dd-breadcrumb {
    color: #fff;
    font-size: 13px;
    margin-bottom: 20px;

}

.dd-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;

}

.dd-breadcrumb a:hover {
    color: #fff;

}

.highlight-main-box {
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    margin-bottom: 30px;

}

.hmb-left {
    flex: 0 0 100%;
    text-align: center;
    border-right: none;
    padding-bottom: 20px;

}

.hmb-right {
    flex: 0 0 100%;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;

}

@media (min-width:768px) {
    .hmb-left {
        flex: 0 0 40%;
        border-right: 1px solid #eaeaea;
        padding-bottom: 0;
        padding-right: 30px;

    }

    .hmb-right {
        flex: 0 0 60%;
        border-top: none;
        padding-top: 0;
        padding-left: 30px;

    }


}

.hmb-image {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;

}

.hotdeal-tag {
    display: inline-block;
    color: #ff5722;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    background: rgba(255, 87, 34, 0.1);
    padding: 2px 8px;
    border-radius: 4px;

}

.hmb-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.3;

}

.hmb-divider {
    border: 0;
    border-top: 1px dashed #eaeaea;
    margin: 15px 0;

}

.hmb-pricing-table {
    margin-bottom: 20px;
    max-width: 300px;

}

.hmb-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;

}

.hmb-p-label {
    color: #666;
    font-weight: 600;
    font-size: 14px;

}

.hmb-p-value {
    font-weight: 800;
    font-size: 18px;
    color: #111;

}

.hmb-p-value.line-through {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;

}

.hmb-p-value.dd-disc-price {
    color: #212529;
    font-size: 22px;

}

.hmb-p-value.dd-discount {
    color: #28a745;

}

.hmb-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;

}

.hmb-store-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 5px;

}

.ck-button-orange {
    background: #ff5722;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background0.2s;

}

.ck-button-orange:hover {
    background: #e64a19;
    color: #fff;
    text-decoration: none;

}

.hmb-action-sub {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
    margin-left: 95px;

}

@media (max-width:768px) {
    .hmb-action-sub {
        margin-left: 0;

    }


}

.hmb-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fbfd;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #eff2f5;

}

.hmb-social-row.join-text {
    font-weight: 600;
    color: #555;
    font-size: 14px;

}

.social-btn {
    padding: 5px 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;

}

.social-btn.whatsap p {
    background: #25d366;

}

.social-btn.telegram {
    background: #0088cc;

}

/* BottomSplitLayout */
.store-deal-split {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;

}

.sd-left-c ol {
    flex: 0 0 100%;

}

.sd-right-c ol {
    flex: 0 0 100%;

}

@media (min-width:992px) {
    .sd-left-c ol {
        flex: 0 0 calc(65% - 12.5px);

    }

    .sd-right-c ol {
        flex: 0 0 calc(35% - 12.5px);

    }


}

.content-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;

}

.content-card h2 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;

}

.about-list {
    margin: 0;
    padding-left: 20px;
    color: #444;
    line-height: 1.6;

}

.pricing-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;

}

/* RightCol:StoreRelatedDeals */
.related-title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    margin-top: 0;

}

.related-deals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.rd-card {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
    transition: transform0.2s;

}

.rd-card:hover {
    transform: translateY(-3px);

}

.rd-card-left {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background: #fff;

}

.rd-card-left img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;

}

.rd-discount {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #ff5722;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;

}

.rd-card-content {
    flex: 1;

}

.rd-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.rd-prices {
    display: flex;
    align-items: center;
    gap: 10px;

}

.rd-disc {
    font-weight: 800;
    color: #111;
    font-size: 15px;

}

.rd-mr p {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;

}

.rd-card-right {
    flex-shrink: 0;

}

.rd-btn {
    background: rgba(0, 115, 255, 0.1);
    color: #0073ff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;

}

.rd-btn:hover {
    width: auto;
    object-fit: contain;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 5px;
}

.ck-button-orange {
    background: #ff5722;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background0.2s;
}

.ck-button-orange:hover {
    background: #e64a19;
    color: #fff;
    text-decoration: none;
}

.hmb-action-sub {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
    margin-left: 95px;
}

@media (max-width:768px) {
    .hmb-action-sub {
        margin-left: 0;
    }
}

.hmb-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fbfd;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #eff2f5;
}

.hmb-social-row.join-text {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.social-btn {
    padding: 5px 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
}

.social-btn.whatsap p {
    background: #25d366;
}

.social-btn.telegram {
    background: #0088cc;
}

/* BottomSplitLayout */
.store-deal-split {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.sd-left-c ol {
    flex: 0 0 100%;
}

.sd-right-c ol {
    flex: 0 0 100%;
}

@media (min-width:992px) {
    .sd-left-c ol {
        flex: 0 0 calc(65% - 12.5px);
    }

    .sd-right-c ol {
        flex: 0 0 calc(35% - 12.5px);
    }
}

.content-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
}

.content-card h2 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.about-list {
    margin: 0;
    padding-left: 20px;
    color: #444;
    line-height: 1.6;
}

.pricing-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* RightCol:StoreRelatedDeals */
.related-title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    margin-top: 0;
}

.related-deals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rd-card {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
    transition: transform0.2s;
}

.rd-card:hover {
    transform: translateY(-3px);
}

.rd-card-left {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background: #fff;
}

.rd-card-left img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.rd-discount {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #ff5722;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
}

.rd-card-content {
    flex: 1;
}

.rd-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rd-prices {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rd-disc {
    font-weight: 800;
    color: #111;
    font-size: 15px;
}

.rd-mr p {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.rd-card-right {
    flex-shrink: 0;
}

.rd-btn {
    background: rgba(0, 115, 255, 0.1);
    color: #0073ff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.rd-btn:hover {
    background: #0073ff;
    color: #fff;
}




.store-link-item {
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
    text-decoration: none;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: all 0.2s;
    background: #fff;
    height: 100%;
    box-sizing: border-box;
}

.store-link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

.sli-name {
    font-weight: 700;
    font-size: 15px;
    color: #111;
    margin-bottom: 5px;
}

.sli-rate {
    font-weight: 700;
    font-size: 13px;
    color: #ff5722;
}

/* Ps-24 Dynamic Credit Card Styling */
.ck-credit-card {
    height: 195px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    box-sizing: border-box;
    text-decoration: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.ck-credit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.ck-saving-card {
    height: 175px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    box-sizing: border-box;
    text-decoration: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.ck-saving-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.teal-gradient {
    background: linear-gradient(135deg, #21A09D 0%, #2E9B9A 100%);
}

.blue-gradient {
    background: linear-gradient(135deg, #169EBD 0%, #0d5f73 100%);
}

.Ps-24-logo-box {
    background: white;
    border-radius: 8px;
    width: 76px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.Ps-24-logo-box span {
    color: #111;
    font-weight: 700;
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
}

.Ps-24-content {
    max-width: 55%;
    z-index: 2;
}

.Ps-24-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.Ps-24-subtitle {
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
    color: white;
    font-weight: 500;
}

.Ps-24-visual {
    position: absolute;
    right: 12px;
    top: 15px;
    width: 125px;
    height: 125px;
    object-fit: contain;
    transform: rotate(-3deg);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.ck-credit-card:hover .Ps-24-visual {
    transform: rotate(-1deg) scale(1.05);
}

.ck-saving-card .Ps-24-visual {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    object-fit: cover;
    border-radius: 8px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.ck-saving-card:hover .Ps-24-visual {
    transform: translateY(-50%) scale(1.04);
}

.Ps-24-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.Ps-24-rewards {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    height: 34px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.Ps-24-logo {
    font-weight: 800;
    font-size: 11px;
    height: 100%;
    padding: 0 8px;
    border-radius: 0;
    color: white;
    background: #0036DA;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.Ps-24-reward-txt {
    font-size: 12px;
    font-weight: 600;
    color: white;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.Ps-24-apply {
    background: white;
    color: #0036DA;
    border: none;
    padding: 7px 15px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.ck-credit-card:hover .Ps-24-apply {
    background: #f8fafc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .ck-credit-card {
        height: 155px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .ck-saving-card {
        height: 135px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .Ps-24-logo-box {
        width: 60px;
        height: 30px;
        margin-bottom: 8px;
        border-radius: 6px;
    }

    .Ps-24-logo-box span {
        font-size: 8px;
    }

    .Ps-24-title {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .Ps-24-subtitle {
        font-size: 10px;
    }

    .Ps-24-visual {
        right: 8px;
        top: 10px;
        transform: rotate(-3deg);
        width: 95px;
        height: 95px;
    }

    .ck-saving-card .Ps-24-visual {
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 85px;
        height: 85px;
        border-radius: 6px;
    }

    .Ps-24-rewards {
        height: 28px;
        border-radius: 6px;
    }

    .Ps-24-logo {
        font-size: 9px;
        padding: 0 6px;
    }

    .Ps-24-reward-txt {
        font-size: 10px;
        padding: 0 8px;
    }

    .Ps-24-apply {
        padding: 5px 12px;
        font-size: 10px;
    }
}

/* =========================================
   Ps24 HOMEPAGE STYLES
   ========================================= */
.Ps24-section {
    background-color: #f0f2f5;
    padding: 30px 0;
}

.Ps24-container {
    background: #fff;
    max-width: 1140px;
    margin: 0 auto;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.Ps24-header-title {
    font-size: 28px;
    font-weight: 400;
    color: #111;
    margin: 0 0 20px 0;
}

/* Social Row */
.Ps24-social-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.Ps24-social-btn {
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.Ps24-social-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.Ps24-social-circle-inner {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Ps24-social-label-top {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    white-space: nowrap;
    font-weight: 600;
    background: #fff;
    padding: 0 4px;
}

.Ps24-social-telegram {
    border: 1px solid #bae6fd;
}

.Ps24-social-telegram .Ps24-social-circle-inner {
    background: #f0f9ff;
}

.Ps24-social-telegram .Ps24-social-label-top {
    color: #0284c7;
}

.Ps24-social-telegram .Ps24-social-text {
    color: #0284c7;
}

.Ps24-social-whatsapp {
    border: 1px solid #bbf7d0;
}

.Ps24-social-whatsapp .Ps24-social-circle-inner {
    background: #f0fdf4;
}

.Ps24-social-whatsapp .Ps24-social-label-top {
    color: #16a34a;
}

.Ps24-social-whatsapp .Ps24-social-text {
    color: #16a34a;
}

.Ps24-social-text {
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.2;
}

/* Tabs */
.Ps24-tabs-container {
    display: flex;
    gap: 10px;
    margin-bottom: 0px;
}

.Ps24-tab {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
}

.Ps24-tab.active {
    background: #f1f5f9;
    color: #3b66a3;
    border: 1px solid #e2e8f0;
    border-bottom: none;
}

.Ps24-tab:not(.active) {
    color: #64748b;
    font-weight: 500;
}

.Ps24-main-grid-area {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
}

/* Deals Grid */
.new-Ps24-deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 992px) {
    .new-Ps24-deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .new-Ps24-deals-grid {
        grid-template-columns: 1fr;
    }
}

.new-Ps24-deal-card {
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    gap: 12px;
    position: relative;
    background: #fff;
    transition: box-shadow 0.2s;
}

.new-Ps24-deal-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.new-Ps24-card-left {
    width: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.new-Ps24-product-img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

.new-Ps24-discount {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #ef4444;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
}

.new-Ps24-discount span {
    font-size: 9px;
    font-weight: 400;
    margin-top: 1px;
}

.new-Ps24-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.new-Ps24-title {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin: 0 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-decoration: none;
}

.new-Ps24-title:hover {
    color: #3b66a3;
}

.new-Ps24-mid-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
    margin-top: auto;
}

.new-Ps24-price-box {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.new-Ps24-price-discounted {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.new-Ps24-price-original {
    font-size: 11px;
    color: #888;
    text-decoration: line-through;
}

.new-Ps24-meta {
    text-align: right;

}

.new-Ps24-coupon {
    color: #ef4444;
    font-size: 10px;
    line-height: 1.2;
}

.new-Ps24-time {
    color: #888;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    margin-top: 2px;
}

.new-Ps24-time svg {
    width: 10px;
    height: 10px;
    fill: #888;
}

.new-Ps24-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}

.new-Ps24-merchant {
    height: 16px;
    max-width: 60px;
    object-fit: contain;
}

.new-Ps24-buy-btn {
    background: #3b66a3;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.new-Ps24-buy-btn:hover {
    background: #2c4d7e;
}

.new-Ps24-buy-btn svg {
    fill: white;
    width: 12px;
    height: 12px;
}