*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #e01c1c;
    --red-200: #b80101;
    --red-700: #660707;
    --black: #111111;
    --white: #ffffff;
    --gray-100: #f4f4f4;
    --gray-200: #e8e8e8;
    --gray-500: #888888;
    --gray-600: #666666;
    --gray-700: #444444;
    --font: 'Inter', sans-serif;
    --font-serif: 'Lora', Georgia, serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: var(--font);
    background: #f7f7f7;
    color: var(--black);
    font-size: 15px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
header {
  background: var(--black);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #222;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.logo-text {
  font-size: 19px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.4px;
}

.logo-text span {
  color: var(--red);
}

/* Search box */
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 7px;
  padding: 7px 12px;
  transition: border-color 0.15s;
}

.search-box:focus-within {
  border-color: #e01c1c;
}

.search-box i {
  color: #666;
  font-size: 13px;
}

.search-box input {
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  color: #ccc;
  width: 180px;
  font-family: inherit;
}

.search-box input::placeholder {
  color: #555;
}

/* Nav links */
header nav a {
  color: #bbb;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

header nav a:hover {
  color: #e01c1c;
}

header nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

/* Hamburger button — hidden on desktop */
.menu-toggle {
  display: none;
  background: #e01c1c;
  border: none;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* HERO */
.hero {
    width: 100%;
    height: auto;
}

.hero .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* MAIN */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 3rem 0;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.divider {
    height: 1px;
    background: var(--gray-200);
}

/* BRANDS — circles 256x256 display at 80px */
.brands-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.brand-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.15s, transform 0.15s;
    cursor: pointer;
    box-shadow: 0px 4px 6px var(--gray-200);
}

.brand-logo:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.brand-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.2s, opacity 0.2s;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-logo-text {
    font-size: 13px;
    font-weight: 600;
    color: #bbb;
    display: none;
    text-align: center;
}

/* COUPONS */
.home-coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1rem;
}

.home-coupons-grid .coupon {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    transition: transform 0.15s, border-color 0.15s;
}

.home-coupons-grid .coupon:hover {
    border-color: #ccc;
    box-shadow: 0px 4px 6px var(--gray-200);
}

.home-coupons-grid .coupon-top {
    background: var(--black);
    padding: 1rem 1.25rem;
}

.home-coupons-grid .coupon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

/* TYPE TAGS */
.home-coupons-grid .tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
}

.home-coupons-grid .tag-coupon {
    background: #e01c1c22;
    color: #ff6b6b;
    border: 1px solid #e01c1c55;
}

.home-coupons-grid .tag-deal {
    background: #1c7fe022;
    color: #5ab4ff;
    border: 1px solid #1c7fe055;
}

.home-coupons-grid .coupon-title {
    font-size: 16px;
    font-weight: 500;
    color: white;
    line-height: 1.4;
    min-height: 50px;
}

.home-coupons-grid .coupon-bottom {
    padding: 0.9rem 1.25rem;
}

.home-coupons-grid .coupon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.home-coupons-grid .coupon-off {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
}

/* BUTTONS */
.btn-get-code {
    display: block;
    width: 100%;
    padding: 9px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    border: none;
    letter-spacing: 0.02em;
    border: 1px dashed var(--red);
}

.btn-coupon {
    background: #fff5f5;
    color: var(--red);
    border: 1px dashed var(--red) !important;
}

.btn-coupon:hover {
    color: var(--red);
    text-decoration: none;
    background: #ffe5e5;
}

.btn-deal {
    background: var(--red);
    color: white;
}

.btn-deal:hover {
    background: #c01515;
}

/* FEATURED BLOGS */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.featured-main {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    transition: transform 0.15s;
}

.featured-main:hover {
    box-shadow: 0px 4px 6px var(--gray-200);
}

.featured-main-img {
    height: auto;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--gray-200);
}

.img-placeholder {
    font-size: 13px;
    color: #ccc;
    letter-spacing: 0.05em;
}

.featured-main-body {
    padding: 1.4rem;
}

