/* =========================================
   fancyjm - OpenCart Theme
   Aligned to fancyjm.com (Shopify) design tokens:
   bg #fff, text #000, body Poppins, headings Baskervville
   ========================================= */

:root {
  --fj-bg: #f7f7f2;
  --fj-surface: #ffffff;
  --fj-subtle: #f1f1ec;
  --fj-text: #000000;
  --fj-text-muted: #6b6b6b;
  --fj-border: #e8e8e3;
  --fj-accent: #000000;
  --fj-accent-hover: #2a2a2a;
  --fj-radius: 12px;
  --fj-spacing: 24px;
  --fj-page-width: 1320px;
  --fj-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fj-font-heading: 'Baskervville', Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--fj-bg);
  color: var(--fj-text);
  font-family: var(--fj-font);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  color: var(--fj-text);
  text-decoration: none;
}

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

.fj-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
/* Headings use the Baskervville serif, matching fancyjm */
h1, h2, h3, .fj-heading {
  font-family: var(--fj-font-heading);
  font-weight: 400;
  letter-spacing: 0;
}

/* Container */
.fj-container {
  width: 100%;
  max-width: var(--fj-page-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
#fj-header {
  background: var(--fj-surface);
  border-bottom: 1px solid var(--fj-border);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.fj-announcement {
  background: #c3cca6;
  color: var(--fj-text);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fj-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.fj-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--fj-text);
  padding: 4px;
}

.fj-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.fj-hamburger span {
  display: block;
  height: 2px;
  background-color: var(--fj-text);
  border-radius: 1px;
}

.fj-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.fj-logo img {
  max-height: 40px;
  width: auto;
}

.fj-logo span {
  font-family: var(--fj-font-heading);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.fj-search {
  flex: 1;
  max-width: 480px;
}

.fj-search form {
  position: relative;
  margin: 0;
}

.fj-search input[type="text"] {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid var(--fj-border);
  border-radius: 100px;
  background: var(--fj-subtle);
  font-size: 14px;
  outline: none;
  color: var(--fj-text);
}

.fj-search input[type="text"]:focus {
  border-color: var(--fj-text);
  background: var(--fj-surface);
}

.fj-search button {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--fj-text-muted);
  cursor: pointer;
  padding: 0;
  font-size: 16px;
}

.fj-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fj-header-actions a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--fj-text);
}

.fj-header-actions a:hover {
  opacity: 0.7;
}

.fj-header-actions #cart {
  position: relative;
}

.fj-header-actions .dropdown.d-grid,
.fj-header-actions #cart.dropdown {
  display: inline-block !important;
}

.fj-header-actions #cart .btn.btn-lg.btn-dark.dropdown-toggle,
.fj-header-actions .dropdown-toggle {
  background: transparent !important;
  border: none !important;
  color: var(--fj-text) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: none !important;
}

.fj-header-actions #cart .btn.btn-lg.btn-dark.dropdown-toggle::after,
.fj-header-actions .dropdown-toggle::after {
  display: none !important;
}

.fj-header-actions .dropdown-menu {
  border: 1px solid var(--fj-border);
  border-radius: var(--fj-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-top: 8px;
}

/* Menu */
.fj-menu {
  background: var(--fj-surface);
  border-bottom: 1px solid var(--fj-border);
}

.fj-menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.fj-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.fj-menu a {
  font-size: 14px;
  padding: 8px 0;
  color: var(--fj-text);
  white-space: nowrap;
}

.fj-menu a:hover {
  opacity: 0.7;
}

/* Hero */
.fj-hero {
  width: 100%;
  line-height: 0;
  background: var(--fj-bg);
}

.fj-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Section */
.fj-section {
  padding: 56px 0;
}

.fj-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  gap: 16px;
}

.fj-section-title {
  font-family: var(--fj-font-heading);
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0;
  color: #7a9c3d;
}

.fj-section-view,
.fj-view-all {
  font-family: var(--fj-font);
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--fj-text);
  white-space: nowrap;
  text-transform: lowercase;
}

.fj-section-view:hover,
.fj-view-all:hover {
  opacity: 0.7;
}

