:root {
  --primary: #1E5631;
  --primary-dark: #153d23;
  --primary-light: #2a7a45;
  --gold: #D4AF37;
  --gold-light: #e4c45a;
  --gold-dark: #b8972e;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #666666;
  --gray-dark: #333333;
  --black: #111111;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --radius: 8px;
  --font-arabic: 'Segoe UI', Tahoma, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
  color: var(--gray-dark);
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
}
.section-title p {
  color: var(--gray);
  font-size: 18px;
  margin-top: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 86, 49, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* whatsapp float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* top bar */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar a { color: var(--gold); margin: 0 5px; }
.top-bar a:hover { color: var(--white); }
.top-bar .contact-info span { margin: 0 15px; }

/* header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  font-weight: bold;
}
.logo-text h1 {
  font-size: 20px;
  color: var(--primary);
  line-height: 1.2;
}
.logo-text span {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}
.logo-img {
  height: 55px;
  width: auto;
  border-radius: 8px;
}
.product-image img,
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
}
nav ul {
  display: flex;
  gap: 5px;
}
nav ul li a {
  padding: 8px 16px;
  color: var(--gray-dark);
  font-weight: 500;
  font-size: 15px;
  border-radius: 50px;
  position: relative;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--primary);
  color: var(--white);
}

.lang-toggle {
  background: var(--gold);
  color: var(--primary-dark);
  border: none;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition);
}
.lang-toggle:hover {
  background: var(--primary);
  color: var(--white);
}

/* hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(212,175,55,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.5;
}
.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
  font-weight: 800;
}
.hero h1 span { color: var(--gold); }
.hero .subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
}
.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.8;
  line-height: 1.9;
}
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* about section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image {
  background: var(--gray-light);
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-image .placeholder {
  color: var(--gray);
  font-size: 80px;
  opacity: 0.5;
}
.about-content h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 15px;
  color: var(--gray);
  line-height: 1.9;
}

/* products section */
.products-section { background: var(--gray-light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.product-image {
  height: 250px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 60px;
}
.product-info { padding: 25px; }
.product-info h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}
.product-info p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 15px;
}
.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.product-sizes span {
  background: var(--gray-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--gray-dark);
}
.product-card .btn { width: 100%; }

/* why us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid var(--gold);
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary-dark);
}
.feature-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--gray);
  font-size: 15px;
}

/* industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.industry-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
}
.industry-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.industry-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}
.industry-card h4 {
  font-size: 16px;
  color: var(--gray-dark);
}

/* stats */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.stat-item h3 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 16px;
  opacity: 0.9;
}

/* testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 60px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-card p {
  color: var(--gray);
  margin: 15px 0;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
}
.testimonial-author h5 {
  color: var(--primary);
  font-size: 16px;
}
.testimonial-author span {
  color: var(--gray);
  font-size: 13px;
}

/* partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  align-items: center;
}
.partner-item {
  height: 80px;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.partner-item:hover {
  background: var(--gold);
  color: var(--white);
}

/* contact section */
.contact-section { background: var(--gray-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-box h3 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-info-box .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-info-box .info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-box .info-text h5 { color: var(--primary); margin-bottom: 3px; }
.contact-info-box .info-text p { color: var(--gray); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--gray-dark);
  font-size: 14px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--gold);
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-col p { opacity: 0.8; line-height: 1.9; font-size: 15px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  opacity: 0.8;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { opacity: 1; color: var(--gold); padding-right: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  text-align: center;
  font-size: 15px;
  opacity: 0.7;
}

/* page banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 80px 0 60px;
}
.page-banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.page-banner p {
  font-size: 18px;
  opacity: 0.9;
}
.breadcrumb {
  margin-top: 15px;
  font-size: 14px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* about page */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.mv-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--gold);
}
.mv-card .mv-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 15px;
}
.mv-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
}
.mv-card p {
  color: var(--gray);
  line-height: 1.9;
}
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.value-item {
  text-align: center;
  padding: 25px;
  background: var(--gray-light);
  border-radius: var(--radius);
}
.value-item .v-icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 10px;
}
.value-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
}
.value-item p { color: var(--gray); font-size: 14px; }