.blog-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.featured-title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    cursor: pointer;
}

.featured-title:hover {
    color: var(--red);
}

.featured-excerpt {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 12px;
}


.show-more {
    margin: 12px 0px 0px;
    display: flex;
    justify-content: center;
}

.show-more a {
    background-color: var(--red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* BLOGS PAGE STYLING */

/* PAGE HEADER */
.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.page-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.5px;
}

.page-title span {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    margin-left: 10px;
    letter-spacing: 0;
}

/* GRID */
.blogs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2.5rem 5rem;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

/* CARD */
.blog-card {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: white;
    transition: transform 0.15s, border-color 0.15s;
    cursor: pointer;
}

.blog-card:hover {
    box-shadow: 0px 4px 6px var(--gray-200);
}

.blog-img {
    height: 180px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.03);
}

.blog-card:hover .blog-headline {
    color: var(--red);
}

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ccc;
    letter-spacing: 0.05em;
}

.blog-body {
    padding: 1.1rem 1.25rem 1.25rem;
}

.blog-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.blog-headline {
    display: block;
    min-height: 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.1;
    margin: 4px 0 12px;
    letter-spacing: -0.2px;
    cursor: pointer;
}

.blog-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-meta {
    font-size: 12px;
    color: #bbb;
}

.read-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.15s;
}

.blog-card:hover .read-more {
    gap: 7px;
}

.read-more svg {
    width: 12px;
    height: 12px;
}

/* BLOGS ARTICLE PAGE STYLING */

/* HERO IMAGE */
.blog-hero {
    width: 100%;
    height: 600px;
}

.blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 01;
}

/* Placeholder gradient when no image */
.blog-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 50%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-overlay {
    color: var(--black);
    display: flex;
    align-items: flex-end;
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 2.5rem 2rem;
}

.blog-cat-badge {
    display: inline-block;
    background: var(--red);
    color: var(--gray-100);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.blog-hero-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

.blog-hero-meta strong {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

/* ARTICLE LAYOUT */
.article-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0rem 2rem 3rem;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 2.5rem;
}

.breadcrumb a {
    color: #aaa;
    transition: color 0.15s;
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb-sep {
    color: #ddd;
}

/* ARTICLE BODY */
.article-body {
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.85;
    color: #222;
}

.article-body .lead {
    font-size: 19px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.article-body p {
    margin-bottom: 1.6rem;
}

.article-body h2 {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.3px;
}

.article-body h3 {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    margin: 2rem 0 0.75rem;
}

.article-body ul,
.article-body ol {
    margin: 0 0 1.6rem 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    font-weight: 600;
    color: var(--black);
}

.article-body a {
    font-weight: 600;
    color: var(--red);
}

/* PULL QUOTE */
.pull-quote {
    border-left: 3px solid var(--red);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: white;
    border-radius: 0 8px 8px 0;
}

.pull-quote p {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* TIP BOX */
.tip-box {
    background: white;
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--red);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-family: var(--font);
    font-size: 14px;
}

.tip-box-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.tip-box p {
    font-family: var(--font);
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

/* DIVIDER */
.article-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 2.5rem 0;
}

/* AUTHOR */
.author-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-top: 3rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.author-name {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.author-bio {
    font-family: var(--font);
    font-size: 13px;
    color: #888;
    margin-top: 3px;
    line-height: 1.5;
}

/* BACK LINK */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    font-family: var(--font);
    margin-bottom: 2rem;
    transition: color 0.15s;
}

.back-link:hover {
    color: var(--red);
}

.back-link svg {
    width: 14px;
    height: 14px;
}

/* PROMOTIONAL PAGE STYLING */

/* PAGE INTRO */
.page-intro {
    background: var(--black);
    padding: 3rem 2.5rem 2.5rem;
    text-align: center;
}

.page-intro h1 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.6px;
    margin-bottom: 0.4rem;
    font-family: var(--font-serif);
}

.page-intro h1 span {
    color: var(--red);
}

.page-intro p {
    font-size: 14px;
    color: #777;
    margin-bottom: 1.75rem;
}

/* SEARCH */
.search-wrap {
    max-width: 540px;
    margin: 0 auto;
    position: relative;
}

.search-wrap input {
    width: 100%;
    padding: 14px 52px 14px 18px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-family: var(--font);
    color: var(--black);
    background: white;
    outline: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.search-wrap input::placeholder {
    color: #aaa;
}

.search-wrap button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red);
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}

.search-wrap button:hover {
    background: #c01515;
}

.search-wrap button svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
}

