/* ═══════════════════════════════════════════════════════
   ULTRAMENT CI — EBAY TEMPLATE CSS
   Primärfarbe: var(--g-dark) (Dunkelgrün)
   Akzent:      var(--g-main)
   Hell:        var(--g-light)
═══════════════════════════════════════════════════════ */

:root {
  --g-dark:   #800000;
  --g-main:   #d50b1e;
  --g-mid:    #333333;
  --g-light:  #f7f7f7;
  --g-light2: #fafafa;
  --g-bg:     #fcfcfc;
  --g-border: #e6e6e6;
  --g-text:   #380b09;
  --g-muted:  #953737;
  --g-white:  #ffffff;
}

/* ── RESET & BASE ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #404040;
  font-family: 'Muli', sans-serif;
  background: var(--g-bg);
}

a {
  color: var(--g-main);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

/* ── WRAPPER ── */
#wrapper {
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  font-family: 'Muli', sans-serif;
  background: #fff;
}

.clearer {
  clear: both;
}

/* ── HEADER ── */
.header {
  background: #fff;
  padding: 0 40px 0 0;
  border-bottom: 3px solid var(--g-main);
  border-top: 3px solid var(--g-main);
  margin-bottom: 0;
  overflow: hidden;
}

.logoContainer {
  margin-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logoContainer img {
  max-width: 280px;
  max-height: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.logoContainer a {
  color: var(--g-main);
}

.headerAbout {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 0;
  float: none;
}

.headerAbout a {
  float: none;
  padding: 7px 14px;
  font-size: 13px;
  color: #404040;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 5px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.15s;
}

.headerAbout a:hover {
  background: var(--g-light);
  border-color: var(--g-border);
  color: var(--g-main);
  text-decoration: none;
}

/* ── NAVIGATION ── */
.navigationContainer {
  display: none;
}

/* ── UPPER BODY ── */
.upperBody {
  padding: 30px 40px 0 40px;
}

/* ── GALERIE ── */
.galleryAndShortdescriptionContainer {
  overflow: hidden;
  margin-bottom: 10px;
}

.gallery {
  width: 44%;
  margin-right: 4%;
  float: left;
  position: relative;
  padding-top: 420px;
  text-align: center;
}

.bigPic {
  position: absolute;
  display: block;
  top: 0;
  left: 12.5%;
  width: 75%;
  height: 400px;
  text-align: center;
  opacity: 0;
  border: 1px solid var(--g-border);
  border-radius: 8px;
  transition: opacity 0.4s;
  margin: 0;
  z-index: -99;
}

.bigPic img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  margin: auto;
  max-width: 92%;
  max-height: 92%;
  padding: 10px;
}

.gallery input[type=radio] {
  visibility: hidden;
  margin: 0; padding: 0;
  height: 0; width: 0;
  position: absolute;
}

#big-pic-1:checked  ~ .bigPic:nth-of-type(1),
#big-pic-2:checked  ~ .bigPic:nth-of-type(2),
#big-pic-3:checked  ~ .bigPic:nth-of-type(3),
#big-pic-4:checked  ~ .bigPic:nth-of-type(4),
#big-pic-5:checked  ~ .bigPic:nth-of-type(5),
#big-pic-6:checked  ~ .bigPic:nth-of-type(6),
#big-pic-7:checked  ~ .bigPic:nth-of-type(7),
#big-pic-8:checked  ~ .bigPic:nth-of-type(8),
#big-pic-9:checked  ~ .bigPic:nth-of-type(9),
#big-pic-10:checked ~ .bigPic:nth-of-type(10),
#big-pic-11:checked ~ .bigPic:nth-of-type(11),
#big-pic-12:checked ~ .bigPic:nth-of-type(12) {
  opacity: 1;
  display: block;
  z-index: 10;
}

.galleryThumb {
  position: relative;
  display: inline-block;
  margin-right: 2%;
  margin-left: 0;
  width: 22%;
  height: 90px;
  text-align: center;
  margin-bottom: 8px;
  transition: all 0.2s;
  border: 2px solid var(--g-border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--g-light);
}

.galleryThumb:hover {
  opacity: 0.85;
  cursor: pointer;
  border-color: var(--g-main);
}

.galleryThumb img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
}

/* ── ZOOM OVERLAY ── */
.overlay {
  background: rgba(0,0,0,0.75);
  position: fixed;
  width: 100%; height: 100%;
  top: 0; left: 0;
  z-index: 1000;
  display: none;
}