/* faq */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}
.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  font-size: 17px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-light); }
.faq-question .faq-toggle {
  font-size: 20px;
  transition: var(--transition);
  color: var(--gold);
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}
.faq-answer p { color: var(--gray); line-height: 1.9; }

/* blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); }
.blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 40px;
}
.blog-content { padding: 25px; }
.blog-date {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-content h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}
.blog-content p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 15px;
}
.blog-content .btn { font-size: 14px; padding: 8px 20px; }

/* page content */
.page-content { padding: 60px 0; }
.page-content p { margin-bottom: 20px; color: var(--gray); line-height: 1.9; }
.page-content h2 {
  color: var(--primary);
  margin: 30px 0 15px;
  font-size: 28px;
}
.page-content h3 {
  color: var(--primary);
  margin: 25px 0 12px;
  font-size: 22px;
}
.page-content ul, .page-content ol { margin: 15px 0; padding-right: 25px; }
.page-content li { margin-bottom: 8px; }

/* products page */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}
.product-detail-grid:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.product-detail-image {
  height: 350px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 80px;
}
.product-detail-info h2 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 15px;
}
.product-detail-info p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.9;
}
.product-detail-info .specs {
  background: var(--gray-light);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 25px;
}
.product-detail-info .specs h4 {
  color: var(--primary);
  margin-bottom: 10px;
}
.product-detail-info .specs ul li {
  padding: 5px 0;
  font-size: 15px;
  color: var(--gray);
}
.product-detail-info .specs ul li::before {
  content: '✓';
  color: var(--primary);
  margin-left: 8px;
  font-weight: bold;
}

/* private label */
.pl-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.pl-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  position: relative;
}
.pl-step .step-num {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 18px;
}
.pl-step h4 {
  color: var(--primary);
  margin-bottom: 8px;
}
.pl-step p { color: var(--gray); font-size: 14px; }

/* why us page */
.why-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.why-detail-card {
  padding: 35px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-right: 4px solid var(--gold);
}
.why-detail-card .wd-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 15px;
}
.why-detail-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}
.why-detail-card p { color: var(--gray); }

/* responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 38px; }
  .about-grid,
  .contact-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .mission-vision { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  nav.open { display: block; }
  nav ul {
    flex-direction: column;
    padding: 15px;
    gap: 0;
  }
  nav ul li a {
    display: block;
    padding: 12px 15px;
    border-radius: 0;
    border-bottom: 1px solid #eee;
  }
  nav ul li a:hover { border-radius: 0; }
  .hero h1 { font-size: 30px; }
  .hero .subtitle { font-size: 18px; }
  .section-title h2 { font-size: 28px; }
  .section { padding: 50px 0; }
  .page-banner { padding: 50px 0 40px; }
  .page-banner h1 { font-size: 30px; }
  .top-bar .contact-info span { margin: 0 8px; font-size: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .logo-text h1 { font-size: 16px; }
  .products-grid,
  .features-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
}
/* English styles */
body.en {
  direction: ltr;
  text-align: left;
}
body.en .footer-col h4::after {
  right: auto;
  left: 0;
}
body.en .faq-question { flex-direction: row-reverse; }
body.en .testimonial-card::before {
  right: auto;
  left: 25px;
}
body.en .contact-info-box .info-item { flex-direction: row; }
body.en .product-detail-info .specs ul li::before {
  margin-left: 0;
  margin-right: 8px;
}
body.en .footer-col ul li a { flex-direction: row-reverse; }
body.en .footer-col ul li a:hover { padding-right: 0; padding-left: 5px; }
body.en .why-detail-card { border-right: none; border-left: 4px solid var(--gold); }