/* MAIN GRID */
.coupons-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2.5rem 5rem;
}

.coupons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* COUPON CARD — split design */
.coupon-card {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--gray-200);
    transition: transform 0.15s, box-shadow 0.15s;
    margin-bottom: 1rem;
    position: relative;
}

.coupon-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* LEFT STRIP */
.coupon-strip {
    width: 7px;
    flex-shrink: 0;
    background: var(--red);
}

.coupon-strip.deal {
    background: #1a7fe0;
}

.coupon-strip.expired-strip {
    background: #ccc;
}

/* LEFT BLOCK — discount */
.coupon-left {
    width: 110px;
    min-width: 110px;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.75rem;
    text-align: center;
    position: relative;
}

/* notch cutouts */
.coupon-left::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #f2f2f2;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    z-index: 2;
}

.coupon-off {
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
    letter-spacing: -1px;
}

.coupon-off-label {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* TYPE TAG on left block */
.type-tag {
    margin-top: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
}

.type-tag.coupon-tag {
    background: #e01c1c22;
    color: #ff6b6b;
    border: 1px solid #e01c1c44;
}

.type-tag.deal-tag {
    background: #1a7fe022;
    color: #5ab4ff;
    border: 1px solid #1a7fe044;
}

.type-tag.exp-tag {
    background: #eee;
    color: #aaa;
    border: 1px solid #ddd;
}

/* RIGHT BLOCK — details */
.coupon-right {
    flex: 1;
    padding: 1.1rem 1.25rem 1.1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coupon-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.coupon-brand {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

.coupon-expiry {
    font-size: 11px;
    color: #bbb;
}

.coupon-expiry span {
    color: var(--red);
    font-weight: 500;
}

.coupon-expiry.expired-date span {
    color: #bbb;
}

.coupon-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 12px;
}

.coupon-btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
    align-self: flex-start;
    letter-spacing: 0.02em;
}

.btn-expired {
    background: #f0f0f0;
    color: #bbb;
    border: 1px solid #e0e0e0;
    cursor: default;
}

/* STORES PAGE STYLING */
/* STORE HEADER BANNER */
.store-banner {
    background: var(--black);
    padding: 2.5rem;
    border-bottom: 1px solid #1e1e1e;
}

.store-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.store-logo-wrap {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.store-logo-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.store-info {
    flex: 1
}

.store-info h1 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.4px;
    margin-bottom: 5px;
}

.store-info p {
    font-size: 13px;
    color: #888;
    max-width: 560px;
    line-height: 1.6;
}

.store-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 10px;
}

.store-meta-item {
    font-size: 12px;
    color: #666;
}

.store-meta-item strong {
    color: #bbb;
    font-weight: 600;
}

.store-visit-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.store-visit-btn:hover {
    background: #c01515;
}

.store-visit-btn svg {
    width: 14px;
    height: 14px;
    stroke: white;
    fill: none;
}

/* BREADCRUMB */
.breadcrumb-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #aaa;
}

.breadcrumb-bar a {
    color: #aaa;
    transition: color 0.15s;
}

.breadcrumb-bar a:hover {
    color: var(--red);
}

.breadcrumb-bar span {
    color: #ddd;
}

/* LAYOUT */
.page-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.75rem 2.5rem 5rem;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 2rem;
    align-items: start;
}

/* SECTION LABEL */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.section-label .count {
    font-size: 11px;
    font-weight: 600;
    background: var(--red);
    color: white;
    padding: 1px 7px;
    border-radius: 20px;
    letter-spacing: 0;
    text-transform: none;
}