.zoom-bigPic {
  width: 70%;
  height: auto;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  padding: 2%;
  margin-top: 20px;
  border-radius: 8px;
}

.zoom-bigPic img {
  max-width: 100%;
  max-height: 600px;
}

.overlay a.close-text {
  margin-top: 20px;
  color: var(--g-main) !important;
  text-decoration: underline;
  font-size: 15px;
  clear: both;
  display: block;
  font-weight: normal;
}

.overlay a i {
  font-size: 36px;
  margin-bottom: 20px;
  z-index: 2000;
  float: right;
  color: var(--g-main) !important;
}

#zoompic-1:target,  #zoompic-2:target,  #zoompic-3:target,
#zoompic-4:target,  #zoompic-5:target,  #zoompic-6:target,
#zoompic-7:target,  #zoompic-8:target,  #zoompic-9:target,
#zoompic-10:target, #zoompic-11:target, #zoompic-12:target {
  display: block;
}

/* ── MIDDLE COLUMN ── */
.midColumn {
  float: left;
  width: 50%;
  padding-top: 10px;
}

.midColumn h1 {
  color: var(--g-main);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.45;
}

.shortdescription {
  float: left;
  width: 100%;
}

.shortdescription p,
.shortdescription ul,
.shortdescription li {
  color: #404040;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.shortdescription li {
  list-style: none;
  position: relative;
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid #f0ede8;
}

.shortdescription li:last-child {
  border-bottom: none;
}

.shortdescription li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g-main);
}

/* ── DESCRIPTION ── */
.description {
  border-top: 1px solid var(--g-border);
  margin: 40px 0 30px 0;
  padding-top: 0;
}

.description .tabContent {
  padding: 30px 0 10px 0;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  background: #fff;
  border: none;
}

/* ── TAB BAR ── */
.tabBar {
  padding-bottom: 50px;
  margin-top: 10px;
  clear: both;
}

#tab2, #tab3, #tab4, #tab5, #tab6 {
  display: none;
}

.tabBar input[type=radio] {
  visibility: hidden;
  margin: 0; padding: 0;
  height: 0; width: 0;
  position: absolute;
}

.tablinks {
  display: inline-block;
  margin-left: 0px;
  margin-right: -5px;
  padding: 0 28px;
  width: auto;
  height: 44px;
  line-height: 44px;
  background-color: var(--g-light2);
  color: var(--g-muted);
  opacity: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.15s;
  margin-bottom: 0;
  cursor: pointer;
  border: 1px solid var(--g-border);
  border-bottom: none;
}

.tablinks:hover {
  background-color: var(--g-border);
  color: var(--g-main);
  text-decoration: none;
}

#tab1-btn:checked + .tablinks,
#tab2-btn:checked + .tablinks,
#tab3-btn:checked + .tablinks {
  background-color: var(--g-main);
  color: #fff;
  border-color: var(--g-main);
}

#tab1-btn:checked ~ #tab1 { display: block; }
#tab1-btn:checked ~ #tab2,
#tab1-btn:checked ~ #tab3 { display: none; }

#tab2-btn:checked ~ #tab2 { display: block; }
#tab2-btn:checked ~ #tab1,
#tab2-btn:checked ~ #tab3 { display: none; }

#tab3-btn:checked ~ #tab3 { display: block; }
#tab3-btn:checked ~ #tab1,
#tab3-btn:checked ~ #tab2 { display: none; }

.tabContent {
  clear: both;
  text-align: left;
  overflow: auto;
  font-size: 14px;
  line-height: 1.8;
  padding: 28px 24px;
  background: var(--g-light);
  border: 1px solid var(--g-border);
}

.tabContent h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--g-main);
  margin-bottom: 14px;
}

.tabContent h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--g-text);
  margin: 16px 0 6px;
}

.tabContent p {
  margin: 0 0 8px 0;
  color: #555;
}

.tabContent img {
  max-width: 100%;
}

/* ── CROSS SELL ── */
.crossSellerContainer {
  clear: both;
  margin-top: 25px;
  margin-bottom: 40px;
  width: 100%;
  text-align: left;
}

.crossSellerContainerHeading {
  padding: 0;
  border-bottom: 2px solid var(--g-border);
  margin-bottom: 20px;
  font-size: 14px;
}

.crossSellerContainer h1 {
  position: relative;
  top: 2px;
  display: inline-block;
  margin: 0;
  padding: 0 0 12px 0;
  border-bottom: 3px solid var(--g-main);
  color: var(--g-main);
  font-weight: 700;
  font-size: 20px;
}

