/*
==============================================
  GENERAL & FONT
==============================================
*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

body {
  font-family: 'Lato', sans-serif;
  color: #111;
  margin: 0;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden; /* Mencegah scroll samping */
}

/* Judul Pakai Serif (Berkaki) */
h1, h2, h3, h4, h5, h6, 
.nav-brand a, 
.nav-menu a, 
.hero-banner-title,
.product-card .price {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/*
==============================================
  HEADER & NAVBAR
==============================================
*/
.site-header {
  padding: 20px 0;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand a {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #C5A565;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-menu a.active {
  font-weight: 500;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icons a {
  font-size: 18px;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -12px;
    background-color: #C5A565;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    min-width: 20px;
    box-sizing: border-box;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.header-user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #111;
    padding: 10px;
}

/*
==============================================
  BUTTONS
==============================================
*/
.btn {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.btn:hover {
  background: #555;
}

.btn.btn-secondary {
  background-color: transparent;
  color: #333;
  border: 1px solid #ccc;
}

.btn.btn-secondary:hover {
  background-color: #f1f1f1;
  color: #333;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    margin-top: 0;
    margin-bottom: 15px;
    background-color: transparent;
    box-shadow: none;
}

.btn-back:hover {
    background-color: #f7f7f7;
    color: #000;
    border-color: #333;
}

.btn-detail {
    display: inline-block;
    padding: 8px 16px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    border: 1px solid #222;
    transition: background-color 0.3s, color 0.3s;
}

.btn-detail:hover {
    background-color: #ada9a9;
    color: #0d0c0c;
}

/*
==============================================
  HOMEPAGE
==============================================
*/
.hero-banner-section {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

.hero-banner-link {
  display: block;
  position: relative;
  color: white;
  text-decoration: none;
}

.hero-banner-image {
  width: 100%;
  height: 50vh;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: background 0.3s ease;
}

.hero-banner-link:hover .hero-banner-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.hero-banner-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 1px;
}

.hero-banner-desc {
  font-size: 1rem;
  max-width: 550px;
  margin: 15px 0 25px 0;
  line-height: 1.5;
}

.hero-banner-cta {
  padding: 12px 30px;
  border: 2px solid white;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-banner-link:hover .hero-banner-cta {
  background: white;
  color: black;
}

.latest-products-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 15px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
}

.view-all-link {
  font-size: 0.9rem;
  color: #777;
}

.view-all-link:hover {
  color: #000;
}

/*
==============================================
  PRODUCTS
==============================================
*/
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  text-align: left;
}

.product-card a {
  text-decoration: none;
  color: #333;
}

.product-image-container {
  background-color: #f7f7f7;
  margin-bottom: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1; 
  position: relative;
}

.product-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; 
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 5px 0 3px 0;
}

.product-card .product-price {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.product-card .btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #fff;
  color: #444;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 0.8rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.product-card .btn:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.product-card.sold-out .product-image-container img {
    filter: grayscale(100%);
    opacity: 0.6;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.product-overlay span {
    background-color: #ffffff;
    color: #161515;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

/*
==============================================
  PRODUCT DETAIL PAGE
==============================================
*/
.product-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px; 
}

.product-main-content {
    flex: 1;
}

.product-detail-layout {
  display: flex;
  gap: 40px;
  margin-top: 0; 
}

.product-images {
  display: flex;
  flex: 1;
  gap: 20px;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #eee;
  cursor: pointer;
  transition: border-color 0.2s;
}

.thumbnail-item:hover,
.thumbnail-item.active {
  border-color: #333;
}

.main-image-container {
  flex: 1;
  position: relative;
}

#main-image {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  flex: 1;
  padding-left: 20px;
}

.product-info h1 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 0;
}

.product-info .price {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 25px;
}

.quantity-selector {
  display: flex;
  border: 1px solid #ccc;
  width: fit-content;
  margin-bottom: 20px;
}

.quantity-selector input[type="number"] {
  width: 50px;
  text-align: center;
  border: none;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}

.quantity-btn {
  background: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1rem;
  color: #555;
}

.btn-add-to-cart {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 14px;
  background-color: #111;
  border: 1px solid #111;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-add-to-cart:hover {
  background-color: #fff;
  color: #111;
}

.btn-add-to-cart:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.product-tabs {
  margin-top: 60px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.product-tabs .tab-headers {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.product-tabs .tab-link {
  text-decoration: none;
  color: #888;
  padding: 10px 0;
  font-size: 1rem;
  position: relative;
}

.product-tabs .tab-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #111;
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.product-tabs .tab-link:hover::after,
.product-tabs .tab-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.product-tabs .tab-link.active {
  color: #000;
  font-weight: 500;
}

.product-tabs .tab-pane {
  display: none;
}

.product-tabs .tab-pane.active {
  display: block;
  line-height: 1.6;
  color: #555;
}

.product-tabs .tab-content {
  padding: 25px 5px;
}

.stock-status {
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 15px;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 50px; 
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  gap: 8px;
}

.stock-badge.low, .low-stock {
  background-color: #fff4f4;
  color: #d9534f;
  border: 1px solid #ffcccc;
}

.stock-badge.sold, .sold-out {
  background-color: #f2f2f2;
  color: #888;
  border: 1px solid #ddd;
}

.login-card-prompt {
  background-color: #fcfcfc;
  border: 1px dashed #ccc;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #555;
}

.login-card-prompt a {
  font-weight: 600;
  color: #111;
  text-decoration: underline;
}

/*
==============================================
  CART PAGE
==============================================
*/
.cart-container {
  margin-top: 40px;
  margin-bottom: 40px;
}

.cart-container h1 {
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed #ddd;
  border-radius: 8px;
}

.cart-empty p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cart-main-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.cart-items-list {
  flex: 3;
}

.order-summary {
  flex: 1;
  background-color: #f9f9f9;
  padding: 25px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  position: sticky;
  top: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item .product-image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.cart-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item .product-details {
  flex-grow: 1;
}

.cart-item .product-details .name {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 5px 0;
}

.cart-item .product-details .price {
  font-size: 0.9rem;
  color: #777;
}

.cart-item .product-quantity {
  width: 150px;
  text-align: center;
}

.cart-item .quantity-selector {
  display: flex;
  border: 1px solid #ccc;
  width: fit-content;
  margin: 0 auto;
}

.cart-item .quantity-selector input[type="number"] {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}

.cart-item .quantity-btn-cart {
  background: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1rem;
  color: #555;
}

.cart-item .product-subtotal {
  width: 120px;
  text-align: right;
  font-weight: 500;
}

.cart-item .product-remove {
  width: 50px;
  text-align: right;
}

.btn-remove {
  background: none;
  border: none;
  color: #999;
  font-size: 1.1rem;
  cursor: pointer;
}

.btn-remove:hover {
  color: #d9534f;
}

.order-summary h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1rem;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.cart-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-actions .btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.continue-shopping {
  text-align: center;
  margin-top: 30px;
}

.continue-shopping a {
  color: #555;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.continue-shopping a:hover {
  border-color: #555;
}

/* Animasi Cart */
@keyframes cart-pop-shake {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-5deg); }
  50% { transform: scale(1.2) rotate(5deg); }
  75% { transform: scale(1.2) rotate(-5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.cart-icon-wrapper.updated {
  animation: cart-pop-shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes pulse-red {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.btn-needs-update {
  background-color: #dc3545 !important; 
  color: white !important;
  border: 1px solid #dc3545 !important;
  font-weight: bold;
  animation: pulse-red 2s infinite;
  transition: all 0.3s ease;
}

/*
==============================================
  CHECKOUT & ORDERS
==============================================
*/
/* Order Summary Mobile Style */
.checkout-items-list {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.checkout-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: #fff;
}

.checkout-img {
  position: relative;
  width: 65px;
  height: 65px;
  margin-right: 15px;
  flex-shrink: 0;
}

.checkout-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.qty-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #555;
  color: #fff;
  font-size: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
}

.checkout-details { flex: 1; }
.checkout-details .prod-name { font-size: 14px; font-weight: 500; color: #333; line-height: 1.3; margin-bottom: 4px; }
.checkout-details .prod-price { font-size: 13px; color: #666; font-weight: 600; }

.checkout-totals {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.total-row.final {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ccc;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  margin-bottom: 0;
}

.gold-text { color: #C5A565; }

/* Address Selection Cards */
.address-selection input[type="radio"] { display: none; }
.address-box { margin-bottom: 15px; }

.address-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.addr-icon {
  width: 45px;
  height: 45px;
  background: #f4f4f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
  color: #555;
  flex-shrink: 0;
}

.addr-icon.new { background: #eef2ff; color: #444; }
.addr-content { flex: 1; }
.addr-content strong { display: block; font-size: 15px; color: #333; margin-bottom: 4px; }
.addr-content p { font-size: 13px; color: #777; margin: 0; line-height: 1.4; }

.addr-check {
  color: #C5A565;
  font-size: 20px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.address-selection input[type="radio"]:checked + .address-card {
  border-color: #C5A565;
  background-color: #fffdf5;
  box-shadow: 0 4px 12px rgba(197, 165, 101, 0.15);
}

.address-selection input[type="radio"]:checked + .address-card .addr-icon {
  background-color: #C5A565;
  color: #fff;
}

.address-selection input[type="radio"]:checked + .address-card .addr-check {
  opacity: 1;
  transform: scale(1);
}

/* My Orders */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

.orders-table th {
    text-align: left;
    padding: 15px 0;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #111;
}

.orders-table td {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top;
    color: #555;
}

.orders-table .btn-view {
    color: #C5A565;
    font-weight: 500;
    text-decoration: underline;
    font-size: 0.9rem;
}

.orders-table .btn-view:hover { color: #111; }
.orders-table .tracking-number a { text-decoration: underline; color: #555; }

/* Order Detail Layout */
.order-detail-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.order-details-card,
.order-summary-card {
    padding: 30px;
    border-radius: 4px;
    height: fit-content;
}

.order-details-card {
    flex: 2;
    background-color: #fcfcfc;
    border: 1px solid #eee;
}

.order-summary-card {
    flex: 1;
    background-color: #f2f2f2; 
}

.order-details-card h2,
.order-summary-card h2 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 30px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.detail-item span {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #111;
}

.detail-item.new-full-width { grid-column: 1 / -1; margin-top: 10px; }

.summary-items {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.summary-product-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.summary-totals .summary-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    background-color: #f2f2f2; 
    padding: 5px 0;
}

.summary-totals .final-total {
    font-weight: bold;
    font-size: 18px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
    background-color: transparent !important; 
}

.back-to-orders { margin-top: 20px; }
.back-to-orders a { color: #555; font-weight: 500; text-decoration: none; }

/*
==============================================
  MY ACCOUNT PAGE
==============================================
*/
.account-container { padding-top: 40px; padding-bottom: 80px; }
.account-nav { display: flex; flex-wrap: wrap; gap: 40px; border-bottom: 1px solid #e5e5e5; margin-bottom: 40px; }
.account-nav a { padding: 15px 0; text-decoration: none; color: #555; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; position: relative; border-bottom: 2px solid transparent; transition: color 0.3s, border-color 0.3s; }
.account-nav a.active, .account-nav a:hover { color: #111; font-weight: 500; border-bottom-color: #111; }
.account-content h2 { font-size: 22px; font-weight: 400; margin-bottom: 30px; letter-spacing: 0.05em; }

.details-layout { display: flex; flex-wrap: wrap; gap: 60px; }
.details-forms { flex: 2; min-width: 300px; }
.address-display-sidebar { flex: 1; min-width: 250px; padding-left: 40px; border-left: 1px solid #e5e5e5; }

.details-form { max-width: 650px; }
.details-form .form-group { margin-bottom: 25px; }
.details-form label { display: block; font-size: 13px; margin-bottom: 8px; color: #555; }
.label-translation { font-size: 0.8em; color: #6c757d; font-weight: normal; margin-left: 5px; }
.details-form input { width: 100%; padding: 12px; border: 1px solid #e5e5e5; box-sizing: border-box; font-size: 14px; }
.details-form .field-hint { font-size: 12px; color: #888; margin-top: 5px; }
.details-form .password-change-header { font-size: 18px; font-weight: 500; margin-top: 40px; margin-bottom: 20px; }
.details-form .btn-save { display: inline-block; padding: 14px 40px; background: #111; color: #fff; border: none; cursor: pointer; text-transform: uppercase; font-size: 13px; letter-spacing: 0.1em; margin-top: 10px; }

.address-display-sidebar h3 { font-size: 18px; font-weight: 500; }
.address-display-sidebar p { color: #555; line-height: 1.7; }
.address-display-sidebar a { color: #111; text-decoration: underline; font-size: 13px; }

/* Desktop vs Mobile Nav System */
.mobile-nav-grid { display: none; }
.desktop-nav { display: flex; }

/*
==============================================
  BLOG PAGE
==============================================
*/
.blog-page-header { text-align: center; margin: 60px 0; }
.blog-page-header h1 { font-size: 2.8rem; font-weight: 500; margin: 0; letter-spacing: 2px; }
.blog-page-header p { font-size: 1.1rem; color: #666; margin-top: 10px; }

.featured-post-section { margin-bottom: 80px; }
.featured-post-card { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background-color: #fdfdfd; border: 1px solid #f0f0f0; text-decoration: none; color: inherit; transition: box-shadow 0.3s ease; }
.featured-post-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.07); }
.featured-image-wrapper { aspect-ratio: 4 / 3; }
.featured-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.featured-content-wrapper { padding: 30px; }
.featured-date { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 10px; }
.featured-content-wrapper h2 { font-size: 2rem; font-weight: 500; line-height: 1.3; margin: 0 0 15px; }
.featured-excerpt { font-size: 1rem; color: #555; line-height: 1.7; }
.read-more-link { font-weight: 500; color: #111; margin-top: 20px; display: inline-block; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.blog-post-card { text-decoration: none; color: inherit; display: block; }
.post-card-image { aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 15px; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-post-card:hover .post-card-image img { transform: scale(1.05); }
.post-card-date { font-size: 0.8rem; color: #888; margin: 0 0 5px; }
.post-card-content h3 { font-size: 1.1rem; font-weight: 500; line-height: 1.4; margin: 0; }

/*
==============================================
  LOGIN & REGISTER (MODERN)
==============================================
*/
.auth-page-container { display: flex; justify-content: center; align-items: center; min-height: 80vh; padding: 20px; background-color: #fcfcfc; }
.auth-card { background: #ffffff; width: 100%; max-width: 450px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; border: 1px solid #f0f0f0; }
.auth-tabs { display: flex; background: #f8f9fa; padding: 5px; margin: 20px; border-radius: 50px; border: 1px solid #eee; }
.toggle-btn { flex: 1; border: none; background: transparent; padding: 12px; font-size: 14px; font-weight: 600; color: #888; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; }
.toggle-btn.active { background: #fff; color: #C5A565; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.auth-form { display: none; padding: 0 30px 40px 30px; animation: fadeIn 0.4s ease; }
.auth-form.active { display: block; }

.form-header { text-align: center; margin-bottom: 25px; }
.form-header h2 { font-size: 24px; color: #111; margin-bottom: 5px; }
.form-header p { color: #888; font-size: 14px; }

.form-group { margin-bottom: 15px; }
.form-group label { font-size: 12px; font-weight: 600; color: #333; margin-bottom: 8px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input { width: 100%; padding: 8px; box-sizing: border-box; }

.input-icon-wrapper { position: relative; }
.input-icon-wrapper i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #aaa; font-size: 16px; }
.input-icon-wrapper input { width: 100%; padding: 12px 12px 12px 45px; border: 1px solid #e0e0e0; border-radius: 10px; font-size: 14px; background: #fafafa; transition: all 0.3s; box-sizing: border-box; }
.input-icon-wrapper input:focus { background: #fff; border-color: #C5A565; outline: none; box-shadow: 0 0 0 3px rgba(197, 165, 101, 0.1); }

.btn-auth { width: 100%; padding: 15px; background-color: #111; color: #fff; border: none; border-radius: 10px; font-size: 14px; font-weight: 600; letter-spacing: 1px; margin-top: 20px; cursor: pointer; transition: background 0.3s; }
.btn-auth:hover { background-color: #333; transform: translateY(-2px); }
.forgot-link { font-size: 12px; color: #C5A565; text-decoration: none; float: right; margin-top: 5px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/*
==============================================
  NOTIFICATIONS
==============================================
*/
.notification { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; text-align: center; font-weight: 500; }
.notification.success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
.notification-box { padding: 15px; margin-bottom: 20px; border-radius: 4px; text-align: center; font-weight: 500; }
.notification-box.success { background-color: #d4edda; color: #155724; }
.notification-box.error { background-color: #f8d7da; color: #721c24; }
.login-alert { padding: 15px; margin: 20px 0; border: 1px solid #faebcc; border-radius: 4px; color: #8a6d3b; background-color: #fcf8e3; text-align: center; font-weight: bold; }

.notification.brand { background-color: #111; color: #fff; border: 1px solid #333; border-radius: 4px; padding: 15px 20px; margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between; opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.notification.brand.fade-out { opacity: 0; transform: translateY(-20px); }
.notification.brand .fa-check-circle { font-size: 20px; margin-right: 15px; color: #C5A565; }
.notification.brand span { flex-grow: 1; }
.notification.brand .close-btn { background: none; border: none; color: #fff; font-size: 26px; font-weight: bold; opacity: 0.7; cursor: pointer; padding: 0 0 0 15px; line-height: 1; }
.notification.brand .close-btn:hover { opacity: 1; }

/*
==============================================
  FOOTER
==============================================
*/
.site-footer {
  padding: 40px 0;
  background-color: #fff;
  font-size: 13px;
  color: #555;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-links a {
  margin-right: 30px;
  letter-spacing: 0.05em;
}

.footer-cta span {
  margin-right: 15px;
}

.footer-cta a {
  font-weight: 500;
  color: #111;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #e5e5e5;
}

.footer-social {
  display: flex;
  gap: 25px;
}

.footer-social a {
  font-size: 30px;
}

.mobile-bottom-nav { display: none; }
.mobile-sticky-footer { display: none; }

/*
==============================================
  RESPONSIVE MEDIA QUERIES (CONSOLIDATED)
==============================================
*/

/* --- TABLET & SMALLER (Max 992px) --- */
@media (max-width: 992px) {
  .cart-main-content { flex-direction: column; }
  .order-summary { width: 100%; position: static; box-sizing: border-box; overflow-x: hidden; margin-top: 20px !important; }
  .featured-post-card { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Force Vertical Layout for Forms & Checkout */
  .page-content form,
  .container form,
  .checkout-layout,
  .cart-main-content { display: flex; flex-direction: column !important; width: 100% !important; }

  .checkout-form, 
  .checkout-details,
  div[class*="col-"] { width: 100% !important; max-width: 100% !important; flex: none !important; margin: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
}

/* --- MOBILE LANDSCAPE/TABLET (Max 800px & 768px) --- */
@media (max-width: 768px) {
    /* 1. Header & Nav */
    .navbar { display: flex; flex-wrap: nowrap !important; align-items: center; justify-content: space-between !important; position: relative; }
    .site-header { padding-top: 10px !important; padding-bottom: 10px !important; border-bottom: 1px solid #f0f0f0 !important; height: auto !important; }
    .site-header .container { padding-top: 0 !important; padding-bottom: 0 !important; min-height: 0 !important; }
    .mobile-menu-toggle { display: none !important; } /* Hide old hamburger */
    .nav-menu { display: none !important; } /* Hide old menu */
    .nav-brand { order: 2; flex-grow: 0; text-align: left; margin: 0; display: block; margin-right: auto; padding-left: 0; }
    .nav-brand a { font-size: 20px; letter-spacing: 1.5px; line-height: 1; display: block; padding: 5px 0; }
    .nav-icons { order: 3; margin-left: auto; display: flex; align-items: center; gap: 15px; }

    /* 2. Layout Spacing */
    .container { margin-top: 0 !important; padding-top: 0 !important; padding-bottom: 0 !important; }
    .page-content, .main-content { margin-top: 0 !important; padding-top: 10px !important; padding-bottom: 40px !important; }
    
    /* 3. Hero & Home */
    .hero-banner-section { margin-bottom: 25px !important; margin-top: 0 !important; }
    .hero-banner-link { display: block; position: relative; }
    .hero-banner-image { width: 100%; height: 500px !important; object-fit: cover; object-position: center; }
    .hero-banner-overlay { position: absolute !important; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3) !important; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px; box-sizing: border-box; text-align: center; bottom: auto; transform: none; border-radius: 0; box-shadow: none; }
    .hero-banner-title { color: #ffffff !important; font-size: 26px !important; font-weight: 500; margin-bottom: 10px; letter-spacing: 1px; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.3); margin-top: 15px !important; }
    .hero-banner-desc { color: #f1f1f1 !important; font-size: 13px !important; line-height: 1.5; margin-bottom: 25px; max-width: 90%; display: -webkit-box !important; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 1px 5px rgba(0,0,0,0.3); }
    .hero-banner-cta { display: inline-block; border: 1px solid #ffffff !important; color: #ffffff !important; background: transparent !important; padding: 8px 24px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; border-radius: 0; }
    
    .latest-products-section { margin-top: 0 !important; padding-top: 0 !important; margin-bottom: 30px !important; }
    .section-header { margin-bottom: 20px !important; padding-bottom: 0 !important; border-bottom: none !important; }
    h1, h2, .section-header h2 { margin-top: 15px !important; margin-bottom: 15px !important; line-height: 1.3 !important; font-size: 1.6rem !important; }
    .continue-shopping { display: none !important; }

    /* 4. Product Detail Mobile */
    .product-content-wrapper { margin-top: 15px !important; }
    .product-detail-layout { flex-direction: column; gap: 20px; margin-top: 5px !important; }
    .product-images { flex-direction: column-reverse; width: 100%; }
    .main-image-container { width: 100%; margin-bottom: 10px; border: 1px solid #f0f0f0; border-radius: 8px; overflow: hidden; position: relative; }
    #main-image { width: 100%; height: auto; object-fit: contain; }
    .thumbnails { flex-direction: row; justify-content: center; gap: 10px; overflow-x: auto; }
    .thumbnail-item { width: 60px; height: 60px; }
    .product-info { padding-left: 0; text-align: left; }
    .product-info h1 { font-size: 1.5rem; margin-bottom: 5px; line-height: 1.3; }
    .product-info .price { font-size: 1.25rem; margin-bottom: 20px; color: #C5A565; }
    .quantity-selector { height: 40px; margin-bottom: 20px; }
    .quantity-selector input[type="number"] { width: 50px; font-size: 16px; height: 100%; }
    .quantity-btn { padding: 0 15px; height: 100%; display: flex; align-items: center; justify-content: center; }
    .btn-add-to-cart { width: 100%; max-width: 100%; padding: 12px 0; font-size: 14px; border-radius: 4px; margin-top: 10px; }
    .btn-back { width: 35px; height: 35px; font-size: 14px; margin-bottom: 5px !important; }

    /* 5. Orders Table Mobile */
    .orders-table, .orders-table tbody, .orders-table tr, .orders-table td { display: block; width: 100%; box-sizing: border-box; }
    .orders-table thead { display: none; }
    .orders-table tr { background: #fff; border: 1px solid #eee; border-radius: 12px; margin-bottom: 20px; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); position: relative; overflow: hidden; }
    .orders-table td { display: flex; justify-content: space-between; align-items: flex-start; text-align: right; padding: 12px 0; border-bottom: 1px dashed #f0f0f0; font-size: 14px; color: #555; word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
    .orders-table td:last-child { border-bottom: none; padding-bottom: 0; margin-top: 5px; }
    .orders-table td > * { text-align: right; }
    .orders-table td:nth-of-type(1)::before { content: "Order ID"; font-weight: 600; color: #333; text-align: left; flex-shrink: 0; margin-right: 10px; }
    .orders-table td:nth-of-type(2)::before { content: "Date"; font-weight: 600; color: #333; text-align: left; flex-shrink: 0; margin-right: 10px; }
    .orders-table td:nth-of-type(3)::before { content: "Status"; font-weight: 600; color: #333; text-align: left; flex-shrink: 0; margin-right: 10px; }
    .orders-table td:nth-of-type(4)::before { content: "Tracking No"; font-weight: 600; color: #333; text-align: left; flex-shrink: 0; margin-right: 10px; }
    .orders-table td:nth-of-type(5)::before { content: "Total"; font-weight: 600; color: #333; text-align: left; flex-shrink: 0; margin-right: 10px; }
    .orders-table .btn-view { display: block; width: 100%; text-align: center; background-color: #111; color: #fff !important; padding: 12px; border-radius: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; margin-top: 10px; }
    .tracking-number a { display: inline-block; word-break: break-all; color: #C5A565; text-decoration: underline; }
    .order-detail-layout { flex-direction: column; gap: 30px; }
    .details-grid { grid-template-columns: 1fr; gap: 20px; }
    .detail-item.new-full-width { grid-column: 1 / -1; }

    /* 6. Account Page Mobile */
    .details-layout { display: flex !important; flex-direction: column-reverse !important; gap: 25px !important; }
    .address-display-sidebar { width: 100% !important; padding: 20px !important; background-color: #f8f9fa; border: 1px solid #e9ecef; border-radius: 12px; border-left: 5px solid #C5A565; margin-top: 0 !important; box-sizing: border-box; }
    .address-display-sidebar h3 { font-size: 14px !important; text-transform: uppercase; letter-spacing: 1px; color: #C5A565; margin-bottom: 10px !important; }
    .address-display-sidebar p { font-size: 13px !important; color: #333; margin-bottom: 10px; }
    .details-forms { width: 100% !important; max-width: 100% !important; }
    .details-form .btn-save { width: auto !important; min-width: 120px; padding: 10px 20px !important; font-size: 12px !important; height: auto !important; margin-top: 5px !important; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; float: right; }
    .details-form::after { content: ""; display: table; clear: both; }
    .details-form .form-group { margin-bottom: 15px !important; }
    .details-form input { padding: 10px !important; font-size: 13px !important; }
    .desktop-nav { display: none !important; }
    .mobile-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
    .account-card-link { display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 15px 10px; text-decoration: none; box-shadow: 0 2px 5px rgba(0,0,0,0.03); transition: transform 0.2s; min-height: 110px; }
    .account-card-link:active { transform: scale(0.98); background-color: #f9f9f9; }
    .icon-wrapper { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 10px; }
    .icon-wrapper.gold { background: #fff8e1; color: #C5A565; }
    .icon-wrapper.blue { background: #e3f2fd; color: #1976d2; }
    .icon-wrapper.green { background: #e8f5e9; color: #388e3c; }
    .icon-wrapper.red { background: #ffebee; color: #d32f2f; }
    .menu-title { font-size: 13px; font-weight: 600; color: #333; text-align: center; }
    .account-card-link.active { border: 1px solid #C5A565; background-color: #fffae6; }

    /* 7. Footer & Bottom Nav */
    .site-footer { text-align: center; padding-top: 20px !important; margin-top: 0 !important; padding-bottom: 80px !important; height: auto !important; }
    .site-footer .container { padding-bottom: 0 !important; margin-bottom: 0 !important; }
    .footer-top { flex-direction: column; gap: 15px; padding-bottom: 20px; }
    .footer-links { display: flex; flex-direction: column; gap: 15px; width: 100%; }
    .footer-links a { margin-right: 0 !important; font-size: 12px; letter-spacing: 1px; padding: 5px 0; display: block; }
    .footer-divider { margin: 20px auto; width: 50%; opacity: 0.5; }
    .footer-bottom { flex-direction: column-reverse; gap: 20px; padding-top: 10px; }
    .footer-copyright { font-size: 11px; color: #888; line-height: 1.6; margin-top: 10px; opacity: 0.8; }
    .footer-social { justify-content: center; gap: 30px; }
    .footer-social a { font-size: 24px; color: #333; }

    .mobile-bottom-nav { display: flex; justify-content: space-around; align-items: center; position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background-color: #ffffff; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); z-index: 9999; border-top: 1px solid #f0f0f0; padding-bottom: env(safe-area-inset-bottom); }
    .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: #999; font-size: 10px; flex: 1; height: 100%; }
    .nav-item i { font-size: 20px; margin-bottom: 4px; transition: transform 0.2s; }
    .nav-item.active { color: #C5A565; font-weight: 600; }
    .nav-item.active i { transform: translateY(-2px); }
    body { padding-bottom: 80px; }

    /* 8. Chatbot Position Force */
    #tawkchat-minified-wrapper, .tawk-min-container, div[id*="tawk-"], iframe[title*="chat"] { bottom: 10px !important; margin-bottom: 0 !important; z-index: 9998 !important; }
    
    /* 9. Cart & Checkout Actions */
    .order-summary { margin-top: 30px; background: #fdfdfd; padding: 20px; border-top: 1px solid #eee; }
    .order-summary h2 { font-weight: 800 !important; color: #000 !important; letter-spacing: 0.5px; }
    .summary-row.total, .summary-row.total span { font-weight: 700 !important; color: #000 !important; font-size: 1.25rem !important; }

    .cart-actions { display: flex !important; flex-direction: column-reverse; gap: 15px; margin-top: 20px; }
    .cart-actions .btn, .cart-actions .btn-secondary { width: 100%; display: block; text-align: center; padding: 15px; border-radius: 4px; margin: 0; }
    .cart-actions .btn { order: 2; background: #000; color: #fff; font-weight: 600; letter-spacing: 1px; }
    .cart-actions .btn-secondary { order: 1; background: #fff; border: 1px solid #ddd; color: #555; font-size: 0.9rem; }
    
    .mobile-sticky-footer { display: block; position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; padding: 15px 20px; box-shadow: 0 -4px 15px rgba(0,0,0,0.1); z-index: 9999; border-top: 1px solid #eee; }
    .mobile-sticky-inner { display: flex; flex-direction: column; gap: 10px; }
    .mobile-sticky-inner .btn, .mobile-sticky-inner .btn-secondary { width: 100%; text-align: center; margin: 0; padding: 12px; border-radius: 4px; }
}

/* --- MOBILE PORTRAIT (Max 576px) --- */
@media (max-width: 576px) {
  /* 1. Cart Items Grid */
  .cart-item { display: grid; grid-template-columns: 100px 1fr; grid-template-rows: auto auto; gap: 10px; background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 15px; margin-bottom: 15px; position: relative; flex-wrap: wrap; padding-left: 15px; }
  .cart-item .product-image { grid-column: 1; grid-row: 1; width: 80px !important; height: 80px !important; margin: 0 !important; position: static; }
  .cart-item .product-details { grid-column: 2; grid-row: 1; padding-right: 25px; align-self: start; width: 100%; margin-bottom: 0; }
  .cart-item .product-details .name { font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 5px; white-space: normal; overflow-wrap: break-word; }
  .cart-item .product-remove { order: 6; width: auto; margin-top: 0; position: absolute; bottom: 15px; right: 15px; top: auto; z-index: 10; }
  .btn-remove, .btn-remove i { color: #ff0000 !important; font-size: 24px !important; padding: 5px; background: transparent; border: none; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
  .btn-remove:active { transform: scale(0.9); }
  .cart-item .product-quantity { grid-column: 1; grid-row: 2; align-self: center; margin-top: 5px; width: auto; padding-left: 0; text-align: left; }
  .cart-item .quantity-selector { margin: 0 !important; }
  .cart-item .product-subtotal { grid-column: 2; grid-row: 2; align-self: center; justify-self: start; text-align: left; font-size: 15px; font-weight: bold; color: #C5A565; border-top: none !important; padding-top: 0 !important; margin-top: 5px; margin-right: 50px !important; width: auto; }
  .cart-container h1 { font-size: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }

  /* 2. Shop Grid 2 Columns */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 10px; }
  .product-card { text-align: center; background: #fff; padding-bottom: 10px; }
  .product-image-container { margin-bottom: 10px; border-radius: 8px; background-color: #f9f9f9; aspect-ratio: 1 / 1; }
  .product-card img { object-fit: contain !important; padding: 5px; }
  .product-card h3 { font-size: 13px; font-weight: 500; margin: 5px 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 36px; }
  .product-card .product-price { font-size: 13px; color: #C5A565; font-weight: 600; margin-bottom: 8px; }
  .product-card .btn { width: 100%; padding: 8px 0; font-size: 11px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
  
  /* 3. Tiny Buttons Fix */
  .quantity-btn, .quantity-btn-cart, .quantity-selector button { width: 28px !important; height: 28px !important; line-height: 28px !important; font-size: 12px !important; padding: 0 !important; display: inline-flex !important; align-items: center; justify-content: center; border: 1px solid #ddd !important; }
  .quantity-selector input[type="number"], .quantity-input-cart { height: 28px !important; font-size: 13px !important; width: 35px !important; padding: 0 !important; }
  .quantity-selector { height: 28px !important; margin-bottom: 0 !important; display: inline-flex !important; align-items: center; }
  .cart-item, .summary-product-row { gap: 10px; }

  /* 4. Tab Content */
  .product-tabs { margin-top: 30px; padding-top: 20px; }
  .product-tabs .tab-content { padding: 20px 0; }
  .product-tabs .tab-pane { padding-left: 5px; padding-right: 5px; }

  /* 5. Auth Page */
  .auth-page-container { padding: 15px; align-items: flex-start; padding-top: 40px; }
  .auth-card { border: none; box-shadow: none; background: transparent; }
  .input-icon-wrapper input { font-size: 16px; }
}