.container-fluid.top {
    background-color: #E6D086;
    border-bottom: 4px solid #CC0000;
}
body {
    background-color: #E5E5E5;
}
/* Exempel: ändra färg på primärknappar */
.btn-primary {
    background-color: #990000 !important;   /* din färg */
    border-color: #660033 !important;
}

/* Ändra navbar-länkar */
.navbar .nav-link {
    color: #990000;
}
.navbar-nav .nav-link {
  color: #990000 !important;                 /* samma färg som footern */
  padding-bottom: 2px;
  font-weight: bold;
}

.navbar-nav .nav-link:hover {
  color: #990000 !important;
}



h1, h2, h3, h4, h5, h6 {
    color: #990000;   /* valfri färg */
}

p {
  color: #900; /* valfri färg */
}
.my-card {
    background-color: transparent !important; /* gör hela kortet transparent */
    border:5px solid #1565C0;                  /* ram */
    border-radius: 12px;                     /* runda hörn */
}

.my-card .card-body {
    background-color: transparent !important; /* säkerställer att även body är transparent */
	 font-weight: bold;
	
}
.container-fluid.footer {
    background-color: #E6D086;
    border-top: 4px solid #CC0000;
    color: #990000;
}
.footer-links p {
  margin-bottom: 4px;        /* mindre avstånd mellan raderna */
}
.kontakt-lank {
  color: #990000 !important;     /* din färg */
  text-decoration: none;         /* ingen understrykning normalt */
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.kontakt-lank:hover {
  border-bottom: 2px solid #660033;  /* grövre linje vid hover */
  color: #900 !important;
}
.footer-links a {
  color: #990000 !important;
  text-decoration: none;
  border-bottom: 2px solid transparent; /* osynlig linje */
  padding-bottom: 2px;                  /* ger plats för linjen */
  transition: border-color 0.2s ease;
}

.footer-links a:hover {
  border-bottom: 2px solid #900;     /* GROV linje vid hover */
  color: #900!important;
}
.container-fluid.footer {
    font-weight: bold;
}
div p center {
    border-top: 5px solid #990000;
}
.navbar-nav.me-auto.mb-2.mb-lg-0 .nav-item.dropdown .nav-link.dropdown-toggle {
    font-weight: bold;
    font-size: larger;
}
.navbar-nav.me-auto.mb-2.mb-lg-0 .nav-item .nav-link.snipcart-checkout {
    font-weight: bold;
    font-size: larger;
}
.navbar-nav.me-auto.mb-2.mb-lg-0 .nav-item.dropdown .dropdown-menu {
    background-color: #DFC465;
    color: #CC0000;
    font-weight: bold;
    font-size: large;
}
.dropdown-menu li .dropdown-item {
    color: #660033;
    font-weight: bold;
    font-size: large;
}
.row .col-xxl-4 .card-body {
    color: #990000;
    background-color: rgba(0,0,0,0.01);
}
.row .col-xxl-4 .card.col-md-4.col-xxl-12 {
    background-color: #E5E5E5;
    border: 5px solid #1565C0;
    border-radius: 20px;
}
.container.line {
    background-color: #1565C0;
    border-radius: 15px;
    text-align: center;
    color: #E5E5E5;
}

.section-title {
    background-color: #1565C0;   /* blå */
    color: #E5E5E5;                /* vit text */
    text-align: center;          /* centrerad text */
    padding: 8px 20px;          /* luft runt texten */
    border-radius: 8px;          /* runda hörn (valfritt) */
    display: inline-block;       /* gör att bakgrunden följer texten */
    margin: 0 auto;              /* centrerar blocket i containern */
}
/* Generell typografi i varukorg/kassa */
.sniocart-cart, 
.sniocart-checkout {
    font-size: 1.1rem;
    line-height: 1.5;
}

.sniocart-cart table td,
.sniocart-cart table th {
    padding: 0.75rem 1rem;
}
/* Primär knapp */
.sniocart-btn-primary {
    background-color: #005bbb !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Hover */
.sniocart-btn-primary:hover {
    background-color: #004999 !important;
}
/* Produktnamn */
.sniocart-cart .product-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
}

/* Pris */
.sniocart-cart .product-price {
    font-size: 1.1rem;
    color: #000;
}
/* Totalsumma */
.sniocart-cart .cart-total,
.sniocart-checkout .order-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
}
/* Sektioner */
.sniocart-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Understrykning */
.under {
  text-decoration: underline;
  cursor: default;
}

/* Kraftigare tooltip */
.tooltip-inner {
  font-size: 1.05rem;        /* större text */
  font-weight: 600;          /* kraftigare */
  padding: 8px 12px;         /* mer luft */
  background-color: #222;    /* mörkare bakgrund */
  color: #fff;               /* tydlig text */
  border-radius: 6px;        /* lite mjukare form */
}

/* Tooltip-pilen */
.tooltip.bs-tooltip-auto .tooltip-arrow::before,
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #222;    /* matchar bakgrunden */
}


