/*
  $Id$

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2010 osCommerce

  Released under the GNU General Public License
*/

:root {
  --bg: #ffffff;
  --surface: #f2f7ff;
  --surface-2: #e8f0ff;
  --primary: #1f64ff;
  --primary-2: #103ea8;
  --text: #152238;
  --muted: #66758f;
  --accent: #e53e4f;
  --border: #d7e4ff;
  --radius: 16px;
  --shadow: 0 12px 34px rgba(16, 62, 168, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  font: 18px/1.6 "Inter", "Segoe UI", Arial, sans-serif;
}
p{font-size: 18px;}

html,
body {
  min-width: 0 !important;
}

.container_24 {
  width: min(1280px, calc(100% - 30px)) !important;
}

#bodyWrapper.site-shell {
  width: min(1280px, calc(100% - 30px));
  margin: 0 auto 20px;
  padding: 0 6px 18px;
}

/* full-bleed top bar */
.topBar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #073b4c;
  color: #ffffff;
  font-size: 16px;
}


.topBarInner {
  width: min(1280px, calc(100% - 30px));
  margin: 0 auto;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT SIDE */
.topBarLeft {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topBarEmail {
  opacity: 0.9;
  font-weight: 500;
}

.topBarEmail a{
  color: white;
  font-size: 16px;
}

.topBarMsg {
  opacity: 0.7;
}

.topBarLeft{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:22px;
}

.topBarEmail,
.topBarPhone,
.topBarMessengers,
.topBarMsg{
    display:flex;
    align-items:center;
}

.topBarEmail a,
.topBarPhone a{
    color:#fff;
    text-decoration:none;
    margin-left:6px;
}

.topBarMessengers{
    gap:10px;
    margin-left:-5px;
}

.topBarMessengers img{
    width:20px;
    height:20px;
    transition:0.3s;
}

.topBarMessengers img:hover{
    transform:scale(1.12);
}

.topBarMsg{
    margin-left:10px;
    opacity:0.92;
}
/* RIGHT SIDE */
.topBarRight {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* FLAGS (MODERN BUTTON STYLE) */
.topBarFlags {
  display: flex;
  gap: 6px;
}

.flagLink {
  display: inline-flex;
  padding: 3px;
  border-radius: 6px;
  transition: 0.2s;
  background: rgba(255,255,255,0.08);
}

.flagLink:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.flagLink img {
  display: block;
  border-radius: 3px;
}

/* CONTACT BUTTON (IMPORTANT CTA) */
.contactLink {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: #d32f2f;
  transition: 0.2s;
}
/*category BOF*/
/* GRID */
.catPage .catGrid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:35px;
}

/* each category takes 2 columns = 3 per row */
.catPage .catItem{
    grid-column:span 2;
}

/* if last row has 2 items, center them */
.catPage .catItem:nth-last-child(2){
    grid-column:2 / span 2;
}

.catPage .catItem:nth-last-child(1){
    grid-column:4 / span 2;
}
/* CARD */
.catPage .catItem a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    background:#fff;
    border:1px solid #eadfcd;
    border-radius:16px;

    min-height:240px;
    padding:30px 20px;

    text-decoration:none;
    color:#4f331d;

    font-size:20px;
    font-weight:700;
    line-height:1.4;

    box-shadow:0 5px 18px rgba(0,0,0,.05);
    transition:all .35s ease;
}

/* IMAGE */
.catPage .catItem img{
    width:170px;
    height:110px;
    object-fit:cover;

    border-radius:12px;
    margin-bottom:25px;

    transition:.35s ease;
}

/* TITLE */
.catPage .catItem span{
    text-align:center;
}

/* HOVER */
.catPage .catItem a:hover{
    transform:translateY(-6px);
    background:#faf7f2;
    border-color:#caa56b;

    box-shadow:0 12px 28px rgba(0,0,0,.12);

    color:#8b5a22;
}

.catPage .catItem a:hover img{
    transform:scale(1.05);
}

/* MOBILE */
@media(max-width:768px){

    .catPage .catGrid{
            grid-template-columns:1fr;
        }

        .catPage .catItem,
        .catPage .catItem:nth-last-child(2),
        .catPage .catItem:nth-last-child(1){
            grid-column:auto;
        }

}

/*category EOF*/
.fiftypercent{ width: 49% !important; }

/* CREATE ACCOUNT PAGE */
#createAcctDefault,
.contentContainer{
    max-width:1200px;
    margin:0 auto;
}

.contentText form,
.contentText{
    font-size:16px;
}

/* SECTION HEADINGS */
.contentText h2,
.contentText .main{
    color:#153c9c;
}

/* FORM TABLE CLEANUP */
.contentText table{
    width:100%;
    border-collapse:separate;
    border-spacing:0 14px;
}

/* LABELS */
.contentText td{
    font-size:16px;
    color:#071b3a;
    vertical-align:middle;
}

/* INPUTS */
.contentText input[type="text"],
.contentText input[type="password"],
.contentText select{
    width:100%;
    max-width:360px;
    height:42px;
    padding:8px 12px;
    border:1px solid #ccd3df;
    border-radius:8px;
    background:#fff;
    font-size:15px;
    box-sizing:border-box;
}

/* FOCUS */
.contentText input[type="text"]:focus,
.contentText input[type="password"]:focus,
.contentText select:focus{
    border-color:#153c9c;
    outline:none;
    box-shadow:0 0 0 3px rgba(21,60,156,.12);
}

/* REQUIRED STAR */
.contentText td:last-child{
    color:#d71920;
    font-weight:bold;
}

/* CHECKBOX */
.contentText input[type="checkbox"]{
    width:16px;
    height:16px;
}

/* SECTION SPACING */
.contentText br{
    display:none;
}

/* BUTTONS */
.contentText input[type="submit"],
.contentText button,
.contentText .button{
    background:#153c9c;
    color:#fff !important;
    border:none;
    border-radius:8px;
    padding:12px 26px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contentText input[type="submit"]:hover,
.contentText button:hover,
.contentText .button:hover{
    background:#0b2b78;
}

/* MOBILE */
@media(max-width:768px){
    .contentText table,
    .contentText tbody,
    .contentText tr,
    .contentText td{
        display:block;
        width:100% !important;
    }

    .contentText input[type="text"],
    .contentText input[type="password"],
    .contentText select{
        max-width:100%;
    }
}
.contactLink:hover {
  background: #b71c1c;
}

#header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* TOP BAR */
.headerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  gap: 20px;
}

/* LOGO */
.logo img {
  height: 45px;
}

.logo a {
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Segoe UI', Arial, sans-serif;
  letter-spacing: 1px;
  color: #073b4c; /* matches your topbar */
  display: inline-block;
  transition: 0.3s ease;
}

/* highlight part */
.logo a span {
  color: #d32f2f; /* matches your nav */
}

/* subtle underline using your colors */
.logo a::after {
  content: '';
  display: block;
  width: 40%;
  height: 3px;
  margin-top: 4px;
  background: #d32f2f;
  transition: 0.3s;
}

/* hover */
.logo a:hover {
  color: #d32f2f;
  text-decoration: none;
}

.logo a:hover span {
  color: #073b4c;
}

.logo a:hover::after {
  width: 100%;
}

/* SEARCH */
.searchBox {
  flex: 1;
  max-width: 500px;
}

.searchBox form {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
  background: #f7f7f7;
}

.searchBox input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  background: transparent;
  outline: none;
}