.cs-flex {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.crossSellerItem {
  flex: 1;
  overflow: hidden;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--g-border);
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  min-height: 280px;
}

.crossSellerItem:hover {
  border-color: var(--g-main);
  transform: translateY(-2px);
}

.crossSellerContainer a:hover,
.crossSellerContainer a:visited,
.crossSellerContainer a {
  color: inherit;
  text-decoration: none;
}

.crossSellerItem:hover h3,
.crossSellerItem:hover p {
  color: var(--g-main);
}

.crossSellerItemImgContainer {
  position: relative;
  width: 100%;
  height: 160px;
  text-align: center;
  background: var(--g-light);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 12px;
}

.crossSellerItemImgContainer img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  transition: all 0.3s;
}

.crossSellerItem span {
  display: block;
  width: 100%;
  text-align: center;
}

.crossSellerItem h3 {
  margin: 0 0 6px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--g-text);
  line-height: 1.4;
  transition: color 0.2s;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.crossSellerItem p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--g-main);
  transition: color 0.2s;
}

/* ── FOOTER ── */
.footerContainer {
  background: var(--g-mid);
  margin: 0;
  padding: 50px 60px;
  overflow: auto;
  border-top: 4px solid var(--g-mid);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footerColumn {
  margin-top: 0;
  text-align: left;
  min-width: 160px;
}

.footerColumn p {
  margin: 0 0 8px 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}

.footerColumn img {
  display: inline-block;
  border-radius: 6px;
}

.footerColumn a,
.footerColumn span {
  font-weight: 400;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.15s;
}

.footerColumn a:hover {
  color: #fff;
  text-decoration: none;
}

.footerRow {
  margin-bottom: 10px;
}

.footerRow i {
  font-size: 15px;
  opacity: 0.8;
  width: 16px;
  text-align: center;
}

.footerContainer .mb {
  margin-bottom: 16px;
}

.um-footer-logo {
  margin-bottom: 20px;
}

.um-footer-logo img {
  max-width: 160px;
  max-height: 55px;
}

.footerContainer h2 {
  margin: 0 0 16px 0;
  padding: 0 0 10px 0;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-pay-logos {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-pay-logos img {
  height: 30px;
  width: auto;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  padding: 6px 10px;
}

.footer-ship-logos {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.footer-ship-logos img {
  height: 30px;
  width: auto;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  padding: 6px 10px;
}

/* ── ANIMATIONS ── */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInRight {
  0%   { opacity: 0; transform: translateX(10px); }
  100% { opacity: 1; transform: translateX(0); }
}

.fadeInRight {
  animation-name: fadeInRight;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media only screen and (max-width: 1088px) {
  .gallery {
    display: block;
    float: none;
    margin: 0 auto;
    width: 70%;
    padding-top: 520px;
  }
  .bigPic { height: 500px; }
  .midColumn {
    float: none;
    width: 100%;
    margin-top: 30px;
    padding-top: 0;
  }
  .midColumn h1 { text-align: center; }
  .shortdescription { float: none; margin: 0 auto; width: 90%; }
  .crossSellerItem { width: 30%; }
  .footerContainer { padding: 30px 30px 40px 30px; }
}

@media only screen and (max-width: 830px) {
  .bigPic { height: 360px; }
  .gallery { padding-top: 380px; }
}

@media only screen and (max-width: 660px) {
  .upperBody { padding: 20px; }
  .headerAbout { display: none; }
  .gallery { width: 100%; }
  .tablinks {
    padding: 0 16px;
    font-size: 13px;
    height: 38px;
    line-height: 38px;
  }
  .crossSellerItem { display: block; margin: 20px auto; width: 85%; }
  .footerColumn { width: 100%; margin-bottom: 28px; }
  .footerContainer { margin: 0; padding: 28px 20px; flex-direction: column; align-items: center; }
}

@media only screen and (max-width: 480px) {
  .gallery { padding-top: 280px; }
  .bigPic { height: 260px; }
  .midColumn { width: 100%; }
  .shortdescription { width: 100%; }
}

@media only screen and (max-width: 350px) {
  .bigPic { height: 210px; }
}

@media only screen and (max-width: 660px) {
  .logoContainer, .logoHelper, .header img, #logoContainer { display: none; }
  .navigationContainer, ul.featurelist, .navigation, .navList, #navigation, .navbar, .header ul { display: none; }
  .galleryNav, .controls { display: none; }
  .rightColumn, .header { display: none; }
}

/* ── PlentyMarkets Editor Helper ── */
#ps_accountinformation { display: none; }