:root {
    --primary-color: #4a6fa5;
    --primary-light: #6f8fbf;
    --secondary-color: #58a27c;
    --light-color: #f7f9fc;
    --dark-color: #2e3a59;
    --gray-color: #7a8494;
    --light-gray: #e2e6eb;
    --success-color: #82c78f;
    --warning-color: #f0c674;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    color: var(--dark-color);
}

h1 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

h2 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.875rem;
    font-weight: 500;
}

h6 {
    font-size: 0.75rem;
    color: var(--gray-color);
    font-weight: 500;
}

p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--primary-light);
}

.single-article,
.bonus-details ul,
ol {
    font-size: 0.9375rem;
}

.single-article,
.bonus-details li {
    padding-left: 0.5rem;
}

ul,
ol {
    margin: 0 0 1.5rem 1.5rem;
    padding: 0;
    color: var(--dark-color);
    line-height: 1.6;
    font-size: 0.9375rem;
}

li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

ul {
    list-style-type: none;
}

ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

ol {
    list-style-type: none;
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li:before {
    content: counter(item) ".";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    position: absolute;
    left: 0;
    text-align: right;
}

ul ul,
ol ol,
ul ol,
ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 1.5rem;
}

.widget-list {
    margin: 0;
}

.widget-list li {
    margin-bottom: 0.8rem;
    padding-left: 0;
    list-style-type: none;
}

.widget-list li:before {
    display: none;
}

.content-list {
    margin-left: 2rem;
}

.content-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
}

@media(max-width:768px) {

    ul,
    ol {
        margin-left: 1rem;
    }

    .content-list {
        margin-left: 1.5rem;
    }
}

.quote_block {
    background-color: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    margin: 20px 0;
    position: relative;
    box-shadow: var(--box-shadow);
}

.quote_block:before {
    content: "" ";
 position: absolute;
    top: 10px;
    left: 10px;
    font-family: Arial, sans-serif;
    font-size: 60px;
    color: rgba(93, 105, 179, 0.1);
    line-height: 1;
}

.quote_body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
    padding: 10px 0 10px 20px;
}

.quote_body b {
    color: var(--primary-color);
    font-weight: 600;
}

/* Для нередактируемых цитат */
.noncontenteditable {
    background-color: rgba(93, 105, 179, 0.05);
    border-left-color: var(--secondary-color);
}

/* Адаптивность */
@media (max-width: 768px) {
    .quote_block {
        padding: 12px 15px;
    }

    .quote_body {
        font-size: 14px;
        padding-left: 15px;
    }
}

q {
    font-style: italic;
    quotes: "«" "»" "'" "'";
    color: var(--dark-color);
}

q:before {
    content: open-quote;
    color: var(--primary-color);
}

q:after {
    content: close-quote;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
    margin: 0.75rem 0;
    box-shadow: var(--box-shadow);
}

.figure {
    margin: 1.25rem 0;
    text-align: center;
}

.figure img {
    margin: 0 auto 0.5rem auto;
}

.caption {
    font-size: 0.8125rem;
    color: var(--gray-color);
    margin-top: 0.25rem;
    text-align: center;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--gray-color) !important;
    opacity: 0.8;
}

.lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--dark-color);
}