/* Module product grid - Bootstrap row with consistent gutters */
.fj-module-grid {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

@media (max-width: 991.98px) {
  .fj-module-grid {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }
}

@media (max-width: 575.98px) {
  .fj-module-grid {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }
}

/* Product grid - module override */
.fj-product-grid,
.row .fj-product-grid,
.tf-module-section .row {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 24px !important;
}

.fj-product-grid > *,
.tf-product-col,
.product-layout,
.fj-module-section .col,
.fj-module-section .col-6,
.fj-module-section [class*="col"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  flex: none !important;
}

/* Product card */
.product-thumb,
.fj-card {
  background: var(--fj-surface);
  border-radius: var(--fj-radius);
  overflow: hidden;
  border: none !important;
  box-shadow: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Override OpenCart default stylesheet.css which forces .description margin and .content flex:75% */
.product-thumb .content,
.fj-card .content,
.fj-card-body {
  flex: 1 1 auto !important;
  display: flex;
  flex-direction: column;
  padding: 14px 4px 4px !important;
  margin-bottom: 0 !important;
  position: relative !important;
  text-align: left;
}

.product-thumb .description,
.fj-card .description {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.product-thumb .description h4,
.fj-card-title {
  margin: 0 0 6px;
  font-family: var(--fj-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.product-thumb .description h4 a,
.fj-card-title a {
  color: var(--fj-text);
  text-decoration: none;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-thumb .description h4 a:hover,
.fj-card-title a:hover {
  opacity: 0.7;
}

.product-thumb .price,
.fj-card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--fj-text);
  margin-top: auto;
  padding-top: 8px;
}

.product-thumb .price .price-new,
.fj-card-price .price-new {
  color: var(--fj-text);
}

.product-thumb .price .price-old,
.fj-card-price .price-old {
  text-decoration: line-through;
  color: var(--fj-text-muted);
  margin-left: 6px;
  font-weight: 400;
}

/* Hide old theme clutter */
.hover-action,
.marketing-tags,
.btn-hover-buy,
.btn-hover-cart,
.tf-service-bar,
.tf-footer,
.tf-topbar,
.tf-header,
.tf-nav-wrapper,
#coupon-popup-modal,
.tf-section-line,
.coupon-popup {
  display: none !important;
}

/* Old theme class resets */
.tf-module-section,
.tf-section-header,
.floor-section,
.featured-layout-wrapper {
  border: none !important;
  background: transparent !important;
  color: inherit !important;
}

.tf-section-title {
  font-family: var(--fj-font-heading);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 32px;
  border: none !important;
}

/* Instagram / UGC wall */
.fj-insta-section {
  padding-bottom: 24px;
}

.fj-insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.fj-insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--fj-radius);
  background: var(--fj-subtle);
}

.fj-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.fj-insta-item:hover img {
  transform: scale(1.04);
}

/* FAQ accordion */
.fj-faq-list {
  max-width: 900px;
}

.fj-faq-item {
  border-bottom: 1px solid var(--fj-border);
}

.fj-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  font-family: var(--fj-font);
  font-size: 15px;
  font-weight: 400;
  color: var(--fj-text);
  text-align: left;
  cursor: pointer;
}

.fj-faq-question:hover {
  opacity: 0.7;
}

.fj-faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 16px;
}

.fj-faq-icon::before,
.fj-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--fj-text);
  transition: transform 0.2s;
}

.fj-faq-icon::before {
  width: 14px;
  height: 2px;
  top: 6px;
  left: 0;
}

.fj-faq-icon::after {
  width: 2px;
  height: 14px;
  top: 0;
  left: 6px;
}

.fj-faq-question[aria-expanded="true"] .fj-faq-icon::after {
  transform: rotate(90deg);
}

.fj-faq-answer {
  padding: 0 0 18px;
  color: var(--fj-text-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 760px;
}

/* About us */
.fj-about-section {
  background: var(--fj-surface);
  border-radius: var(--fj-radius);
  margin: 0 16px;
  max-width: calc(var(--fj-page-width) - 32px);
}

@media (min-width: 1352px) {
  .fj-about-section {
    margin: 0 auto;
  }
}

.fj-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.fj-about-image {
  overflow: hidden;
  border-radius: var(--fj-radius);
}

.fj-about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
}

.fj-about-content {
  padding: 24px 0;
}

.fj-about-content .fj-section-title {
  margin-bottom: 20px;
}

