/* =====================================================
   Cornerstone Brands Vendor Portal — Shared Styles
   Style Guide 2026
   ===================================================== */

/* --- CSS Variables (brand overrideable) --- */
:root {
  --brand-primary:   #00609C;  /* Cornerstone Blue */
  --brand-dark:      #003556;  /* Navy */
  --brand-mid:       #7BA5C0;  /* Gray Blue */
  --brand-light:     #AED1EB;  /* Sky Blue */
  --brand-accent:    #00609C;  /* accent bar / section headers */
  --brand-accent-text: #003556;
  --brand-link:      #00609C;
  --brand-link-hover: #003556;
  --brand-nav-bg:    #f0f5fa;
  --brand-nav-hover: #deeaf5;
  --body-text:       #333333;
  --muted-text:      #637989;/*#666666;*/
  --border-color:    #e0e0e0;
  --bg-page:         #f4f5f6;
  --bg-content:      #ffffff;
  --bg-sidebar:      #f8f9fa;
  --section-stripe:  #f8f9fa;
}

/* --- Reset --- */
header, footer, section, main, nav, article, aside, figure { display: block; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Aptos', Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  color: var(--body-text);
  background: var(--bg-page);
  line-height: 1.65;
}
a { color: var(--brand-link); text-decoration: none; }
a:hover { color: var(--brand-link-hover); text-decoration: underline; }
img { max-width: 100%; height: auto;}

/* --- Page wrapper --- */
html, body { height: 100%; }
.page-wrapper {
  width: 100%;
  background: #00B0F0;
  display: flex;
  flex-direction: column;
}

/* =====================================================
   HEADER
   ===================================================== */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 32px 16px;
  gap: 24px;
}
.header-logo-area {
  display: flex;
  flex-direction: column;
}
.header-site-name {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.header-inner img {
  margin-left: 0;
}

/* =====================================================
   LAYOUT: MAIN
   ===================================================== */
.content-area {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
}

.main-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  padding-left: 140px;
  padding-right: 140px;
  min-width: 0;
}
/* =====================================================
   PAGE HEADING
   ===================================================== */
.page-heading {
  margin-bottom: 22px;
}
.page-heading h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.25;
}
.page-heading p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted-text);
}

/* =====================================================
   SECTION BLOCKS
   ===================================================== */
.section-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-accent-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* =====================================================
   DOCUMENT LINK LISTS
   ===================================================== */
.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.doc-list li {
  margin-left: 18px;
  position: relative;
  font-size: 13px;
  padding: 2px 0 2px 0px;
}
.doc-list {
    list-style: disc;
}

.doc-list li:last-child {
  border-bottom: none;
}

/* =====================================================
   HOME PAGE NAV CARDS
   ===================================================== */
.nav-intro {
  font-size: 16px;
  margin-bottom: 16px;
  color: #000000;
}
.nav-cards {
  margin-bottom: 28px;
}
.nav-cards ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-cards li {
	margin: 0 0 8px 0;
	list-style: disc;
}

.nav-cards a {
	color: #000000;
}
.nav-card {
  display: block;
  width: 100%;
  align-items: center;
  padding: 10px;
  font-size: 14px;
  transition: background 0.15s;
  border-radius: 0 3px 3px 0;
}
.nav-card:hover {
  background: #0F9ED5;
  text-decoration: none;
}

/* =====================================================
   TABLES
   ===================================================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 10px 0 16px;
}
.data-table thead th {
  background: var(--brand-dark);
  color: #ffffff;
  padding: 9px 14px;
  text-align: left;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.data-table tbody td {
  padding: 8px 14px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.data-table tbody tr:nth-child(even) td { background: #f8f9fa; }
.data-table tbody td a { font-size: 13px; }

/* Address grid */
.address-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
	margin: 12px 0;
}
.address-card {
  background: #f8f9fa;
  border: 1px solid var(--border-color);
  border-top: 3px solid #00609C;
  border-top: 3px solid var(--brand-accent);
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.7;
  margin: 10px;
}
.address-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}
.style7 {
  color: var(--brand-accent-text);
  font-weight: bold;
}


/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  font-size: 12px;
  line-height: 1.8;
  margin-top: auto;
  background: #00B0F0;
  color: #FFFFFF;
  padding-left: 140px;
  position: relative;
}
.site-footer a {color: #FFFFFF; text-decoration: underline;}
.site-footer a:hover { color: #ffffff; text-decoration: underline; }
.footer-inner {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.cornerstone-brands {
	background-color: #4F5871;
	border-top: 4px solid #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.brand-grid {
    display: -ms-flexbox;
    display: flex;

    -ms-flex-align: center;
    align-items: center;

    -ms-flex-pack: center;
    justify-content: center;

    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.brand-card {
    width: 250px;
    text-align: center;

    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
}
.brand-logo img {
    max-width: 100px;
    width: 90px;
    height: 30px;
}
.brand-logo {
	margin: 10px;
}
.sep {
    width: 1px;
    height: 40px;
    background: #999;

    -ms-flex: 0 0 1px;
    flex: 0 0 1px;
}

.description-section {
    min-height: 200px; /* adjust height as needed */
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
}

.description-content {
    max-width: 1200px;
    text-align: center;
    line-height: 1.5;
    color: #1d2b3c;
	padding: 0px 70px;
}

.header-logo-area {
	background: #0F9ED5;
	padding: 5px 160px 5px;
	border: 1px solid #FFFFFF;
	border-top: 4px solid #FFFFFF;
}
.header-site-name {
	font-size: 30px;
}
.hero-banner {
  position: relative;
  width: 100%;
  height: 260px;
  background-image: url("https://www.qvcgrp.com/wp-content/uploads/2026/02/D057_503480_CBI-Hero-scaled.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 10px;
}

/* light semi-transparent overlay to wash out the photo */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.55); /* controls the "faded/washed" look */
}

.hero-logo {
  position: relative; /* sits above the ::before overlay */
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.5px;
}
.hero-wrapper {
	background: #FFFFFF;
}
.section-heading{
	padding-left: 20px;
}
.section-heading h2 {
	font-size: 21px;
	color: #FFFFFF;
}
.doc-list li {
	padding: 0px;
}
.doc-list li a {
	color: #000000;
	text-decoration: underline;
	font-size: 16px;
}
.header-logo-area a:hover{
	text-decoration: none;
}
.header-logo-brand{
	justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 20px;
}