.searchBox button {
  border: none;
  background: #d32f2f;
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
  transition: 0.2s;
}

.searchBox button:hover {
  background: #0056b3;
}

/* ICONS */
.headerIcons {
  display: flex;
  gap: 20px;
}

.iconLink {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
}

.iconLink span {
  margin-left: 5px;
}

.iconLink:hover {
  color: #007bff;
}

/* CART COUNT */
.cartCount {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* NAV BAR */
.mainNav, #header {
  overflow: visible !important;
}

.mainNav {
  background: #d32f2f;
  position: relative;
  z-index: 9999;
}

.mainNav > ul {
  display: flex;
   justify-content: space-between; /* spreads items */
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;


}

.mainNav li {
  position: relative;
  flex: 1;                 /* each item takes equal width */
   text-align: center;  
}

/* main links */
.mainNav > ul > li > a {
  display: block;
  padding: 8px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
}

/* dropdown hidden */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  z-index: 99999;

  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 0;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  flex-direction: row;
}
.dropdown li {
  list-style: none;
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  transition: 0.2s ease;
}
.dropdown li a:hover {
  background: #f9fafb;
  color: #dc2626;
  padding-left: 20px; /* subtle slide */
}
.dropdown li + li {
  border-top: 1px solid #f1f5f9;
}

/* SHOW ON HOVER */
.mainNav li:hover > .dropdown {
  display: flex;
}
.hero-banner {
    /* Replace 'URL_HERE' with the actual link to your image */
    background: linear-gradient(rgba(0, 32, 63, 0.7), rgba(0, 32, 63, 0.5)), 
                url('images/coins_banknotes.jpg'); 
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-bottom: 5px solid #b22222; /* Hint of Red (Firebrick) */
    padding: 0 20px;
  }

  .hero-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
  }

  .hero-banner p {
    font-size: 1.2rem;
-webkit-text-stroke: 1px #ffffff; /* White outline on all sides */    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }

  .cta-button {
    background-color: #d32f2f; /* Deep Red */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    border: 2px solid transparent;
  }

  .cta-button:hover {
    color: white;
    background-color: #b71c1c;
    border: 2px solid #ffffff;
  }

.breadcrumbWrap {
  margin-bottom: 11px;
  overflow: hidden;
  margin-left: 0;
}

.breadcrumbHeading {
  background: #073b4c;
  border: 1px solid #062f3c;
  color: #ffffff;
  font-weight: 300;
  padding: 5px 14px;
}
.breadcrumbHeading a{
  font-size: 0.8rem;
}
/* remove legacy left/right side columns layout */
#columnLeft,
#columnRight {
  display: none !important;
}
/* BASE BUTTON */
.ui-button {
  background: #d32f2f !important;
  border: 1px solid #b71c1c !important;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.2s ease;
}