.fj-about-content p {
  color: #7a9c3d;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.fj-about-subtitle {
  font-weight: 500;
  margin-bottom: 0 !important;
}

/* Reviews */
.fj-reviews-section {
  padding: 80px 0;
  background: var(--fj-bg);
  overflow: visible;
}

.fj-reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.fj-reviews-header .fj-section-title {
  margin-bottom: 12px;
  line-height: 1.2;
}

.fj-reviews-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fj-stars {
  display: inline-flex;
  gap: 3px;
  color: #7a9c3d;
  font-size: 18px;
  line-height: 1;
}

.fj-star {
  font-style: normal;
}

.fj-star::before {
  content: '★';
}

.fj-reviews-count {
  font-size: 13px;
  color: var(--fj-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fj-reviews-count::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  vertical-align: -2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%237a9c3d' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.fj-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  min-height: 200px;
}

.fj-review-card {
  background: var(--fj-surface);
  border: 1px solid var(--fj-border);
  border-radius: var(--fj-radius);
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.fj-review-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 16px;
  color: var(--fj-text);
  word-break: break-word;
  flex: 1 1 auto;
}

.fj-review-author {
  font-size: 13px;
  color: var(--fj-text-muted);
  margin: 0;
  flex-shrink: 0;
}

/* Footer */
.fj-footer {
  background: var(--fj-subtle);
  border-top: 1px solid var(--fj-border);
  padding: 56px 0 24px;
  margin-top: 56px;
}

.fj-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.fj-footer h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 0;
  font-family: var(--fj-font);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fj-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fj-footer li {
  margin-bottom: 10px;
}

.fj-footer a {
  color: var(--fj-text-muted);
  font-size: 14px;
}

.fj-footer a:hover {
  color: var(--fj-text);
}

.fj-footer-bottom {
  border-top: 1px solid var(--fj-border);
  margin-top: 32px;
  padding-top: 16px;
  text-align: center;
  color: var(--fj-text-muted);
  font-size: 13px;
}

/* Category page product grid */
#product-list,
#product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 24px !important;
}

#product-list .col,
#product-grid .col,
#product-list .product-layout,
#product-grid .product-layout {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  flex: none !important;
  margin-bottom: 0 !important;
}

#product-category,
#product-info,
#product-search {
  padding: 24px 0;
}

#product-category .breadcrumb,
#product-info .breadcrumb,
#product-search .breadcrumb {
  background: transparent;
  padding: 0 0 16px;
  margin-bottom: 16px;
  font-size: 13px;
}

#product-category .breadcrumb a,
#product-info .breadcrumb a {
  color: var(--fj-text-muted);
}

#product-category h1,
#product-info h1,
#product-search h1 {
  font-family: var(--fj-font-heading);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 20px;
}

#product-category .btn-primary,
#product-info .btn-primary,
#button-cart,
#button-review {
  background: var(--fj-accent);
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
}

#product-category .btn-primary:hover,
#product-info .btn-primary:hover,
#button-cart:hover,
#button-review:hover {
  background: var(--fj-accent-hover);
}

#product-category .btn-light,
#product-info .btn-light {
  background: var(--fj-subtle);
  border: 1px solid var(--fj-border);
  color: var(--fj-text);
  border-radius: 100px;
}

#product-category .form-select,
#product-info .form-select,
#product-info .form-control {
  border: 1px solid var(--fj-border);
  border-radius: 8px;
}

/* Override old-theme inline styles on product page buttons */
#button-cart,
#button-cart.btn-info {
  background-color: var(--fj-accent) !important;
  border-color: var(--fj-accent) !important;
  color: #ffffff !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

#button-cart:hover,
#button-cart.btn-info:hover {
  background-color: var(--fj-accent-hover) !important;
  border-color: var(--fj-accent-hover) !important;
}

/* Dawn does not include a separate Buy Now button; hide the legacy one */
button[onclick*="buyNow"],
.btn-danger[onclick*="buyNow"] {
  display: none !important;
}

/* Hide old-theme promotional badges on product page */
.product-badges .badge {
  display: none !important;
}

.product-images-scroll-wrap a img {
  border-radius: 8px;
  border: 1px solid var(--fj-border);
}

/* Product page two-column layout: enforce side-by-side on desktop and top-alignment */
#product-info .row.mb-3 {
  align-items: flex-start;
}

