:root {
  --ga-navy: #0A192F;       /* Deep Luxury Dark Blue */
  --ga-navy-light: #112240; /* Card / Surface Blue */
  --ga-navy-border: #233554;
  --ga-beige: #F4EBE1;      /* Elegant Beige */
  --ga-beige-dark: #E2D4C3; /* Accent Beige */
  --ga-white: #FFFFFF;      /* Pure White */
  --ga-slate: #8892B0;      /* Muted text */
  --ga-slate-light: #CCD6F6;
  --ga-gold: #C5A059;       /* Warm Gold Highlight */
  --ga-shadow: 0 12px 30px rgba(10, 25, 47, 0.15);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body.pt950-body {
  background-color: #F9F7F4;
  color: var(--ga-navy);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Header & Navigation */
.pt950-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ga-navy);
  color: var(--ga-white);
  border-bottom: 2px solid var(--ga-beige-dark);
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.2);
}

.pt950-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ga-white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pt950-logo span {
  color: var(--ga-beige);
  font-weight: 400;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-left: 1px solid rgba(244, 235, 225, 0.3);
  padding-left: 12px;
  margin-left: 4px;
}

.pt950-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.pt950-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ga-slate-light);
  position: relative;
  padding: 6px 0;
}

.pt950-nav a:hover,
.pt950-nav a.active {
  color: var(--ga-beige);
}

.pt950-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ga-beige);
}

.pt950-cart-icon-btn {
  position: relative;
  background: rgba(244, 235, 225, 0.12);
  border: 1px solid rgba(244, 235, 225, 0.3);
  color: var(--ga-beige);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pt950-cart-icon-btn:hover {
  background: var(--ga-beige);
  color: var(--ga-navy);
}

.pt950-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--ga-beige);
  color: var(--ga-navy);
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO SECTION */
.pt950-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 60px 8%;
  background: linear-gradient(135deg, var(--ga-navy) 0%, #060F1E 100%);
  color: var(--ga-white);
  overflow: hidden;
}

.pt950-hero-content {
  max-width: 650px;
  z-index: 2;
}

.pt950-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 235, 225, 0.12);
  border: 1px solid var(--ga-beige-dark);
  color: var(--ga-beige);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.pt950-hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ga-white);
  margin-bottom: 22px;
}

.pt950-hero-title span {
  color: var(--ga-beige);
  font-style: italic;
  font-weight: 400;
}

.pt950-hero-subtitle {
  font-size: 1.15rem;
  color: var(--ga-slate-light);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.pt950-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ga-beige);
  color: var(--ga-navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(244, 235, 225, 0.2);
}

.pt950-btn:hover {
  transform: translateY(-3px);
  background: var(--ga-white);
  box-shadow: 0 10px 28px rgba(244, 235, 225, 0.35);
}

.pt950-btn-secondary {
  background: transparent;
  color: var(--ga-beige);
  border: 1px solid var(--ga-beige-dark);
  box-shadow: none;
}

.pt950-btn-secondary:hover {
  background: rgba(244, 235, 225, 0.1);
  border-color: var(--ga-beige);
  color: var(--ga-white);
}

.pt950-hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 520px;
  z-index: 1;
}

.pt950-hero-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--ga-beige-dark);
}

.pt950-hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* SECTION TITLES */
.pt950-section-title-wrap {
  text-align: center;
  margin-bottom: 35px;
}

.pt950-section-subtitle {
  color: var(--ga-navy);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.pt950-section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--ga-navy);
}

/* CATEGORIES GRID SHOWCASE STYLING */
.pt950-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}

.pt950-category-card {
  position: relative;
  background: var(--ga-white);
  border: 1px solid #EAE3D9;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.pt950-category-card:hover {
  transform: translateY(-6px);
  border-color: var(--ga-navy);
  box-shadow: 0 16px 32px rgba(10, 25, 47, 0.15);
}

.pt950-category-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pt950-category-card:hover .pt950-category-card-img {
  transform: scale(1.08);
}

.pt950-category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.05) 30%, rgba(10, 25, 47, 0.88) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.pt950-category-card:hover .pt950-category-card-overlay {
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.1) 20%, rgba(10, 25, 47, 0.95) 100%);
}

.pt950-category-card-info {
  position: relative;
  z-index: 2;
  padding: 18px;
  color: var(--ga-white);
}

.pt950-category-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ga-white);
  margin-bottom: 4px;
}

.pt950-category-card-count {
  font-size: 0.8rem;
  color: var(--ga-beige);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTAINER */
.pt950-container {
  padding: 45px 5%;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

/* LAYOUT WITH SIDEBAR */
.pt950-collections-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 35px;
  align-items: start;
}

/* PREMIUM E-COMMERCE SIDEBAR FILTER STYLING */
.pt950-sidebar-filter {
  background: var(--ga-white);
  border: 1px solid #E6DEC6;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
  position: sticky;
  top: 95px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.pt950-sidebar-filter::-webkit-scrollbar {
  width: 5px;
}
.pt950-sidebar-filter::-webkit-scrollbar-thumb {
  background: var(--ga-beige-dark);
  border-radius: 10px;
}

.pt950-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--ga-beige);
}