.section-label .count.expired-count {
    background: #ccc;
    color: #666;
}

.sidebar-box {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.related-store {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.15s;
    cursor: pointer;
}

.related-store:last-child {
    border-bottom: none;
}

.related-store:hover {
    background: #fafafa;
}

.related-store-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-store-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.related-store-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
}

.related-store:hover .related-store-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.related-store-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.related-store-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #ccc;
    fill: none;
    transition: stroke 0.15s;
}

.related-store:hover .related-store-arrow svg {
    stroke: var(--red);
}

/* HERO */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 50%, #111 100%);
    display: flex;
    justify-content: center;
    padding: 4.5rem 2.5rem 3.5rem;
    border-bottom: 1px solid #1a1a1a;
}

.page-hero-inner {
    max-width: 680px;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.1rem;
}

.page-hero p {
    font-size: 16px;
    color: #888;
    line-height: 1.75;
    max-width: 560px;
}

/* MAIN */
.page-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem 5rem;
}

/* PROSE */
.prose {
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.85;
}

.prose p {
    margin-bottom: 1.4rem;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose strong {
    color: var(--black);
    font-weight: 600;
}

.prose a {
    color: var(--red);
    border-bottom: 1px solid #f5c0c0;
    transition: border-color 0.15s;
}

.prose a:hover {
    border-color: var(--red);
}

/* SECTION HEADING */
.section-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.1rem;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: var(--gray-200);
    margin: 3rem 0;
}

/* HIGHLIGHT QUOTE */
.highlight {
    border-left: 3px solid var(--red);
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.highlight p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    color: #333;
    line-height: 1.65;
    margin: 0;
}

/* CONTACT */
.contact-block {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-block p {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

.contact-btn {
    flex-shrink: 0;
    background: var(--red);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 7px;
    transition: background 0.15s;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #c01515;
}

/* CONTENT */
.imprint-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem 6rem;
}

.imprint-wrap h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.updated {
    font-size: 13px;
    color: #aaa;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.imprint-section {
    margin-bottom: 2.25rem;
}

.imprint-section h2 {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.imprint-section p,
.imprint-section address {
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    font-style: normal;
}

.imprint-section a {
    color: var(--red);
    border-bottom: 1px solid #f5c0c0;
    transition: border-color 0.15s;
}

.imprint-section a:hover {
    border-color: var(--red);
}

.imprint-section strong {
    color: var(--black);
    font-weight: 600;
}

/* LAYOUT */
.contact-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2.5rem 5rem;
}

/* FORM */
.form-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem 2.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 7px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--black);
    background: #fafafa;
    outline: none;
    transition: border-color 0.15s, background 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--red);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 0.25rem;
}

.submit-btn:hover {
    background: #c01515;
}

/* SUCCESS MSG */
.success-msg {
    display: none;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 7px;
    padding: 12px 16px;
    font-size: 13px;
    color: #166534;
    margin-top: 1rem;
    text-align: center;
}

/* SIDEBAR INFO */
.info-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.info-item {
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--red);
    fill: none;
}

.info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 3px;
}

.info-value {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.info-value a {
    color: var(--red);
}

.info-value a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background: var(--black);
    margin-top: 2rem;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid #222;
}

.footer-links {
    display: flex;
    gap: 1.75rem;
}

.footer-links a {
    color: #777;
    font-size: 13px;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-copy {
    font-size: 12px;
    color: #444;
}

.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.5;
    border: 1px solid transparent;
}

.alert-info {
    background: #eef6ff;
    border-color: #cfe2ff;
    color: #084298;
}

.alert-success {
    background: #edfdf3;
    border-color: #badbcc;
    color: #0f5132;
}

.alert-warning {
    background: #fff8e6;
    border-color: #ffe69c;
    color: #664d03;
}

.alert-danger {
    background: #fdeeee;
    border-color: #f5c2c7;
    color: #842029;
}

/* RESPONSIVE */

