: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: '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: 30px;
    background: #f5f6f8;
}

/* Essential style adaptions for DealsMagnet 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: #fff;
    border-radius: 22px;
    margin: 10px 10px;
    border: 1.5px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.pb-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.pb-card-top {
    background: #FEE2E2;
    color: #EF4444;
    font-size: 14px;
    font-weight: 700;
    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;
    padding: 0 15px 15px 15px;
}

.pb-btn {
    background: #0073ff;
    color: #fff;
    text-align: center;
    border-radius: 50px !important;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: background 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pb-btn:hover {
    background: #005bb5;
}

.popular-brands-slider .slick-arrow {
    top: 40%;
    z-index: 10;
}

@media (max-width: 768px) {
    .pb-card {
        border-radius: 12px;
        margin: 10px 5px;
    }

    .pb-card-top {
        font-size: 11px;
        padding: 4px 6px;
        border-radius: 12px 12px 0 0;
        margin: 0 5px;
    }

    .pb-card-middle {
        height: 80px;
        padding: 10px;
    }

    .pb-card-middle img {
        max-width: 90px;
        max-height: 40px;
    }

    .pb-btn {
        font-size: 12px;
        padding: 6px 8px;
        border-radius: 8px;
    }

    .popular-brands-slider {
        margin: 0 -5px;
    }
}

/* --------------------------------- */
/* Dealsmagnet 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;
}

 / *   A l l   S t o r e s   P a g e   S t y l e s   * /   . a l l - s t o r e s - p a g e    {
               p a d d i n g :    2 0 p x   0   5 0 p x ;
               b a c k g r o u n d :    # f f f ;
       
}

   . s t o r e s - b r e a d c r u m b    {
               p a d d i n g :    2 0 p x   0 ;
       
}

   . s t o r e s - b r e a d c r u m b   o l    {
               d i s p l a y :    f l e x ;
               f l e x - w r a p :    w r a p ;
               a l i g n - i t e m s :    c e n t e r ;
               l i s t - s t y l e :    n o n e ;
               m a r g i n :    0 ;
               p a d d i n g :    0 ;
       
}

   . s t o r e s - b r e a d c r u m b   l i    {
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               f o n t - s i z e :    1 4 p x ;
       
}

   . s t o r e s - b r e a d c r u m b   . h o v e r - t e x t - b l u e    {
               c o l o r :    # 8 8 8 ;
               t e x t - d e c o r a t i o n :    n o n e ;
               f o n t - w e i g h t :    5 0 0 ;
       
}

   . s t o r e s - b r e a d c r u m b   . h o v e r - t e x t - b l u e : h o v e r    {
               c o l o r :    # 0 0 7 3 f f ;
       
}

   . s t o r e s - b r e a d c r u m b   . s e p a r a t o r    {
               m a r g i n :    0   8 p x ;
               c o l o r :    # 3 3 3 ;
               f o n t - w e i g h t :    5 0 0 ;
       
}

   . s t o r e s - b r e a d c r u m b   . a c t i v e    {
               c o l o r :    # 1 1 1 ;
               f o n t - w e i g h t :    6 0 0 ;
       
}

   . a l l - s t o r e s - l a y o u t    {
               d i s p l a y :    f l e x ;
               g a p :    2 4 p x ;
               m a r g i n - b o t t o m :    4 0 p x ;
       
}

   . a l l - s t o r e s - m a i n    {
               f l e x :    1 ;
               b o r d e r :    1 p x   s o l i d   # e 0 e 0 e 0 ;
               b o r d e r - r a d i u s :    1 6 p x ;
               p a d d i n g :    2 5 p x   2 4 p x ;
       
}

   . a l l - s t o r e s - h e a d e r   h 1    {
               f o n t - s i z e :    2 4 p x ;
               f o n t - w e i g h t :    8 0 0 ;
               c o l o r :    # 1 1 1 ;
               m a r g i n - t o p :    0 ;
               m a r g i n - b o t t o m :    1 4 p x ;
       
}

   . a l l - s t o r e s - h e a d e r   p    {
               f o n t - s i z e :    1 6 p x ;
               f o n t - w e i g h t :    6 0 0 ;
               c o l o r :    # 3 3 3 ;
               m a r g i n - t o p :    0 ;
       
}

   . a l l - s t o r e s - a l p h a b e t s    {
               m a r g i n - t o p :    1 6 p x ;
               m a r g i n - b o t t o m :    8 p x ;
       
}

   . a l p h a b e t - l i s t    {
               d i s p l a y :    f l e x ;
               f l e x - w r a p :    w r a p ;
               a l i g n - i t e m s :    c e n t e r ;
               g a p :    1 p x ;
               l i s t - s t y l e :    n o n e ;
               p a d d i n g :    0 ;
               m a r g i n :    0 ;
       
}

   . a l p h a b e t - l i s t   l i   a    {
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               p a d d i n g :    2 p x   8 p x ;
               f o n t - s i z e :    1 6 p x ;
               f o n t - w e i g h t :    6 0 0 ;
               c o l o r :    # 0 0 7 3 f f ;
               t e x t - d e c o r a t i o n :    n o n e ;
               c u r s o r :    p o i n t e r ;
       
}

   . a l p h a b e t - l i s t   l i   a : h o v e r    {
               b a c k g r o u n d :    # 0 0 7 3 f f ;
               c o l o r :    # f f f ;
       
}

   . s t o r e s - l i s t - b l o c k s    {
               m a r g i n - t o p :    2 0 p x ;
       
}

   . l e t t e r - b l o c k    {
               m a r g i n :    1 6 p x   0   2 8 p x ;
               p o s i t i o n :    r e l a t i v e ;
       
}

   . l e t t e r - s e p a r a t o r    {
               b o r d e r - b o t t o m :    1 p x   d a s h e d   r g b a ( 1 3 6 ,    1 3 6 ,    1 3 6 ,    0 . 5 ) ;
               w i d t h :    9 8 % ;
               m a r g i n - b o t t o m :    2 8 p x ;
       
}

   . l e t t e r - c o n t e n t    {
               p o s i t i o n :    r e l a t i v e ;
       
}

   . l e t t e r - b a d g e    {
               p o s i t i o n :    a b s o l u t e ;
               l e f t :    0 ;
               t o p :    - 1 0 p x ;
               b a c k g r o u n d :    # 0 0 7 3 f f ;
               w i d t h :    6 5 p x ;
               h e i g h t :    3 8 p x ;
               b o r d e r - r a d i u s :    0   8 p x   8 p x   0 ;
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
       
}

   . l e t t e r - b a d g e   p    {
               f o n t - s i z e :    1 6 p x ;
               f o n t - w e i g h t :    6 0 0 ;
               c o l o r :    # f f f ;
               m a r g i n :    0 ;
       
}

   . l e t t e r - s t o r e s    {
               p a d d i n g - t o p :    1 0 p x ;
               p a d d i n g - l e f t :    7 0 p x ;
       
}

   . s t o r e - g r i d - l i s t    {
               d i s p l a y :    g r i d ;
               g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( 3 ,    m i n m a x ( 0 ,    1 f r ) ) ;
               c o l u m n - g a p :    1 2 p x ;
               r o w - g a p :    1 6 p x ;
               l i s t - s t y l e :    n o n e ;
               p a d d i n g :    0 ;
               m a r g i n :    0 ;
       
}

   . s t o r e - l i n k - i t e m    {
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               g a p :    8 p x ;
               c o l o r :    # 1 1 1 ;
               t e x t - d e c o r a t i o n :    n o n e ;
               f o n t - s i z e :    1 6 p x ;
               f o n t - w e i g h t :    5 0 0 ;
               t r a n s i t i o n :    a l l   0 . 3 s   e a s e - o u t ;
       
}

   . s t o r e - l i n k - i t e m : h o v e r    {
               c o l o r :    # 0 0 7 3 f f ;
       
}

   @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )    {
               . a l l - s t o r e s - m a i n    {
                           p a d d i n g :    2 5 p x   1 2 p x ;
                   
    }

               . a l p h a b e t - l i s t   l i   a    {
                           f o n t - s i z e :    1 2 p x ;
                   
    }

               . l e t t e r - b a d g e    {
                           l e f t :    - 1 2 p x ;
                   
    }

               . l e t t e r - s t o r e s    {
                           p a d d i n g - l e f t :    6 0 p x ;
                   
    }

               . s t o r e - g r i d - l i s t    {
                           g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( 2 ,    m i n m a x ( 0 ,    1 f r ) ) ;
                   
    }

               . s t o r e - l i n k - i t e m    {
                           f o n t - s i z e :    1 4 p x ;
                   
    }

       
}

         / *   D e a l   D e t a i l   P a g e   S t y l e s   * /   . d e a l - d e t a i l - p a g e    {
               / *   R e s e t   s o m e   d e f a u l t s   * /           c o l o r :    # 3 3 3 ;
       
}

   . d d - r o w    {
               d i s p l a y :    f l e x ;
               f l e x - w r a p :    w r a p ;
               g a p :    3 0 p x ;
       
}

   . d d - c o l - l e f t    {
               f l e x :    0   0   1 0 0 % ;
               m a x - w i d t h :    1 0 0 % ;
       
}

   . d d - c o l - r i g h t    {
               f l e x :    0   0   1 0 0 % ;
               m a x - w i d t h :    1 0 0 % ;
       
}

   @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )    {
               . d d - c o l - l e f t    {
                           f l e x :    0   0   4 0 % ;
                           m a x - w i d t h :    4 0 % ;
                   
    }

               . d d - c o l - r i g h t    {
                           f l e x :    0   0   c a l c ( 6 0 %   -   3 0 p x ) ;
                           m a x - w i d t h :    c a l c ( 6 0 %   -   3 0 p x ) ;
                   
    }

       
}

   . d d - i m a g e - c o n t a i n e r    {
               t e x t - a l i g n :    c e n t e r ;
               p a d d i n g :    2 0 p x ;
               b a c k g r o u n d :    # f f f ;
               b o r d e r - r a d i u s :    8 p x ;
       
}

   . d d - m a i n - i m a g e    {
               m a x - w i d t h :    1 0 0 % ;
               h e i g h t :    a u t o ;
               m a x - h e i g h t :    4 0 0 p x ;
               o b j e c t - f i t :    c o n t a i n ;
       
}

   . h o t d e a l - t a g    {
               d i s p l a y :    b l o c k ;
               c o l o r :    # f 5 a 6 2 3 ;
               f o n t - w e i g h t :    7 0 0 ;
               m a r g i n - b o t t o m :    5 p x ;
               f o n t - s i z e :    1 4 p x ;
       
}

   . d d - p r o d u c t - n a m e    {
               f o n t - s i z e :    2 4 p x ;
               f o n t - w e i g h t :    7 0 0 ;
               c o l o r :    # 1 1 1 ;
               m a r g i n :    0 ;
               l i n e - h e i g h t :    1 . 3 ;
       
}

   . d d - d i v i d e r    {
               b o r d e r :    0 ;
               b o r d e r - t o p :    1 p x   s o l i d   # e a e a e a ;
               m a r g i n :    1 5 p x   0 ;
       
}

   . d d - o f f e r - t a b l e - w r a p    {
               m a r g i n - b o t t o m :    2 0 p x ;
       
}

   . d d - o f f e r - t a b l e    {
               w i d t h :    1 0 0 % ;
               m a x - w i d t h :    3 0 0 p x ;
               t e x t - a l i g n :    l e f t ;
               b o r d e r - c o l l a p s e :    c o l l a p s e ;
       
}

   . d d - o f f e r - t a b l e   t h    {
               p a d d i n g :    4 p x   1 0 p x   4 p x   0 ;
               f o n t - w e i g h t :    5 0 0 ;
               c o l o r :    # 6 6 6 ;
               t e x t - a l i g n :    r i g h t ;
               w i d t h :    4 0 % ;
       
}

   . d d - o f f e r - t a b l e   t d    {
               p a d d i n g :    4 p x   0 ;
               f o n t - w e i g h t :    7 0 0 ;
       
}

   . d d - d i s c - p r i c e    {
               f o n t - s i z e :    2 2 p x ;
               c o l o r :    # 2 1 2 5 2 9 ;
       
}

   . d d - o r i g - p r i c e    {
               f o n t - s i z e :    1 4 p x ;
               t e x t - d e c o r a t i o n :    l i n e - t h r o u g h ;
               c o l o r :    # 9 9 9 ;
       
}

   . d d - d i s c o u n t    {
               c o l o r :    # 2 8 a 7 4 5 ;
       
}

     . d d - b u y - s e c t i o n    {
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               g a p :    1 5 p x ;
               m a r g i n - t o p :    1 0 p x ;
       
}

   . d d - s t o r e - l o g o   i m g    {
               h e i g h t :    4 0 p x ;
               w i d t h :    8 0 p x ;
               o b j e c t - f i t :    c o n t a i n ;
               b a c k g r o u n d :    # f f f ;
               b o r d e r :    1 p x   s o l i d   # e a e a e a ;
               b o r d e r - r a d i u s :    4 p x ;
               p a d d i n g :    5 p x ;
       
}

   . d d - b u y - b t n    {
               d i s p l a y :    i n l i n e - f l e x ;
               f l e x - d i r e c t i o n :    c o l u m n ;
               a l i g n - i t e m s :    c e n t e r ;
               b a c k g r o u n d :    # 0 0 7 b f f ;
               c o l o r :    # f f f ;
               b o r d e r - r a d i u s :    8 p x ;
               p a d d i n g :    1 0 p x   3 0 p x ;
               t e x t - d e c o r a t i o n :    n o n e ;
               t r a n s i t i o n :    b a c k g r o u n d   0 . 2 s ;
               t e x t - a l i g n :    c e n t e r ;
       
}

   . d d - b u y - b t n : h o v e r    {
               b a c k g r o u n d :    # 0 0 5 6 b 3 ;
               c o l o r :    # f f f ;
               t e x t - d e c o r a t i o n :    n o n e ;
       
}

   . d d - b t n - i c o n    {
               w i d t h :    2 4 p x ;
               h e i g h t :    2 4 p x ;
               f i l l :    # f f f ;
               m a r g i n - b o t t o m :    4 p x ;
       
}

   . d d - b t n - s u b    {
               f o n t - s i z e :    1 1 p x ;
               f o n t - w e i g h t :    4 0 0 ;
               m a r g i n - t o p :    2 p x ;
               o p a c i t y :    0 . 9 ;
       
}

     . d d - v e r i f i e d - w r a p    {
               m a r g i n - t o p :    2 5 p x ;
       
}

   . d d - v e r i f i e d - i m g    {
               m a x - w i d t h :    2 0 0 p x ;
               h e i g h t :    a u t o ;
       
}

     . d d - j o i n - u s    {
               m a r g i n - t o p :    3 0 p x ;
               p a d d i n g - t o p :    2 0 p x ;
               b o r d e r - t o p :    1 p x   s o l i d   # e a e a e a ;
       
}

   . d d - j o i n - c o n t e n t    {
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               j u s t i f y - c o n t e n t :    f l e x - e n d ;
               g a p :    1 0 p x ;
       
}

   . d d - j o i n - l a b e l    {
               f o n t - s i z e :    1 6 p x ;
               f o n t - w e i g h t :    7 0 0 ;
               c o l o r :    # 6 6 6 ;
               m a r g i n - r i g h t :    1 5 p x ;
       
}

   . d d - s o c i a l - b t n    {
               p a d d i n g :    6 p x   1 5 p x ;
               c o l o r :    # f f f ;
               b o r d e r - r a d i u s :    4 p x ;
               f o n t - w e i g h t :    6 0 0 ;
               t e x t - d e c o r a t i o n :    n o n e ;
               f o n t - s i z e :    1 4 p x ;
               b o x - s h a d o w :    0   2 p x   5 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 1 ) ;
       
}

   . d d - b t n - w h a t s a p p    {
               b a c k g r o u n d :    # 2 8 a 7 4 5 ;
       
}

   . d d - b t n - t e l e g r a m    {
               b a c k g r o u n d :    # 0 0 7 b f f ;
       
}

     . d d - d e s c r i p t i o n    {
               m a r g i n - t o p :    3 0 p x ;
       
}

   . d d - d e s c - t i t l e    {
               f o n t - s i z e :    2 0 p x ;
               f o n t - w e i g h t :    7 0 0 ;
               c o l o r :    # 3 3 3 ;
               m a r g i n - b o t t o m :    1 5 p x ;
       
}

   . d d - d e s c - l i s t    {
               f o n t - s i z e :    1 5 p x ;
               l i n e - h e i g h t :    1 . 6 ;
               c o l o r :    # 4 4 4 ;
               p a d d i n g - l e f t :    2 0 p x ;
       
}

   . d d - d e s c - l i s t   l i    {
               m a r g i n - b o t t o m :    8 p x ;
       
}

     . d d - p r i c i n g - f o o t e r    {
               m a r g i n - t o p :    3 0 p x ;
               b a c k g r o u n d :    # f 8 f 9 f a ;
               p a d d i n g :    1 5 p x ;
               b o r d e r - r a d i u s :    8 p x ;
       
}

   . d d - p f - t i t l e    {
               f o n t - s i z e :    1 6 p x ;
               f o n t - w e i g h t :    7 0 0 ;
               c o l o r :    # 1 7 a 2 b 8 ;
               m a r g i n :    0   0   1 0 p x   0 ;
       
}

   . d d - p f - c o n t e n t   p    {
               f o n t - s i z e :    1 3 p x ;
               c o l o r :    # 6 c 7 5 7 d ;
               l i n e - h e i g h t :    1 . 5 ;
               m a r g i n :    0 ;
       
}

     . d d - b o t t o m - t a g s    {
               m a r g i n - t o p :    2 0 p x ;
       
}

   . d d - t a g    {
               d i s p l a y :    i n l i n e - b l o c k ;
               p a d d i n g :    4 p x   1 0 p x ;
               b a c k g r o u n d :    # e 9 e c e f ;
               c o l o r :    # 4 9 5 0 5 7 ;
               b o r d e r - r a d i u s :    4 p x ;
               f o n t - s i z e :    1 2 p x ;
               t e x t - d e c o r a t i o n :    n o n e ;
       
}

   . d d - b o t t o m - b r e a d c r u m b    {
               m a r g i n - t o p :    1 5 p x ;
               f o n t - s i z e :    1 2 p x ;
       
}

   . d d - b o t t o m - b r e a d c r u m b   a    {
               c o l o r :    # 1 7 a 2 b 8 ;
               t e x t - d e c o r a t i o n :    n o n e ;
       
}

   . d d - b o t t o m - b r e a d c r u m b   s p a n    {
               c o l o r :    # 6 c 7 5 7 d ;
       
}

         / *   B l e n d e d   D e a l / S t o r e   P a g e   S t y l e s   * /   . c k - s t o r e - d e a l - p a g e    {
               b a c k g r o u n d :    # f 4 f 7 f a ;
               m i n - h e i g h t :    c a l c ( 1 0 0 v h   -   3 0 0 p x ) ;
               p o s i t i o n :    r e l a t i v e ;
               p a d d i n g - b o t t o m :    5 0 p x ;
       
}

   . s t o r e - b a n n e r - g r a d i e n t    {
               p o s i t i o n :    a b s o l u t e ;
               t o p :    0 ;
               l e f t :    0 ;
               w i d t h :    1 0 0 % ;
               h e i g h t :    3 0 0 p x ;
               b a c k g r o u n d :    l i n e a r - g r a d i e n t ( 1 3 5 d e g ,    # 1 b 2 8 3 8   0 % ,    # 2 a 4 3 6 9   1 0 0 % ) ;
               z - i n d e x :    1 ;
       
}

   . s t o r e - d e a l - c o n t a i n e r    {
               p o s i t i o n :    r e l a t i v e ;
               z - i n d e x :    2 ;
               p a d d i n g - t o p :    2 0 p x ;
               m a x - w i d t h :    1 3 0 0 p x ;
       
}

   . d d - b r e a d c r u m b    {
               c o l o r :    # f f f ;
               f o n t - s i z e :    1 3 p x ;
               m a r g i n - b o t t o m :    2 0 p x ;
       
}

   . d d - b r e a d c r u m b   a    {
               c o l o r :    r g b a ( 2 5 5 ,  2 5 5 ,  2 5 5 ,  0 . 8 ) ;
               t e x t - d e c o r a t i o n :    n o n e ;
       
}

   . d d - b r e a d c r u m b   a : h o v e r    {
               c o l o r :    # f f f ;
       
}

   . h i g h l i g h t - m a i n - b o x    {
               b a c k g r o u n d :    # f f f ;
               b o r d e r - r a d i u s :    1 2 p x ;
               d i s p l a y :    f l e x ;
               f l e x - w r a p :    w r a p ;
               p a d d i n g :    3 0 p x ;
               m a r g i n - b o t t o m :    3 0 p x ;
       
}

   . h m b - l e f t    {
               f l e x :    0   0   1 0 0 % ;
               t e x t - a l i g n :    c e n t e r ;
               b o r d e r - r i g h t :    n o n e ;
               p a d d i n g - b o t t o m :    2 0 p x ;
       
}

   . h m b - r i g h t    {
               f l e x :    0   0   1 0 0 % ;
               p a d d i n g - t o p :    2 0 p x ;
               b o r d e r - t o p :    1 p x   s o l i d   # e a e a e a ;
       
}

   @ m e d i a ( m i n - w i d t h :   7 6 8 p x )    {
               . h m b - l e f t    {
                           f l e x :    0   0   4 0 % ;
                           b o r d e r - r i g h t :    1 p x   s o l i d   # e a e a e a ;
                           p a d d i n g - b o t t o m :    0 ;
                           p a d d i n g - r i g h t :    3 0 p x ;
                   
    }

               . h m b - r i g h t    {
                           f l e x :    0   0   6 0 % ;
                           b o r d e r - t o p :    n o n e ;
                           p a d d i n g - t o p :    0 ;
                           p a d d i n g - l e f t :    3 0 p x ;
                   
    }

       
}

   . h m b - i m a g e    {
               m a x - w i d t h :    1 0 0 % ;
               m a x - h e i g h t :    3 5 0 p x ;
               o b j e c t - f i t :    c o n t a i n ;
       
}

   . h o t d e a l - t a g    {
               d i s p l a y :    i n l i n e - b l o c k ;
               c o l o r :    # f f 5 7 2 2 ;
               f o n t - w e i g h t :    7 0 0 ;
               f o n t - s i z e :    1 4 p x ;
               m a r g i n - b o t t o m :    8 p x ;
               b a c k g r o u n d :    r g b a ( 2 5 5 ,  8 7 ,  3 4 ,  0 . 1 ) ;
               p a d d i n g :    2 p x   8 p x ;
               b o r d e r - r a d i u s :    4 p x ;
       
}

   . h m b - t i t l e    {
               f o n t - s i z e :    2 4 p x ;
               f o n t - w e i g h t :    8 0 0 ;
               c o l o r :    # 1 1 1 ;
               m a r g i n - b o t t o m :    1 5 p x ;
               l i n e - h e i g h t :    1 . 3 ;
       
}

   . h m b - d i v i d e r    {
               b o r d e r :    0 ;
               b o r d e r - t o p :    1 p x   d a s h e d   # e a e a e a ;
               m a r g i n :    1 5 p x   0 ;
       
}

   . h m b - p r i c i n g - t a b l e    {
               m a r g i n - b o t t o m :    2 0 p x ;
               m a x - w i d t h :    3 0 0 p x ;
       
}

   . h m b - p r i c e - r o w    {
               d i s p l a y :    f l e x ;
               j u s t i f y - c o n t e n t :    s p a c e - b e t w e e n ;
               a l i g n - i t e m s :    c e n t e r ;
               m a r g i n - b o t t o m :    8 p x ;
       
}

   . h m b - p - l a b e l    {
               c o l o r :    # 6 6 6 ;
               f o n t - w e i g h t :    6 0 0 ;
               f o n t - s i z e :    1 4 p x ;
       
}

   . h m b - p - v a l u e    {
               f o n t - w e i g h t :    8 0 0 ;
               f o n t - s i z e :    1 8 p x ;
               c o l o r :    # 1 1 1 ;
       
}

   . h m b - p - v a l u e . l i n e - t h r o u g h    {
               t e x t - d e c o r a t i o n :    l i n e - t h r o u g h ;
               c o l o r :    # 9 9 9 ;
               f o n t - s i z e :    1 4 p x ;
       
}

   . h m b - p - v a l u e . d d - d i s c - p r i c e    {
               c o l o r :    # 2 1 2 5 2 9 ;
               f o n t - s i z e :    2 2 p x ;
       
}

   . h m b - p - v a l u e . d d - d i s c o u n t    {
               c o l o r :    # 2 8 a 7 4 5 ;
       
}

   . h m b - a c t i o n - r o w    {
               d i s p l a y :    f l e x ;
               f l e x - w r a p :    w r a p ;
               a l i g n - i t e m s :    c e n t e r ;
               g a p :    1 5 p x ;
               m a r g i n - b o t t o m :    5 p x ;
       
}

   . h m b - s t o r e - l o g o   i m g    {
               h e i g h t :    4 8 p x ;
               w i d t h :    a u t o ;
               o b j e c t - f i t :    c o n t a i n ;
               b o r d e r :    1 p x   s o l i d   # e a e a e a ;
               b o r d e r - r a d i u s :    6 p x ;
               p a d d i n g :    5 p x ;
       
}

   . c k - b u t t o n - o r a n g e    {
               b a c k g r o u n d :    # f f 5 7 2 2 ;
               c o l o r :    # f f f ;
               p a d d i n g :    1 2 p x   2 4 p x ;
               b o r d e r - r a d i u s :    8 p x ;
               f o n t - s i z e :    1 6 p x ;
               f o n t - w e i g h t :    7 0 0 ;
               t e x t - d e c o r a t i o n :    n o n e ;
               d i s p l a y :    i n l i n e - f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               t r a n s i t i o n :    b a c k g r o u n d   0 . 2 s ;
       
}

   . c k - b u t t o n - o r a n g e : h o v e r    {
               b a c k g r o u n d :    # e 6 4 a 1 9 ;
               c o l o r :    # f f f ;
               t e x t - d e c o r a t i o n :    n o n e ;
       
}

   . h m b - a c t i o n - s u b    {
               f o n t - s i z e :    1 2 p x ;
               c o l o r :    # 8 8 8 ;
               m a r g i n - b o t t o m :    2 0 p x ;
               m a r g i n - l e f t :    9 5 p x ;
       
}

   @ m e d i a ( m a x - w i d t h :   7 6 8 p x )    {
               . h m b - a c t i o n - s u b    {
           m a r g i n - l e f t :    0 ;
           
    }

       
}

   . h m b - s o c i a l - r o w    {
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               g a p :    1 0 p x ;
               b a c k g r o u n d :    # f 9 f b f d ;
               p a d d i n g :    1 0 p x   1 5 p x ;
               b o r d e r - r a d i u s :    6 p x ;
               b o r d e r :    1 p x   s o l i d   # e f f 2 f 5 ;
       
}

   . h m b - s o c i a l - r o w   . j o i n - t e x t    {
               f o n t - w e i g h t :    6 0 0 ;
               c o l o r :    # 5 5 5 ;
               f o n t - s i z e :    1 4 p x ;
       
}

   . s o c i a l - b t n    {
               p a d d i n g :    5 p x   1 2 p x ;
               c o l o r :    # f f f ;
               f o n t - s i z e :    1 3 p x ;
               f o n t - w e i g h t :    6 0 0 ;
               b o r d e r - r a d i u s :    4 p x ;
               t e x t - d e c o r a t i o n :    n o n e ;
       
}

   . s o c i a l - b t n . w h a t s a p p    {
       b a c k g r o u n d :    # 2 5 d 3 6 6 ;
       
}

   . s o c i a l - b t n . t e l e g r a m    {
       b a c k g r o u n d :    # 0 0 8 8 c c ;
       
}

     / *   B o t t o m   S p l i t   L a y o u t   * /   . s t o r e - d e a l - s p l i t    {
               d i s p l a y :    f l e x ;
               f l e x - w r a p :    w r a p ;
               g a p :    2 5 p x ;
       
}

   . s d - l e f t - c o l    {
               f l e x :    0   0   1 0 0 % ;
       
}

   . s d - r i g h t - c o l    {
               f l e x :    0   0   1 0 0 % ;
       
}

   @ m e d i a ( m i n - w i d t h :   9 9 2 p x )    {
               . s d - l e f t - c o l    {
           f l e x :    0   0   c a l c ( 6 5 %   -   1 2 . 5 p x ) ;
           
    }

               . s d - r i g h t - c o l    {
           f l e x :    0   0   c a l c ( 3 5 %   -   1 2 . 5 p x ) ;
           
    }

       
}

     . c o n t e n t - c a r d    {
               b a c k g r o u n d :    # f f f ;
               b o r d e r - r a d i u s :    1 2 p x ;
               p a d d i n g :    2 5 p x ;
       
}

   . c o n t e n t - c a r d   h 2    {
               f o n t - s i z e :    1 8 p x ;
               f o n t - w e i g h t :    8 0 0 ;
               c o l o r :    # 1 1 1 ;
               m a r g i n - b o t t o m :    1 5 p x ;
               b o r d e r - b o t t o m :    2 p x   s o l i d   # f 0 f 0 f 0 ;
               p a d d i n g - b o t t o m :    1 0 p x ;
       
}

   . a b o u t - l i s t    {
               m a r g i n :    0 ;
               p a d d i n g - l e f t :    2 0 p x ;
               c o l o r :    # 4 4 4 ;
               l i n e - h e i g h t :    1 . 6 ;
       
}

   . p r i c i n g - t e x t    {
               c o l o r :    # 5 5 5 ;
               f o n t - s i z e :    1 4 p x ;
               l i n e - h e i g h t :    1 . 6 ;
               m a r g i n :    0 ;
       
}

     / *   R i g h t   C o l :   S t o r e   R e l a t e d   D e a l s   * /   . r e l a t e d - t i t l e    {
               f o n t - s i z e :    1 8 p x ;
               f o n t - w e i g h t :    8 0 0 ;
               c o l o r :    # 1 1 1 ;
               m a r g i n - b o t t o m :    2 0 p x ;
               m a r g i n - t o p :    0 ;
       
}

   . r e l a t e d - d e a l s - l i s t    {
               d i s p l a y :    f l e x ;
               f l e x - d i r e c t i o n :    c o l u m n ;
               g a p :    1 5 p x ;
       
}

   . r d - c a r d    {
               b a c k g r o u n d :    # f f f ;
               b o r d e r - r a d i u s :    1 0 p x ;
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               p a d d i n g :    1 5 p x ;
               g a p :    1 5 p x ;
               t r a n s i t i o n :    t r a n s f o r m   0 . 2 s ;
       
}

   . r d - c a r d : h o v e r    {
               t r a n s f o r m :    t r a n s l a t e Y ( - 3 p x ) ;
       
}

   . r d - c a r d - l e f t    {
               p o s i t i o n :    r e l a t i v e ;
               w i d t h :    8 0 p x ;
               h e i g h t :    8 0 p x ;
               f l e x - s h r i n k :    0 ;
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               b o r d e r :    1 p x   s o l i d   # f 0 f 0 f 0 ;
               b o r d e r - r a d i u s :    8 p x ;
               b a c k g r o u n d :    # f f f ;
       
}

   . r d - c a r d - l e f t   i m g    {
               m a x - w i d t h :    9 0 % ;
               m a x - h e i g h t :    9 0 % ;
               o b j e c t - f i t :    c o n t a i n ;
       
}

   . r d - d i s c o u n t    {
               p o s i t i o n :    a b s o l u t e ;
               t o p :    - 5 p x ;
               l e f t :    - 5 p x ;
               b a c k g r o u n d :    # f f 5 7 2 2 ;
               c o l o r :    # f f f ;
               f o n t - s i z e :    1 0 p x ;
               f o n t - w e i g h t :    7 0 0 ;
               p a d d i n g :    2 p x   5 p x ;
               b o r d e r - r a d i u s :    4 p x ;
       
}

   . r d - c a r d - c o n t e n t    {
               f l e x :    1 ;
       
}

   . r d - t i t l e    {
               f o n t - s i z e :    1 4 p x ;
               f o n t - w e i g h t :    7 0 0 ;
               c o l o r :    # 1 1 1 ;
               m a r g i n :    0   0   5 p x   0 ;
               l i n e - h e i g h t :    1 . 3 ;
               d i s p l a y :    - w e b k i t - b o x ;
               - w e b k i t - l i n e - c l a m p :    2 ;
               - w e b k i t - b o x - o r i e n t :    v e r t i c a l ;
               o v e r f l o w :    h i d d e n ;
       
}

   . r d - p r i c e s    {
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               g a p :    1 0 p x ;
       
}

   . r d - d i s c    {
               f o n t - w e i g h t :    8 0 0 ;
               c o l o r :    # 1 1 1 ;
               f o n t - s i z e :    1 5 p x ;
       
}

   . r d - m r p    {
               f o n t - s i z e :    1 2 p x ;
               c o l o r :    # 9 9 9 ;
               t e x t - d e c o r a t i o n :    l i n e - t h r o u g h ;
       
}

   . r d - c a r d - r i g h t    {
               f l e x - s h r i n k :    0 ;
       
}

   . r d - b t n    {
               b a c k g r o u n d :    r g b a ( 0 ,    1 1 5 ,    2 5 5 ,    0 . 1 ) ;
               c o l o r :    # 0 0 7 3 f f ;
               p a d d i n g :    8 p x   1 2 p x ;
               b o r d e r - r a d i u s :    6 p x ;
               f o n t - s i z e :    1 2 p x ;
               f o n t - w e i g h t :    7 0 0 ;
               t e x t - d e c o r a t i o n :    n o n e ;
       
}

   . r d - b t n : h o v e r    {
      w i d t h: a u t o;
    o b j e c t - f i t: c o n t a i n;
    b o r d e r: 1 p x s o l i d # e a e a e a;
    b o r d e r - r a d i u s: 6 p x;
    p a d d i n g: 5 p x;
}

. c k - b u t t o n - o r a n g e {
    b a c k g r o u n d: # f f 5 7 2 2;
    c o l o r: # f f f;
    p a d d i n g: 1 2 p x 2 4 p x;
    b o r d e r - r a d i u s: 8 p x;
    f o n t - s i z e: 1 6 p x;
    f o n t - w e i g h t: 7 0 0;
    t e x t - d e c o r a t i o n: n o n e;
    d i s p l a y: i n l i n e - f l e x;
    a l i g n - i t e m s: c e n t e r;
    t r a n s i t i o n: b a c k g r o u n d 0 . 2 s;
}

. c k - b u t t o n - o r a n g e : h o v e r {
    b a c k g r o u n d: # e 6 4 a 1 9;
    c o l o r: # f f f;
    t e x t - d e c o r a t i o n: n o n e;
}

. h m b - a c t i o n - s u b {
    f o n t - s i z e: 1 2 p x;
    c o l o r: # 8 8 8;
    m a r g i n - b o t t o m: 2 0 p x;
    m a r g i n - l e f t: 9 5 p x;
}

@ m e d i a (m a x - w i d t h : 7 6 8 p x) {
    . h m b - a c t i o n - s u b {
        m a r g i n - l e f t: 0;
    }
}

. h m b - s o c i a l - r o w {
    d i s p l a y: f l e x;
    a l i g n - i t e m s: c e n t e r;
    g a p: 1 0 p x;
    b a c k g r o u n d: # f 9 f b f d;
    p a d d i n g: 1 0 p x 1 5 p x;
    b o r d e r - r a d i u s: 6 p x;
    b o r d e r: 1 p x s o l i d # e f f 2 f 5;
}

. h m b - s o c i a l - r o w . j o i n - t e x t {
    f o n t - w e i g h t: 6 0 0;
    c o l o r: # 5 5 5;
    f o n t - s i z e: 1 4 p x;
}

. s o c i a l - b t n {
    p a d d i n g: 5 p x 1 2 p x;
    c o l o r: # f f f;
    f o n t - s i z e: 1 3 p x;
    f o n t - w e i g h t: 6 0 0;
    b o r d e r - r a d i u s: 4 p x;
    t e x t - d e c o r a t i o n: n o n e;
}

. s o c i a l - b t n . w h a t s a p p {
    b a c k g r o u n d: # 2 5 d 3 6 6;
}

. s o c i a l - b t n . t e l e g r a m {
    b a c k g r o u n d: # 0 0 8 8 c c;
}

/ * B o t t o m S p l i t L a y o u t * / . s t o r e - d e a l - s p l i t {
    d i s p l a y: f l e x;
    f l e x - w r a p: w r a p;
    g a p: 2 5 p x;
}

. s d - l e f t - c o l {
    f l e x: 0 0 1 0 0 %;
}

. s d - r i g h t - c o l {
    f l e x: 0 0 1 0 0 %;
}

@ m e d i a (m i n - w i d t h : 9 9 2 p x) {
    . s d - l e f t - c o l {
        f l e x: 0 0 c a l c (6 5 % - 1 2 . 5 p x);
    }

    . s d - r i g h t - c o l {
        f l e x: 0 0 c a l c (3 5 % - 1 2 . 5 p x);
    }
}

. c o n t e n t - c a r d {
    b a c k g r o u n d: # f f f;
    b o r d e r - r a d i u s: 1 2 p x;
    p a d d i n g: 2 5 p x;
}

. c o n t e n t - c a r d h 2 {
    f o n t - s i z e: 1 8 p x;
    f o n t - w e i g h t: 8 0 0;
    c o l o r: # 1 1 1;
    m a r g i n - b o t t o m: 1 5 p x;
    b o r d e r - b o t t o m: 2 p x s o l i d # f 0 f 0 f 0;
    p a d d i n g - b o t t o m: 1 0 p x;
}

. a b o u t - l i s t {
    m a r g i n: 0;
    p a d d i n g - l e f t: 2 0 p x;
    c o l o r: # 4 4 4;
    l i n e - h e i g h t: 1 . 6;
}

. p r i c i n g - t e x t {
    c o l o r: # 5 5 5;
    f o n t - s i z e: 1 4 p x;
    l i n e - h e i g h t: 1 . 6;
    m a r g i n: 0;
}

/ * R i g h t C o l : S t o r e R e l a t e d D e a l s * / . r e l a t e d - t i t l e {
    f o n t - s i z e: 1 8 p x;
    f o n t - w e i g h t: 8 0 0;
    c o l o r: # 1 1 1;
    m a r g i n - b o t t o m: 2 0 p x;
    m a r g i n - t o p: 0;
}

. r e l a t e d - d e a l s - l i s t {
    d i s p l a y: f l e x;
    f l e x - d i r e c t i o n: c o l u m n;
    g a p: 1 5 p x;
}

. r d - c a r d {
    b a c k g r o u n d: # f f f;
    b o r d e r - r a d i u s: 1 0 p x;
    d i s p l a y: f l e x;
    a l i g n - i t e m s: c e n t e r;
    p a d d i n g: 1 5 p x;
    g a p: 1 5 p x;
    t r a n s i t i o n: t r a n s f o r m 0 . 2 s;
}

. r d - c a r d : h o v e r {
    t r a n s f o r m: t r a n s l a t e Y (- 3 p x);
}

. r d - c a r d - l e f t {
    p o s i t i o n: r e l a t i v e;
    w i d t h: 8 0 p x;
    h e i g h t: 8 0 p x;
    f l e x - s h r i n k: 0;
    d i s p l a y: f l e x;
    a l i g n - i t e m s: c e n t e r;
    j u s t i f y - c o n t e n t: c e n t e r;
    b o r d e r: 1 p x s o l i d # f 0 f 0 f 0;
    b o r d e r - r a d i u s: 8 p x;
    b a c k g r o u n d: # f f f;
}

. r d - c a r d - l e f t i m g {
    m a x - w i d t h: 9 0 %;
    m a x - h e i g h t: 9 0 %;
    o b j e c t - f i t: c o n t a i n;
}

. r d - d i s c o u n t {
    p o s i t i o n: a b s o l u t e;
    t o p: - 5 p x;
    l e f t: - 5 p x;
    b a c k g r o u n d: # f f 5 7 2 2;
    c o l o r: # f f f;
    f o n t - s i z e: 1 0 p x;
    f o n t - w e i g h t: 7 0 0;
    p a d d i n g: 2 p x 5 p x;
    b o r d e r - r a d i u s: 4 p x;
}

. r d - c a r d - c o n t e n t {
    f l e x: 1;
}

. r d - t i t l e {
    f o n t - s i z e: 1 4 p x;
    f o n t - w e i g h t: 7 0 0;
    c o l o r: # 1 1 1;
    m a r g i n: 0 0 5 p x 0;
    l i n e - h e i g h t: 1 . 3;
    d i s p l a y: - w e b k i t - b o x;
    - w e b k i t - l i n e - c l a m p: 2;
    - w e b k i t - b o x - o r i e n t: v e r t i c a l;
    o v e r f l o w: h i d d e n;
}

. r d - p r i c e s {
    d i s p l a y: f l e x;
    a l i g n - i t e m s: c e n t e r;
    g a p: 1 0 p x;
}

. r d - d i s c {
    f o n t - w e i g h t: 8 0 0;
    c o l o r: # 1 1 1;
    f o n t - s i z e: 1 5 p x;
}

. r d - m r p {
    f o n t - s i z e: 1 2 p x;
    c o l o r: # 9 9 9;
    t e x t - d e c o r a t i o n: l i n e - t h r o u g h;
}

. r d - c a r d - r i g h t {
    f l e x - s h r i n k: 0;
}

. r d - b t n {
    b a c k g r o u n d: r g b a (0, 1 1 5, 2 5 5, 0 . 1);
    c o l o r: # 0 0 7 3 f f;
    p a d d i n g: 8 p x 1 2 p x;
    b o r d e r - r a d i u s: 6 p x;
    f o n t - s i z e: 1 2 p x;
    f o n t - w e i g h t: 7 0 0;
    t e x t - d e c o r a t i o n: n o n e;
}

. r d - b t n : h o v e r {
    b a c k g r o u n d: # 0 0 7 3 f f;
    c o l o r: # f f f;
}




.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 {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    height: 320px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-sizing: border-box;
    text-decoration: none;
}

.ck-credit-card:hover {
    transform: translateY(-3px);
}

.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: 1.5px solid #F5F7F9;
    border-radius: 8px;
    width: 90px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.Ps-24-logo-box span {
    color: #111;
    font-weight: 800;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
}

.Ps-24-content {
    max-width: 60%;
    z-index: 2;
}

.Ps-24-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 5px 0;
    line-height: 1.2;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.Ps-24-subtitle {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    color: white;
}

.Ps-24-visual {
    position: absolute;
    right: -25px;
    top: 65px;
    width: 220px;
    transform: rotate(-5deg);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.3s;
}

.ck-credit-card:hover .Ps-24-visual {
    transform: rotate(-3deg) scale(1.05);
}

.Ps-24-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}

.Ps-24-rewards {
    background: #0036DA;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.Ps-24-logo {
    font-weight: 800;
    font-size: 13px;
    border: 1px solid white;
    padding: 1px 4px;
    border-radius: 4px;
    color: #0036DA;
    background: white;
}

.Ps-24-reward-txt {
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.Ps-24-apply {
    background: white;
    color: #0036DA;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s;
}

.ck-credit-card:hover .Ps-24-apply {
    background: #f0f0f0;
}

/* =========================================
   DEALSMAGNET 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;
}

/* Popular Brands Cards */
.pb-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 10px;
}
.pb-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.pb-card-top {
    background: #ffebee;
    color: #f0145b;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 10px;
    text-align: center;
}
.pb-card-middle {
    padding: 20px 15px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pb-card-middle img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
.pb-card-bottom {
    padding: 0 15px 15px;
}
.pb-btn {
    display: block;
    background: #0134d4;
    color: #fff;
    text-decoration: none;
    padding: 10px 5px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}
.pb-btn:hover {
    background: #002399;
    color: #fff;
}