@media(max-width:768px) {
    h1 {
        font-size: 1.5rem;
        padding-bottom: 0.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .lead {
        font-size: 1rem;
    }
}

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

.top-bar {
    background-color: var(--dark-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: white;
    margin-left: 10px;
}

.social-links a:hover {
    color: var(--primary-light);
}

.subscribe-btn {
    color: white;
    background-color: var(--primary-color);
    padding: 5px 12px;
    border-radius: var(--border-radius);
    font-size: 13px;
}

.subscribe-btn:hover {
    background-color: var(--primary-light);
    color: white;
}

.main-header {
    padding: 15px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo i {
    margin-right: 8px;
    font-size: 24px;
}

.search-form {
    order: 3;
    width: 100%;
    margin-top: 15px;
    display: none;
}

.search-form.active {
    display: flex;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 18px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--primary-light);
}

.box-page-navigation {
    display: table;
    width: 100%;
    padding: 15px 0;
}

.page-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.page-navigation .pprev a,
.page-navigation .pnext a,
.page-navigation .page a,
.page-navigation .page span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    line-height: 14px;
    color: #9a9a9a;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-navigation .page span {
    background: #335294;
    color: #fff;
    border-color: #335294;
}

.page-navigation .pprev a:hover,
.page-navigation .pnext a:hover,
.page-navigation .page a:hover {
    background: #335294;
    color: #fff;
    border-color: #335294;
}

.page-navigation .pprev span,
.page-navigation .pnext span {
    display: none;
}

@media screen and (max-width: 1279px) {
    .page-navigation .page a:nth-child(n+7) {
        display: none;
    }
}

@media screen and (max-width: 767px) {

    .page-navigation .page a,
    .page-navigation .page span {
        display: none;
    }

    .page-navigation .page span:before {
        content: '...';
        color: #9a9a9a;
    }
}

pre {
    background: #f8fafd;
    border: 1px solid #eaeef5;
    border-radius: 6px;
    padding: 12px 15px;
    margin: 15px 0;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.5;
    color: #2c3e50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

pre:hover {
    border-color: #d0d9e6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--dark-color);
    margin-left: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 15px;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    font-size: 14px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-menu,
.nav-menu ul,
.nav-menu li {
    list-style: none;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: inherit;
}

.nav-menu li::before,
.nav-menu li::after {
    content: none !important;
}

.nav-menu {
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
}

#breadcrumbs {
    padding: 10px 0;
    font-size: 13px;
    margin-bottom: 15px;
}

#breadcrumbs a {
    color: var(--gray-color);
}

#breadcrumbs span {
    color: var(--dark-color);
    margin: 0 5px;
}

.coupons-section {
    margin: 0 0 25px
}

.section-title {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 8px;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}

.coupons-grid>.box-page-navigation {
    grid-column: 1 / -1;
}

.coupon-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.coupon-header {
    display: flex;
    padding: 12px;
    border-bottom: 1px solid var(--light-gray);
    min-height: 96px;
    position: relative;
    align-items: center;
}

.coupon-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.coupon-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    box-shadow: none;
}