@media (max-width: 860px) {
    .coupons-grid {
        grid-template-columns: 1fr;
    }

    .page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-box {
        display: flex;
        flex-wrap: wrap;
    }

    .sidebar-heading {
        width: 100%;
    }

    .related-store {
        width: 50%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 1.25rem;
        position: relative;
        /* so dropdown sits below */
    }

    .menu-toggle {
        display: flex;
    }

    /* Nav collapses into a dropdown */
    header nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #111;
        border-top: 1px solid #1e1e1e;
        border-bottom: 1px solid #1e1e1e;
        padding: 1rem 1.25rem;
        z-index: 99;
    }

    header nav.open {
        display: flex;
    }

    /* Search full width on mobile */
    .search-box {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .search-box input {
        width: 100%;
    }

    header nav a {
        padding: 10px 0;
        border-bottom: 1px solid #1e1e1e;
        font-size: 15px;
    }

    header nav a:last-child {
        border-bottom: none;
    }

    main {
        padding: 0 1.25rem;
    }

    .brand-logo {
        width: 64px;
        height: 64px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .page-header,
    .blogs-wrapper {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .blogs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-hero {
        height: 320px;
    }

    .blog-hero-title {
        font-size: 26px;
    }

    .article-wrapper {
        padding: 2rem 1.25rem 4rem;
    }

    .article-body {
        font-size: 16px;
    }

    .coupons-wrapper {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .store-banner {
        padding: 1.5rem 1.25rem;
    }

    .store-banner-inner {
        flex-wrap: wrap;
    }

    .breadcrumb-bar,
    .page-layout {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .coupon-left {
        width: 80px;
        min-width: 80px;
    }

    .coupon-off {
        font-size: 20px;
    }

    .page-hero {
        padding: 3rem 1.25rem 2.5rem;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-wrap {
        padding: 2.5rem 1.25rem 4rem;
    }

    .contact-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .imprint-wrap {
        padding: 2.5rem 1.25rem 4rem;
    }

    footer {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}

.modal-backdrop.show {
    opacity: 0.6;
  }
 
  /* Modal dialog */
  .modal-dialog.modal-md {
    max-width: 440px;
    margin: 60px auto;
  }
 
  /* Modal box */
  .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
  }
 
  /* Close button */
  .modal-content > .close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 10;
    background: #1e1e1e;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #888;
    cursor: pointer;
    opacity: 1;
    line-height: 1;
    transition: background 0.15s, color 0.15s;
  }
  .modal-content > .close:hover {
    background: #2a2a2a;
    color: #fff;
  }
 
  /* Remove default modal-body padding */
  .modal-body {
    padding: 0;
  }
 
  /* Top section — store logo on dark bg */
  .c-dtl-w {
    background: #111;
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #1e1e1e;
  }
 
  .store-img {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #2a2a2a;
  }
 
  .store-img .c-c-img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
  }
 
  /* Bottom section — white bg */
  .c-d-bottom {
    background: white;
    padding: 1.5rem;
  }
 
  .go-store-web {
    text-align: center;
  }
 
  /* Discount badge */
  .off {
    display: inline-block;
    background: #fff0f0;
    color: #e01c1c;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
  }
 
  /* Offer title */
  .go-store-web .name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    letter-spacing: -0.2px;
  }
 
  /* Copy area */
  .copy-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
 
  /* Coupon code input */
  .copy-area .codeBox.form-control {
    border: 1.5px dashed #e01c1c;
    border-radius: 7px;
    background: #fff5f5;
    color: #e01c1c;
    font-size: 15px;
    font-weight: 700;
    font-family: monospace;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 10px;
    box-shadow: none;
    cursor: default;
  }
 
  /* Primary button */
  .copy-area .gt-btn.btn {
    display: block;
    width: 100%;
    background: #e01c1c;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 11px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .copy-area .gt-btn.btn:hover {
    background: #c01515;
    color: white;
  }
 
  /* Note text */
  .copy-area p {
    font-size: 12px !important;
    color: #bbb !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5;
  }