/* ============================================
   Barbie Shop — style.css
   Общий файл стилей для всех страниц сайта
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #FFC4E1;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  min-width: 0;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ---------- HEADER ---------- */
header {
  background-image: url(images/header-background.png);
  background-size: cover;
  background-position: center center;
  color: #FF69B4;
  -webkit-text-stroke: 2px white;
  text-stroke: 2px white;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

header h1 {
  margin: 0;
  font-size: 7.5em;
  text-shadow: 3px 3px 5px rgba(0,0,0,0.4);
}

/* ---------- NAV ---------- */
nav {
  max-width: 1200px;
  margin: 20px auto;
  border: 5px solid #FF69B4;
  border-radius: 8px;
  background-color: #FFC4E1;
  padding: 15px 0;
  width: 100%;
  box-sizing: border-box;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav li {
  margin: 5px 15px;
}

nav a {
  text-decoration: none;
  color: black;
  padding: 10px 3px;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0.5px;
}

nav a:hover {
  background-color: #FF69B4;
  color: white;
}

/* Cart icon nav item */
.cart-icon-li {
  grid-column: 1 / -1;
}

.cart-icon-li a #cart-count {
  position: static;
  background-color: transparent;
  color: black;
  border-radius: 0;
  width: auto;
  height: auto;
  font-weight: bold;
  border: none;
  padding: 0;
  margin-left: 8px;
}

/* ---------- FOOTER ---------- */
footer {
  background-image: url(images/header-background.png);
  background-size: cover;
  background-position: center center;
  color: white;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.footer-link {
  display: inline-block;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ---------- INDEX PAGE — ABOUT SECTION ---------- */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  background-color: #FFC4E1;
  margin-top: 20px;
  border-radius: 8px;
}

.about-section img {
  max-width: 100%;
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 2em;
  margin-top: 0;
}

/* ---------- INDEX PAGE — CATEGORIES ---------- */
.categories-section {
  padding: 40px 0px;
  text-align: center;
}

.categories-section h2 {
  margin-bottom: 30px;
  font-size: 2.2em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.category-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.category-card h3 {
  margin: 15px;
}

/* ---------- CATALOG HEADER ---------- */
.catalog-header {
  text-align: center;
  padding: 30px 20px 10px;
}

.catalog-header h2 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 5px;
  font-weight: bold;
}

.catalog-header p {
  font-size: 1.1em;
  color: #555;
  margin-top: 0;
}

/* ---------- PRODUCT GRID (catalog pages) ---------- */
.page-header-section {
  text-align: center;
  padding: 30px 20px 10px;
}

.page-header-section h1 {
  font-size: 2.5em;
  color: #FF69B4;
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 5px;
}

.page-header-section p {
  font-size: 1.1em;
  color: #555;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

/* Ссылка-обёртка карточки */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover,
.product-card-link:hover .product-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* BEM-классы для карточки (используются в raspev.html, aroma-boxy.html) */
.product-card__image,
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-card__info,
.product-card-info {
  padding: 12px 15px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__brand,
.product-card-brand {
  font-size: 0.85em;
  color: #888;
  margin: 0 0 4px 0;
}

.product-card__title,
.product-card-name {
  font-size: 1em;
  font-weight: bold;
  margin: 0 0 8px 0;
  flex: 1;
}

.product-card__prices,
.product-card-price {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}

.product-card__prices span {
  display: block;
}

.product-card__single-price {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}

.product-card__button {
  display: block;
  width: 100%;
  padding: 11px 0;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s;
  text-align: center;
  margin-top: auto;
}

.product-card__button:hover {
  background-color: #555;
}

/* ---------- PAGINATION ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 30px;
  flex-wrap: wrap;
}

.pagination button {
  background-color: #fff;
  border: 2px solid #FF69B4;
  color: #FF69B4;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.pagination button:hover {
  background-color: #FF69B4;
  color: white;
}

.pagination button.active {
  background-color: #FF69B4;
  color: white;
}

/* ---------- CONSTRUCTION NOTICE ---------- */
.construction-notice {
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 60px 40px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.construction-notice h3 {
  color: #FF69B4;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.construction-notice p {
  color: #666;
  font-size: 1.1em;
  line-height: 1.6;
}

/* ---------- SINGLE PRODUCT PAGE ---------- */
.single-product-page {
  display: flex;
  gap: 40px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  margin-top: 30px;
}

.product-image-column {
  flex: 1;
  max-width: 50%;
}

.product-image-column img {
  width: 100%;
  border-radius: 10px;
}

.product-details-column {
  flex: 1;
}

.product-brand {
  font-size: 1.1em;
  color: #888;
  margin: 0;
}

.product-title {
  font-size: 2.8em;
  margin: 10px 0 20px 0;
}

.product-description h3 {
  font-size: 1.4em;
  margin-top: 30px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.product-notes ul {
  list-style: none;
  padding: 0;
}

.product-notes li {
  margin-bottom: 8px;
}

.product-options {
  margin-top: 30px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.product-options h3 {
  margin-top: 0;
}

.product-options span {
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-add-button {
  display: block;
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s;
}

.product-add-button:hover {
  background-color: #555;
}

.option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.option-item:last-child {
  border-bottom: none;
}

.option-price {
  font-size: 1.1em;
  font-weight: 600;
}

.option-button {
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.option-button:hover {
  background-color: #555;
}

/* ---------- CART PAGE ---------- */
.cart-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 24px;
}

/* Левый блок — список товаров */
.cart-items-block {
  flex: 1;
  background-color: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.cart-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #222;
  margin: 0 0 24px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f2f2f2;
  gap: 12px;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-details {
  font-size: 1em;
  color: #333;
  flex: 1;
}

.item-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.item-price {
  font-size: 1em;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.remove-from-cart-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1.3em;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.remove-from-cart-btn:hover {
  color: #e0218a;
  background-color: #fff0f6;
}

.cart-empty-message {
  text-align: center;
  color: #aaa;
  font-size: 1em;
  padding: 40px 0;
  line-height: 1.7;
}

/* Правый блок — итог */
.cart-summary-block {
  width: 280px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
}

.cart-summary-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #222;
  margin: 0;
}

.cart-summary-total {
  font-size: 2em;
  font-weight: bold;
  color: #222;
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  background-color: #FF69B4;
  color: white;
  text-decoration: none;
  padding: 14px 0;
  border-radius: 10px;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

.cart-checkout-btn:hover {
  background-color: #E0218A;
}

/* Адаптив */
@media (max-width: 768px) {
  .cart-wrapper {
    flex-direction: column;
  }

  .cart-summary-block {
    width: 100%;
    position: static;
  }
}


.btn-primary {
  background-color: #FF69B4;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #E0218A;
}

.btn-secondary {
  background-color: transparent;
  color: #333;
  border: 2px solid #FF69B4;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background-color: #FF69B4;
  color: white;
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: #888;
}

.empty-cart p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* ---------- CHECKOUT PAGE ---------- */
.checkout-page {
  display: flex;
  gap: 30px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  margin-top: 20px;
}

.customer-form {
  flex: 1;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
}

.customer-form h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  background-color: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #FF69B4;
}

.order-summary {
  flex: 1;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  max-width: 380px;
}

.order-summary h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.1em;
  padding-top: 12px;
  margin-top: 6px;
}

/* ---------- CONTACTS PAGE ---------- */
.contacts-page {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.about-card,
.contact-card,
.text-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 280px;
  margin-top: 20px;
}

.about-card h2,
.contact-card h2,
.text-card h2 {
  color: #FF69B4;
  font-size: 1.6em;
  margin-top: 0;
}

.address-text {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444;
}

.social-links,
.social-links-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #FF69B4;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: white;
  flex-shrink: 0;
}

.social-link:hover {
  background-color: #E0218A;
}

/* ---------- SUCCESS PAGE ---------- */
.success-page,
.success-card {
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 60px 40px;
  margin-top: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.success-page h1,
.success-card h1 {
  color: #FF69B4;
  font-size: 2em;
  margin-bottom: 15px;
}

.success-page p,
.success-card p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
}

.back-to-home-btn {
  display: inline-block;
  background-color: #FF69B4;
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s;
}

.back-to-home-btn:hover {
  background-color: #E0218A;
}

/* ---------- AGREEMENT PAGE ---------- */
.agreement-page {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-top: 20px;
  line-height: 1.7;
}

.agreement-page h1 {
  color: #FF69B4;
  font-size: 2em;
  margin-bottom: 20px;
}

.agreement-page h3 {
  margin-top: 25px;
  color: #444;
}

/* ---------- CHECKOUT PAGE ---------- */
.checkout-page {
  display: flex;
  gap: 30px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  margin-top: 20px;
}

.customer-form {
  flex: 1;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
}

.customer-form h1,
.customer-form h2 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  background-color: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #FF69B4;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95em;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: auto;
  accent-color: #FF69B4;
}

.submit-order-button {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 24px;
  background-color: #FF69B4;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s;
}

.submit-order-button:hover {
  background-color: #E0218A;
}

.submit-order-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.order-summary {
  flex: 1;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  max-width: 380px;
}

.order-summary h2 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 20px;
}

.order-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-summary ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
  gap: 10px;
}

.order-summary ul li span {
  flex: 1;
  color: #444;
}

.order-summary ul li strong {
  color: #333;
  white-space: nowrap;
}

#order-total {
  font-weight: bold;
  font-size: 1.15em;
  text-align: right;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 2px solid #FFC4E1;
  color: #333;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.1em;
  padding-top: 12px;
  margin-top: 6px;
}

/* ---------- SKINCARE PRODUCT PAGE ---------- */
.price-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.final-price {
  font-size: 1.6em;
  font-weight: bold;
  color: #333;
}

/* ---------- COMING SOON (decorative cosmetics) ---------- */
.coming-soon {
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 60px 40px;
  margin-top: 20px;
}

.coming-soon h2 {
  color: #FF69B4;
  font-size: 2em;
}

.coming-soon p {
  color: #666;
  font-size: 1.1em;
  margin-top: 10px;
}

/* ---------- RESPONSIVE: TABLET ---------- */
@media (max-width: 768px) {
  header h1 {
    font-size: 4.5em;
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
  }

  nav {
    border: none;
    padding: 0;
    background-color: transparent;
  }

  nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 3px solid #FF69B4;
    border-radius: 12px;
    background-color: #FFC4E1;
  }

  nav li {
    margin: 0;
  }

  nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    text-align: center;
    padding: 8px;
    font-size: 0.9em;
    background-color: #FF69B4;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.2s;
  }

  nav a:hover {
    background-color: #E0218A;
  }

  .cart-icon-li {
    grid-column: 1 / -1;
  }

  .single-product-page {
    flex-direction: column;
    padding: 20px;
  }

  .product-image-column {
    max-width: 100%;
  }

  .product-title {
    font-size: 2em;
  }

  .checkout-page {
    flex-direction: column;
    padding: 20px;
  }

  .order-summary {
    max-width: 100%;
  }

  .about-card,
  .contact-card,
  .customer-form,
  .order-summary,
  .text-card {
    padding: 20px;
  }

  .social-link {
    padding: 10px 15px;
    font-size: 1em;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .price-block {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Корзина на планшете */
  .cart-wrapper {
    flex-direction: column;
  }

  .cart-summary-block {
    width: 100%;
    position: static;
  }

  .cart-items-block {
    padding: 24px 20px;
  }
}

/* ---------- RESPONSIVE: MOBILE ---------- */
@media (max-width: 480px) {
  header h1 {
    font-size: 3em;
  }

  nav ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .construction-notice,
  .success-card {
    padding: 40px 20px;
  }

  /* Корзина на мобильном */
  .cart-items-block {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .cart-title {
    font-size: 1.4em;
  }

  .cart-summary-block {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .cart-summary-total {
    font-size: 1.6em;
  }

  .cart-checkout-btn {
    padding: 16px 0;
    font-size: 1.05em;
  }

  .item-details {
    font-size: 0.9em;
  }

  .item-price {
    font-size: 0.9em;
  }
}