.pt950-sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--ga-navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pt950-reset-btn {
  font-size: 0.78rem;
  color: #8C7B68;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.pt950-reset-btn:hover {
  color: var(--ga-navy);
}

/* COLLAPSIBLE ACCORDION FILTER GROUPS */
.pt950-filter-group {
  margin-bottom: 14px;
  border: 1px solid #F0E8DD;
  border-radius: 10px;
  overflow: hidden;
  background: #FDFBF7;
  transition: all 0.25s ease;
}

.pt950-filter-group:hover {
  border-color: var(--ga-beige-dark);
}

.pt950-filter-header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: #FAF6F0;
}

.pt950-filter-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ga-navy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pt950-filter-icon {
  font-size: 0.75rem;
  color: var(--ga-navy);
  transition: transform 0.3s ease;
}

.pt950-filter-group.collapsed .pt950-filter-icon {
  transform: rotate(-90deg);
}

.pt950-filter-content {
  padding: 14px 16px;
  background: var(--ga-white);
  border-top: 1px solid #F0E8DD;
}

.pt950-filter-group.collapsed .pt950-filter-content {
  display: none;
}

/* CHECKBOX & LIST STYLING */
.pt950-filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.pt950-filter-list::-webkit-scrollbar {
  width: 4px;
}
.pt950-filter-list::-webkit-scrollbar-thumb {
  background: var(--ga-beige-dark);
  border-radius: 4px;
}

.pt950-filter-item {
  display: flex;
  align-items: center;
}

.pt950-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--ga-navy);
  transition: color 0.2s ease;
}

.pt950-checkbox-label:hover {
  color: #7A654C;
}

.pt950-checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ga-beige-dark);
  border-radius: 4px;
  outline: none;
  background: var(--ga-white);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pt950-checkbox-label input[type="checkbox"]:checked {
  background: var(--ga-navy);
  border-color: var(--ga-navy);
}

.pt950-checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  color: var(--ga-beige);
  font-size: 0.75rem;
  font-weight: 800;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pt950-filter-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: #8C7B68;
  font-weight: 600;
  background: var(--ga-beige);
  padding: 2px 7px;
  border-radius: 10px;
}

/* ELEGANT DUAL-BOX PRICE RANGE INPUTS */
.pt950-price-range {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pt950-price-box {
  position: relative;
  flex: 1;
}

.pt950-price-box span {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #8C7B68;
  font-weight: 700;
}

.pt950-price-box input {
  width: 100%;
  padding: 9px 8px 9px 24px;
  border: 1px solid var(--ga-beige-dark);
  border-radius: 6px;
  font-size: 0.85rem;
  background: #FDFBF7;
  color: var(--ga-navy);
  outline: none;
  font-family: var(--font-body);
}

.pt950-price-box input:focus {
  border-color: var(--ga-navy);
  background: var(--ga-white);
}

.pt950-view-more {
  font-size: 0.78rem;
  color: var(--ga-navy);
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.pt950-view-more:hover {
  color: #7A654C;
}

/* PRODUCT CARDS GRID */
.pt950-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.pt950-product-card {
  background: var(--ga-white);
  border: 1px solid #EAE3D9;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.04);
}

.pt950-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--ga-beige-dark);
  box-shadow: 0 16px 35px rgba(10, 25, 47, 0.12);
}

.pt950-card-img {
  position: relative;
  width: 100%;
  height: 280px;
  background: var(--ga-beige);
  overflow: hidden;
}

.pt950-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pt950-product-card:hover .pt950-card-img img {
  transform: scale(1.06);
}

.pt950-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ga-navy);
  color: var(--ga-beige);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.pt950-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pt950-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--ga-navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pt950-card-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #F0E8DD;
}

.pt950-card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ga-navy);
}

.pt950-card-actions {
  display: flex;
  gap: 8px;
}

.pt950-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ga-beige);
  border: 1px solid var(--ga-beige-dark);
  color: var(--ga-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pt950-icon-btn:hover {
  background: var(--ga-navy);
  color: var(--ga-beige);
  border-color: var(--ga-navy);
}

/* PRODUCT DETAIL PAGE */
.pt950-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--ga-white);
  border: 1px solid #EAE3D9;
  border-radius: 18px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.06);
}

.pt950-main-img-box {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ga-beige);
  border: 1px solid var(--ga-beige-dark);
}

.pt950-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.pt950-detail-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--ga-navy);
  margin-bottom: 12px;
}

.pt950-detail-category {
  color: #7A6953;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pt950-detail-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ga-navy);
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pt950-detail-price span {
  font-size: 0.9rem;
  color: var(--ga-slate);
  font-weight: 400;
}

.pt950-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 35px;
  background: var(--ga-beige);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--ga-beige-dark);
}

.pt950-spec-label {
  font-size: 0.75rem;
  color: #6C5D4B;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.pt950-spec-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ga-navy);
}