/* TEXT */
.ui-button .ui-button-text {
  color: #ffffff !important;
}

/* ICON */
.ui-button .ui-icon {
  filter: brightness(0) invert(1); /* makes icon white */
}

/* HOVER */
.ui-button:hover {
  background: #b71c1c !important;
  border-color: #9a0007 !important;
}

/* ACTIVE / CLICK */
.ui-button:active {
  background: #8e0000 !important;
  transform: scale(0.98);
}

/* DISABLED */
.ui-button.ui-state-disabled,
.ui-button:disabled {
  background: #f2a5a5 !important;
  border-color: #f2a5a5 !important;
  cursor: not-allowed;
}
div[id^='columnLeft'],
div[id^='columnRight'],
.boxesColumnLeft,
.boxesColumnRight,
.columnLeft,
.columnRight {
  display: none !important;
}

#bodyContent,
#bodyContent[class*='push_'] {
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  margin: 0 !important;
  float: none !important;
}

.contentContainer {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  color: #073b4c;
  margin-bottom: 15px;
}
.contentContainer {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/*h1,
.contentContainer h2,
TD.pageHeading,
DIV.pageHeading {
  margin-top: 0;
  color: var(--primary-2);
  text-decoration: none;
}*/

a {
  color: var(--primary-2);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}
h1 {
  font-size: 30px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #dc2626;
  margin-top: 6px;
  border-radius: 2px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1e40af;
  margin: 25px 0 15px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #ef4444;
  margin-top: 5px;
}

.heroWelcome {
  background: #fdfaf6;
  border: 1px solid #f1e6d6;
  padding: 30px 35px;
  border-radius: 14px;
  margin-bottom: 25px;
}

.heroWelcome h1 {
  font-size: 28px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.heroText {
  font-size: 15px;
  color: #6b7280;
}

.heroText a {
  color: #b45309;
  font-weight: 500;
  text-decoration: none;
}

.heroText a:hover {
  text-decoration: underline;
}

.sectionHeader h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0 15px;
  color: #374151;
}

/* GRID */
.productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

/* CARD */
.productCard {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.25s ease;
}

.productCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.productCard img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.productInfo {
  padding: 14px;
}

.productTitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.4;
}

.productTitle:hover {
  color: #b45309;
}

.productPrice {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.productMeta {
  font-size: 13px;
  color: #6b7280;
}

.productListTable {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.productListTable td,
.productListTable th {
  padding: 11px 9px;
}

.productListTable tr.alt td {
  background: #edf3ff;
}

TR.headerError,
TD.headerError {
  color: #fff;
  background: var(--accent);
}

TR.headerInfo,
TD.headerInfo {
  color: #fff;
  background: var(--primary);
}

.siteFooter {
  background: #0f172a; /* dark navy */
  color: #cbd5e1;
  margin-top: 40px;
  padding-top: 30px;
}

/* keep content aligned with your site width */
.footerInner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

/* LINKS */
.footerLinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footerLinks a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: 0.3s;

}

/* HOVER (your red accent) */
.footerLinks a:hover {
  color: #ef4444;
}

/* COPYRIGHT */
.footerBottom {
  text-align: center;
  font-size: 13px;
  padding: 15px 0 20px;
  color: #94a3b8;
}
.footerBottom a{
  color: white;
}
/*.footer {
  margin-top: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 12px;
}
*/
.footerBanner {
  text-align: center;
  padding: 10px 0 16px;
}

#piGal { float: right; width: 280px; }
#piGal img { max-width: 100%; height: auto; }

@media (max-width: 1024px) {
  #bodyWrapper.site-shell,
  .topBarInner {
    width: calc(100% - 14px);
  }

  .headerInner,
  .topBarInner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  #headerShortcuts,
  .mainNavList {
    justify-content: center;
  }

  .homeHero {
    min-height: 320px;
  }

  .homeHeroImage {
    min-height: 320px;
  }

  .homeHeroContent {
    left: 18px;
    right: 18px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  body,
  table,
  p,
  .contentText,
  .ui-widget {
    font-size: 13px;
  }

  #headerShortcuts .ui-button,
  .heroActions .ui-button,
  .mainNavList li {
    width: 100%;
  }

  .mainNavList li a {
    text-align: center;
  }

  .homeHero {
    min-height: 280px;
  }

  .homeHeroImage {
    min-height: 280px;
  }
}