.coupon-title {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coupon-title h3 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--dark-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.coupon-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.coupon-tag {
    display: inline-block;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 500;
}

.tag-category {
    background-color: var(--primary-color);
    color: white;
}

.tag-popular {
    background-color: #4CAF50;
    color: white;
}

.tag-exclusive {
    background-color: #9C27B0;
    color: white;
}

.tag-expires {
    background-color: #FF9800;
    color: white;
}

.coupon-body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coupon-description {
    font-size: 13px;
    color: var(--gray-color);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.coupon-used {
    font-size: 12px;
    color: var(--gray-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.coupon-used i {
    margin-right: 5px;
    color: var(--primary-color);
}

.coupon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px 12px;
}

.coupon-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 7px 12px;
    border-radius: var(--border-radius);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.coupon-btn:hover {
    background-color: var(--primary-light);
    color: white;
}

.coupon-code {
    background-color: var(--light-color);
    padding: 7px 12px;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.coupon-code:hover {
    background-color: var(--light-gray);
}

.coupon-code i {
    margin-left: 6px;
    font-size: 13px;
}

.categories-section {
    margin: 30px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.category-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px 10px;
    text-align: center;
    transition: var(--transition);
    color: var(--dark-color);
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.category-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.category-card div {
    font-size: 13px;
    font-weight: 500;
}

.content-with-sidebar {
    display: flex;
    gap: 20px;
    margin: 0 0 20px;
}

.mt30 {
    margin-top: 30px;
}

.main-content {
    flex: 3;
}

.main-content li {
    padding-left: 0.5rem;
}

.sidebar {
    flex: 1;
    min-width: 250px;
}

.widget {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px;
    margin-bottom: 15px;
}

.widget-title {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
}

.widget-title i {
    margin-right: 8px;
    color: var(--primary-color);
}

.widget-list {
    list-style: none;
}

.widget-list li {
    margin-bottom: 8px;
}

.widget-list a {
    color: var(--gray-color);
    transition: var(--transition);
    font-size: 13px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
}

.widget-list a:hover {
    color: var(--primary-color);
    background-color: rgba(93, 105, 179, 0.1);
    transform: translateX(3px);
}

.widget-list a i {
    margin-right: 8px;
    font-size: 12px;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.read-more {
    text-align: right;
    margin: 8px 0 0;
}

.read-more a {
    font-size: 13px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.read-more a i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more a:hover i {
    transform: translateX(3px);
}

.about-section {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px;
    margin: 20px 0;
}

.about-section h1 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.about-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--dark-color);
}

.bonus-section {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin: 0 0 25px;
}

.bonus-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    gap: 20px;
}

.bonus-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0;
    flex-shrink: 0;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.bonus-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    box-shadow: none;
}

.bonus-content_title {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.bonus-title {
    flex: 1;
    min-width: 250px;
}

.bonus-title h1 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.bonus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.bonus-tag {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.tag-category {
    background-color: var(--light-gray);
    color: var(--gray-color);
}

.tag-exclusive {
    background-color: var(--primary-color);
    color: white;
}

.tag-popular {
    background-color: var(--success-color);
    color: white;
}

.tag-expires {
    background-color: var(--warning-color);
    color: var(--dark-color);
}

.promo-code-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
}

.promo-code-wrapper {
    position: relative;
}

.bonus-header .coupon-code {
    margin-left: 0;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    border: 1px dashed var(--primary-color);
}

.coupon-code:hover {
    background-color: rgba(93, 105, 179, 0.1);
}

.coupon-code i {
    color: var(--primary-color);
    margin-left: 8px;
    font-size: 14px;
}

.promo-btn {
    font-size: 14px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.promo-btn:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 105, 179, 0.2);
}

@media(max-width:768px) {
    .bonus-header {
        flex-direction: column;
        text-align: center;
    }

    .bonus-logo {
        margin-right: 0;
    }

    .bonus-title {
        text-align: center;
        margin-bottom: 15px;
    }

    .bonus-tags {
        justify-content: center;
    }

    .promo-code-block {
        width: 100%;
    }
}

.bonus-content {
    display: flex;
}

.bonus-main {
    flex: 3;
}

.bonus-details {
    margin-bottom: 25px;
}

.bonus-cta {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.bonus-code {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
    cursor: pointer;
    transition: var(--transition);
}

.bonus-code:hover {
    background-color: var(--primary-light);
}

.bonus-code i {
    margin-left: 10px;
    font-size: 16px;
}

@media(max-width:563px) {
    .bonus-code {
        width: 100%;
    }

    .bonus-content .bonus-btn {
        max-width: 100%;
    }
}

.bonus-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
}

.bonus-btn:hover {
    background-color: #3da58a;
    transform: translateY(-2px);
}

.bonus-steps {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.bonus-step {
    flex: 1;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.step-desc {
    font-size: 13px;
    color: var(--gray-color);
}

.category-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.category-header:after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.category-header h1 {
    font-size: 24px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    color: white;
}

.category-header p {
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 90%;
    color: white;
}

@media(max-width:768px) {
    .category-header h1 {
        font-size: 20px;
    }

    .category-header p {
        max-width: 100%;
    }
}

@media(max-width:991px) {
    .bonus-content {
        flex-direction: column;
    }
    .bonus-steps {
        flex-direction: column;
    }
}

.single-article {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 20px;
}

.article-title-single {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.article-meta-single {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-color);
}

.article-date-single {
    margin-right: 15px;
}

.article-author {
    margin-right: 15px;
}

.article-category-single {
    background-color: var(--light-gray);
    padding: 3px 10px;
    border-radius: var(--border-radius);
    color: var(--dark-color);
}

.article-image-single {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-image-single img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content-single {
    line-height: 1.7;
    font-size: 15px;
}

.article-content-single p {
    margin-bottom: 15px;
}

.article-content-single h2,
.article-content-single h3 {
    margin: 20px 0 15px;
    color: var(--dark-color);
}

.article-content-single h2 {
    font-size: 22px;
}

.article-content-single h3 {
    font-size: 19px;
}

.article-content-single ul,
.article-content-single ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.article-content-single li {
    margin-bottom: 8px;
}

.article-content-single blockquote {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin: 15px 0;
    font-style: italic;
    color: var(--gray-color);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
}

.article-tag {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: var(--border-radius);
    font-size: 13px;
    transition: var(--transition);
}

.article-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.related-articles {
    margin: 30px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.article-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.article-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    margin: 0;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 12px;
}

.article-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.article-excerpt {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
    flex: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--gray-color);
}

.article-category {
    background-color: var(--light-gray);
    padding: 3px 8px;
    border-radius: var(--border-radius);
    color: var(--dark-color);
}

.article-read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.article-read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.article-read-more:hover i {
    transform: translateX(3px);
}

@media (max-width:480px) {
    .article-meta-single {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-date-single,
    .article-author {
        margin-bottom: 8px;
    }
}

.page-header {
    margin-bottom: 25px;
}

.page-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.page-header p {
    color: var(--gray-color);
    font-size: 15px;
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    background-color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.alphabet-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.alphabet-link:hover,
.alphabet-link.active {
    background-color: var(--primary-color);
    color: white;
}

.stores-section {
    margin: 25px 0;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.store-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.store-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.store-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    box-shadow: none;
}

.store-name {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--dark-color);
    flex: 1;
}

.categories-list {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-bottom: 25px;
}

.categories-list h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    color: var(--dark-color);
    transition: var(--transition);
    font-size: 14px;
}

.category-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.category-link i {
    margin-right: 8px;
    font-size: 14px;
}

@media (max-width:991px) {
    .stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:768px) {
    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width:480px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.promo-banner {
    transition: transform 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .promo-banner {
        margin: 15px 0;
        border-radius: 6px;
    }
}

.search-result-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.result-item-content {
    flex-grow: 1;
    margin-right: 1.5rem;
}

.result-item-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

.result-item-title a {
    text-decoration: none;
    color: inherit;
}

.result-item-title a:hover {
    color: #3b82f6;
}

.result-item-action {
    flex-shrink: 0;
}

.result-item-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background-color: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.result-item-button i {
    margin-left: 0.5rem;
}

.result-item-button:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
}

@media (max-width:768px) {
    .search-result-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .result-item-category {
        display: none;
    }

    .result-item-content {
        margin-right: 0;
        width: 100%;
    }

    .result-item-title {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }

    .result-item-meta {
        margin-bottom: 1rem;
    }

    .result-item-button {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width:480px) {
    .result-item-title {
        font-size: 1.15rem;
    }
}

.hero-articles {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    border-radius: var(--border-radius);
    margin: 0 0 25px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.hero-articles::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-articles::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 20%;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-articles-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-articles h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.hero-articles p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

@media(max-width:768px) {
    .hero-articles h1 {
        font-size: 24px;
    }

    .hero-articles p {
        font-size: 14px;
    }
}

.categories-section_all {
    margin: 25px 0;
}

.section-title_all {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 8px;
}

.section-title_all:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.categories-grid_all {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.category-card_all {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-card_all:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-icon_all {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(93, 105, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.category-info_all {
    flex: 1;
}

.category-name_all {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.category-count_all {
    font-size: 13px;
    color: var(--gray-color);
}

.category-count_all span {
    color: var(--primary-color);
    font-weight: 500;
}

.popular-stores_all {
    margin-top: 40px;
}

.stores-grid_all {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.store-card_all {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px;
    text-align: center;
    transition: var(--transition);
}

.store-card_all:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.store-logo_all {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.store-logo_all img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.store-name_all {
    font-size: 13px;
    font-weight: 500;
}

.empty-results {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    margin: 2rem auto;
    transition: var(--transition);
}

.empty-results:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.empty-results-icon {
    font-size: 3rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.empty-results-title {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.empty-results-text {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.empty-results-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.empty-results-button:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    color: white;
}

.category-header_shop {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin: 0 0 25px;
    display: flex;
    align-items: center;
}

.category-logo_shop {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.category-logo_shop img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    box-shadow: none;
}

.category-title_shop h1 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.category-description_shop {
    font-size: 0.9375rem;
    color: var(--gray-color);
}

@media(max-width:768px) {
    .category-header_shop {
        flex-direction: column;
        text-align: center;
    }

    .category-logo_shop {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .category-description_shop {
        max-width: 100%;
    }
}

.blog-section {
    margin: 0 0 25px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.article-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.article-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 12px;
}

.article-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.article-excerpt {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
    flex: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--gray-color);
}

.article-category {
    background-color: var(--light-gray);
    padding: 3px 8px;
    border-radius: var(--border-radius);
    color: var(--dark-color);
}

.article-read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.article-read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.article-read-more:hover i {
    transform: translateX(3px);
}

.single-article {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 20px;
}

.article-title-single {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.article-meta-single {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-color);
}

.article-date-single {
    margin-right: 15px;
}

.article-author {
    margin-right: 15px;
}

.article-category-single {
    background-color: var(--light-gray);
    padding: 3px 10px;
    border-radius: var(--border-radius);
    color: var(--dark-color);
}

.article-image-single {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-image-single img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content-single {
    line-height: 1.7;
    font-size: 15px;
}

.article-content-single p {
    margin-bottom: 15px;
}

.article-content-single h2,
.article-content-single h3 {
    margin: 20px 0 15px;
    color: var(--dark-color);
}

.article-content-single h2 {
    font-size: 22px;
}

.article-content-single h3 {
    font-size: 19px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
}

.article-tag {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: var(--border-radius);
    font-size: 13px;
    transition: var(--transition);
}

.article-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 0 15px;
}

.main-footer p {
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.footer-column {
    margin-bottom: 15px;
    padding: 0 10px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    color: white;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    margin: 0;
}

.footer-links ul,
.footer-links li {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
}

.footer-links li::before,
.footer-links li::after {
    content: none !important;
}

.footer-links {
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #adb5bd;
    transition: var(--transition);
    font-size: 13px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-light);
    transform: translateY(-3px);
}

@media(min-width:992px) {
    .search-form {
        order: 0;
        width: auto;
        flex: 1;
        max-width: 500px;
        margin: 0 20px;
        display: flex !important;
    }

    .nav-toggle {
        display: none;
    }
}

@media(max-width:991px) {
    .header-content {
        flex-direction: row;
        align-items: center;
    }

    .logo {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 12px;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 8px 0;
        margin-left: 0;
    }

    .coupons-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .content-with-sidebar {
        flex-direction: column;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .widget {
        margin-bottom: 0;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media(max-width:768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: inherit;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

table thead {
    background: linear-gradient(135deg, #4a6bff 0%, #2a4bdf 100%);
    color: white;
}

table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #eaeef5;
}

table tbody tr:nth-child(even) {
    background-color: #f8fafd;
}

table tbody tr:hover {
    background-color: #f0f4ff;
    transform: translateX(2px);
}

table td {
    padding: 12px 15px;
    font-size: 14px;
    color: #444;
    vertical-align: middle;
}

table td:first-child {
    font-weight: 500;
    color: #2c3e50;
}

table td.highlight {
    color: #e74c3c;
    font-weight: 600;
}

table .table-btn {
    padding: 6px 12px;
    background: linear-gradient(135deg, #4a6bff 0%, #2a4bdf 100%);
    color: white;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

table .table-btn:hover {
    background: linear-gradient(135deg, #3a5bef 0%, #1a3bcf 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width:768px) {
    table {
        border: 0;
        box-shadow: none;
    }

    table thead {
        display: none;
    }

    table tr {
        display: block;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid #eaeef5;
    }

    table td {
        display: block;
        position: relative;
        border-bottom: 1px solid #eaeef5;
    }

    table td:last-child {
        border-bottom: 0;
    }

    table td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        color: #2c3e50;
        text-align: left;
    }

    table .table-btn {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
}

.table-promocodes td {
    vertical-align: top;
}

.table-promocodes .promo-code {
    font-family: monospace;
    background: #f0f4ff;
    padding: 3px 8px;
    border-radius: 4px;
    color: #2a4bdf;
    font-weight: 600;
    font-size: 15px;
}

.coupon-links-block {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.coupon-link {
    margin: 0 0 10px 0;
}

.coupon-link__anchor {
    color: #2a5885;
    text-decoration: none;
    font-weight: bold;
}

.clouds_xsmall a {
    background-color: white;
  	border-radius: var(--border-radius);
  	box-shadow: var(--box-shadow);
  	padding: 20px;
  	transition: var(--transition);
  	display: flex;
  	align-items: center;
  	gap: 15px;
  	justify-content: center;
}

.box_in {
    margin-bottom: 25px;
}

.widget-list li {padding:0;}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  padding: 20px;
  margin: 0 auto;
}

.crypto-grid-item {
  background-color: white;
  border: 1px solid #ddd;
  padding: 10px 14px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  transition: 0.2s ease;
}

.crypto-grid-item:hover {
  background-color: #f0fdf4;
  border-color: #15a863;
  color: #15a863;
}