/* CART & ORDER PAGE */
.pt950-cart-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.pt950-cart-items-box,
.pt950-order-form-box {
  background: var(--ga-white);
  border: 1px solid #EAE3D9;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.06);
}

.pt950-cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #F0E8DD;
}

.pt950-cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ga-beige);
}

.pt950-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt950-cart-item-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--ga-navy);
  font-weight: 600;
}

.pt950-cart-item-price {
  color: var(--ga-navy);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 4px;
}

.pt950-form-group {
  margin-bottom: 22px;
}

.pt950-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ga-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pt950-form-group input,
.pt950-form-group textarea {
  width: 100%;
  background: #FDFBF7;
  border: 1px solid var(--ga-beige-dark);
  color: var(--ga-navy);
  padding: 14px 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.pt950-form-group input:focus,
.pt950-form-group textarea:focus {
  border-color: var(--ga-navy);
  background: var(--ga-white);
}

/* FOOTER */
.pt950-footer {
  margin-top: auto;
  background: var(--ga-navy);
  color: var(--ga-white);
  border-top: 3px solid var(--ga-beige-dark);
  padding: 50px 6% 35px;
  text-align: center;
  font-size: 0.9rem;
}

/* RESPONSIVE HEADER & MOBILE NAV */
.pt950-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(244, 235, 225, 0.3);
  color: var(--ga-beige);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pt950-menu-toggle:hover {
  background: rgba(244, 235, 225, 0.15);
}

@media (max-width: 768px) {
  .pt950-header {
    padding: 14px 4%;
  }
  .pt950-logo {
    font-size: 1.15rem;
  }
  .pt950-logo span {
    font-size: 0.8rem;
    padding-left: 6px;
    letter-spacing: 1px;
  }
  .pt950-menu-toggle {
    display: flex;
  }
  .pt950-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--ga-navy);
    flex-direction: column;
    padding: 18px 6%;
    gap: 16px;
    border-bottom: 2px solid var(--ga-beige-dark);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    z-index: 9999;
  }
  .pt950-nav.pt950-nav-open {
    display: flex;
  }
  .pt950-nav a {
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(244, 235, 225, 0.1);
  }
  .pt950-nav a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 992px) {
  .pt950-collections-layout {
    grid-template-columns: 1fr;
  }
  .pt950-sidebar-filter {
    position: relative;
    top: 0;
    max-height: none;
  }
  .pt950-hero {
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
  }
  .pt950-hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }
  .pt950-detail-wrapper,
  .pt950-cart-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px 18px;
  }
  .pt950-main-img-box {
    height: 320px;
  }
  .pt950-detail-title {
    font-size: 1.6rem;
  }
  .pt950-detail-price {
    font-size: 1.6rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 20px;
  }
  .pt950-spec-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
}

/* FLOATING MOBILE FILTER BUTTON & DRAWER STYLES */
.pt950-mobile-filter-trigger {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--ga-navy);
  color: var(--ga-beige);
  border: 1.5px solid var(--ga-beige-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.45);
  cursor: pointer;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pt950-mobile-filter-trigger:hover {
  transform: translateX(-50%) translateY(-2px);
  background: #060F1E;
}

.pt950-add-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, #F4EBE1 0%, #E2D4C3 100%);
  color: #0A192F;
  border: 1px solid #D5C2AD;
  border-radius: 8px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 3px 10px rgba(10, 25, 47, 0.08);
  transition: all 0.25s ease;
}

.pt950-add-cart-btn:hover {
  background: linear-gradient(135deg, #0A192F 0%, #162B4D 100%);
  color: #FFFFFF;
  border-color: #0A192F;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 25, 47, 0.25);
}

.pt950-add-cart-btn:active {
  transform: translateY(0);
}

.pt950-mobile-close-btn {
  display: none;
  background: var(--ga-beige);
  border: 1px solid var(--ga-beige-dark);
  color: var(--ga-navy);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .pt950-mobile-filter-trigger {
    display: flex;
  }
  .pt950-mobile-close-btn {
    display: flex;
  }
  .pt950-sidebar-filter {
    position: fixed;
    top: 0;
    left: -100%;
    width: 310px;
    height: 100vh;
    max-height: 100vh;
    z-index: 10000;
    border-radius: 0 20px 20px 0;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.3);
    background: #FFFFFF;
    overflow-y: auto;
  }
  .pt950-sidebar-filter.pt950-mobile-open {
    left: 0;
  }
}

/* FLOATING SITE-WIDE WHATSAPP BUTTON */
.pt950-whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9999;
  background: #25D366;
  color: #FFFFFF;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.pt950-whatsapp-float:hover {
  transform: scale(1.12);
  background: #20BA5A;
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* TOAST SNACKBAR */
.pt950-snackbar {
  visibility: hidden;
  min-width: 280px;
  background: var(--ga-navy);
  color: var(--ga-beige);
  text-align: center;
  border: 1px solid var(--ga-beige-dark);
  border-radius: 30px;
  padding: 14px 24px;
  position: fixed;
  z-index: 10001;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.pt950-snackbar.show {
  visibility: visible;
  opacity: 1;
  bottom: 85px;
}