#product-info .row.mb-3 > [class*="col-"] {
  min-width: 0;
}

/* Product thumbnail horizontal scroll strip (single row) */
.product-images-scroll-wrap {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 8px;
  margin-top: 12px;
  padding: 5px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.product-images-scroll-wrap::-webkit-scrollbar {
  height: 4px;
}

.product-images-scroll-wrap::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.product-images-scroll-wrap .thumb-item {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  display: block;
  text-decoration: none;
}

.product-images-scroll-wrap .thumb-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--fj-border);
  cursor: pointer;
  padding: 0;
}

#form-product .form-check-label {
  font-size: 14px;
}

#form-product h2,
#form-product h3,
#tab-description h2,
#tab-description h3 {
  font-family: var(--fj-font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}

.nav-tabs .nav-link {
  border: none;
  color: var(--fj-text-muted);
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  color: var(--fj-text);
  border-bottom: 2px solid var(--fj-accent);
}

/* ============================================================
   Responsive
   Menu / header breakpoint aligned to Bootstrap lg (992px),
   matching the template's d-lg-none / d-lg-block classes.
   ============================================================ */
@media (max-width: 991.98px) {
  .fj-header-inner {
    flex-wrap: wrap;
  }

  .fj-mobile-toggle {
    display: block;
    order: 0;
  }

  .fj-logo {
    order: 1;
    flex: 1;
    justify-content: center;
  }

  .fj-header-actions {
    order: 2;
    gap: 16px;
  }

  .fj-header-actions span {
    display: none;
  }

  .fj-search {
    order: 3;
    max-width: 100%;
    width: 100%;
    flex-basis: 100%;
  }

  /* Collapsible mobile nav: inline vertical list (Bootstrap collapse) */
  .fj-menu-inner {
    justify-content: flex-start;
    padding: 8px 0;
  }

  .fj-menu ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    width: 100%;
  }

  .fj-menu a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--fj-border);
  }

  .fj-section {
    padding: 40px 0;
  }

  .fj-section-title,
  .tf-section-title {
    font-size: 26px;
  }

  .fj-insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fj-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fj-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: 3 columns */
@media (max-width: 991.98px) {
  .fj-product-grid,
  .row .fj-product-grid,
  .tf-module-section .row,
  #product-list,
  #product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}

/* Phone: 2 columns (matches Dawn / fancyjm mobile grid) */
@media (max-width: 576px) {
  .fj-product-grid,
  .row .fj-product-grid,
  .tf-module-section .row,
  #product-list,
  #product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .fj-section {
    padding: 32px 0;
  }

  .fj-section-title,
  .tf-section-title {
    font-size: 24px;
  }

  #product-category h1,
  #product-info h1,
  #product-search h1 {
    font-size: 27px;
  }

  .fj-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .fj-insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .fj-reviews-grid {
    grid-template-columns: 1fr;
  }

  .fj-about-section {
    margin: 0 8px;
    padding: 32px 16px;
  }

  .fj-about-content {
    padding: 0;
  }
}

/* --- Product card tune-up 2026-07-21 (rev2: smaller, 4/row, centered) --- */
/* Constrain product grid so 4 cards per row are smaller and centered */
.featured-layout-wrapper {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.product-thumb .image {
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}
.product-thumb .image a {
    display: block;
    line-height: 0;
}
.product-thumb .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
}
.product-thumb .description h4 a {
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    height: auto !important;
    min-height: 32px;
    margin-bottom: 4px !important;
}
.product-thumb .price,
.product-thumb .price .price-new,
.product-thumb .price .price-old {
    text-align: center !important;
    width: 100%;
}
.product-thumb .price {
    padding-top: 4px !important;
}
/* --- Floating social customer-service bar (right side) 2026-07-21 --- */
.fj-floating-social {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fj-fs-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fj-fs-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}
.fj-fs-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.fj-fs-tiktok { background: #000000; }
.fj-fs-whatsapp { background: #25D366; }
.fj-fs-facebook { background: #1877F2; }
.fj-fs-instagram { background: #E1306C; }
@media (max-width: 575.98px) {
  .fj-floating-social { right: 10px; gap: 10px; }
  .fj-fs-btn { width: 40px; height: 40px; }
  .fj-fs-btn svg { width: 20px; height: 20px; }
}
