/* ===================================
   GRIPIX THEME - CLEAN VERSION
   =================================== */

/* === GLOBAL RESET === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; width: 100%; max-width: none; overflow-x: hidden; }
body { background: #0b0b0b; color: #fff; font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

/* === HEADER === */
.header {
  background-image: url('../img/header-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #d4af37 !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11, 11, 11, 0.8); z-index: 0; }
.header .container {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* === LOGO === */
.custom-logo-link { display: flex; align-items: center; transition: transform 0.3s ease; }
.custom-logo-link:hover { transform: translateY(-2px); }
.custom-logo { display: block; width: 200px; height: auto; object-fit: contain; }

/* === NAVIGATION === */
.main-nav { display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 30px; list-style: none; }
.main-nav li { margin: 0; }
.main-nav a { color: #fff; text-decoration: none; font-size: 16px; font-weight: 500; transition: color 0.3s ease; white-space: nowrap; }
.main-nav a:hover { color: #d4af37; }

/* === HEADER RIGHT === */
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }

/* === CART === */
.cart-link { position: relative; color: #fff; text-decoration: none; display: flex; align-items: center; background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; font-size: 0; transition: color 0.2s ease; }
.cart-link:hover { color: #d4af37; background: transparent !important; }
.cart-count { position: absolute; top: -8px; right: -10px; background: #d4af37; color: #000; font-size: 11px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* === BURGER (hidden on desktop) === */
.burger-btn { display: none; flex-direction: column; justify-content: center; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 4px; width: 32px; height: 32px; }
.burger-btn span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  right: auto;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #0f0f0f;
  z-index: 10000;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid rgba(212,175,55,0.2);
  border-left: none;
  overflow-y: auto;
}

.mobile-menu.open {
  left: 0;
  right: auto;
}
.mobile-menu-inner { padding: 30px 30px 50px; display: flex; flex-direction: column; height: 100%; }
.mobile-menu-close { align-self: flex-end; background: transparent; border: none; color: #fff; cursor: pointer; padding: 4px; margin-bottom: 30px; transition: color 0.2s ease; }
.mobile-menu-close:hover { color: #d4af37; }
.mobile-logo-link { display: block; margin-bottom: 40px; }
.mobile-logo { width: 160px; height: auto; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0 0 40px 0; }
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-list li a { display: block; padding: 16px 0; color: #fff; text-decoration: none; font-size: 17px; font-weight: 600; letter-spacing: 0.3px; transition: color 0.2s ease, padding-left 0.2s ease; }
.mobile-nav-list li a:hover { color: #d4af37; padding-left: 8px; }
.mobile-cta { display: block; background: linear-gradient(135deg, #d4af37, #f4d03f); color: #000; text-align: center; padding: 14px 20px; border-radius: 50px; font-weight: 800; font-size: 15px; text-decoration: none; margin-top: auto; transition: all 0.3s ease; }
.mobile-cta:hover { box-shadow: 0 8px 25px rgba(212,175,55,0.5); }
.mobile-menu-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* === HERO === */
.hero { position: relative; height: 820px; background-image: url('../img/hero.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: scroll; display: flex; align-items: center; justify-content: flex-end; padding: 0 10%; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to left, rgba(0,0,0,0.92) 20%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.25) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-badge { display: inline-block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: #d4af37; margin-bottom: 20px; font-weight: 600; }
.hero h1 { font-size: 3.6rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.hero-sub { font-size: 1.2rem; color: #cfcfcf; margin-bottom: 20px; line-height: 1.7; }
.hero-cta-group { display: flex; flex-direction: column; gap: 18px; }
.hero-btn-primary { display: inline-block; padding: 22px 55px; background: linear-gradient(135deg, #d4af37, #f4d03f); color: #000; font-weight: 800; text-decoration: none; border-radius: 60px; font-size: 18px; transition: all 0.3s ease; letter-spacing: 0.5px; width: fit-content; animation: glowPulse 2.5s ease-in-out infinite; }
.hero-btn-primary:hover { transform: translateY(-4px); box-shadow: 0 18px 55px rgba(212,175,55,0.7); }
.hero-trust { font-size: 15px; color: #aaaaaa; }

/* === HERO BULLETS === */
.hero-bullets { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 10px; }
.hero-bullets li { font-size: 16px; color: #ffffff; font-weight: 500; letter-spacing: 0.3px; }
.hero-bullets li::before { content: "✔ "; color: #d4af37; }

/* === BEFORE/AFTER === */
.before-after { background: #0d0d0d; padding: 30px 20px; }
.ba-heading-top { text-align: center; margin-bottom: 20px; }
.ba-heading-top h2 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.ba-heading-top .subtitle { color: #aaa; font-size: 15px; margin: 0; }
.ba-split { display: flex; width: 100%; height: 600px; max-width: 1200px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 1px solid rgba(212,175,55,0.3); }
.ba-video { flex: 1; position: relative; overflow: hidden; }
.ba-video video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; object-position: center center; }
.ba-divider { width: 3px; background: #d4af37; flex-shrink: 0; box-shadow: 0 0 10px rgba(212,175,55,0.6); }
.ba-drag { flex: 1; position: relative; overflow: hidden; }
.ba-drag .twenty20-wrapper, .ba-drag .twenty20 { width: 100% !important; height: 600px !important; }
.ba-drag .twenty20 img { width: 100% !important; height: 600px !important; object-fit: cover !important; object-position: center center !important; }
.ba-drag .twentytwenty-container { overflow: hidden !important; }
.ba-drag .twentytwenty-before, .ba-drag .twentytwenty-after { top: 0 !important; height: 100% !important; }


#gripix-install-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* === TRUST BADGES === */
.trust-badges { display: flex; justify-content: space-around; gap: 20px; padding: 40px 20px; background: #0e0e0e; border-top: 1px solid rgba(255, 255, 255, 0.1); align-items: flex-start; }
.badge { text-align: center; max-width: 300px; padding: 10px 15px; }
.badge-icon { display: flex; justify-content: center; align-items: center; margin-bottom: 8px; height: 60px; }
.badge-icon img { width: 70px; height: 70px; object-fit: contain; }
.badge h3 { font-size: 18px; font-weight: 700; color: #d4af37; margin-bottom: 6px; line-height: 1.3; }
.badge p { font-size: 13px; line-height: 1.5; color: #ffffff; }

/* === MATERIAL SLIDER === */
.material-slider { background: #141414; padding: 16px 20px; }
.material-heading { text-align: center; margin-bottom: 16px; }
.material-heading h2 { font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.material-heading p { font-size: 0.9rem; color: #d4af37; letter-spacing: 1px; text-transform: uppercase; }
.mat-slider-section { max-width: 1200px; margin: 0 auto 8px; padding: 0 20px; }
.mat-slider-title { color: #d4af37; font-size: 1.2rem; letter-spacing: 3px; text-transform: uppercase; text-align: center; margin-bottom: 8px; font-weight: 700; }
.mat-slider-wrap { position: relative; display: flex; align-items: center; gap: 10px; }
.mat-track-outer { overflow: hidden; flex: 1; width: 0; }
.mat-track { display: flex; transition: transform 0.4s ease; }
.mat-slide { min-width: calc(33.333%); margin-right: 0; padding: 0 6px; position: relative; border-radius: 16px; overflow: hidden; box-sizing: border-box; }
.mat-slide img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; border-radius: 16px; height: auto; }
.mat-label { position: absolute; bottom: 12px; left: 14px; color: #fff; font-size: 13px; font-weight: 700; background: rgba(0,0,0,0.5); padding: 4px 10px; border-radius: 20px; }
.mat-btn { background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.4); color: #d4af37; width: 40px; height: 40px; border-radius: 50%; font-size: 22px; cursor: pointer; flex-shrink: 0; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; }
.mat-btn:hover { background: #d4af37; color: #000; }


@media (max-width: 768px) {
  .mat-slider-wrap { gap: 0; position: relative; }
  .mat-track-outer { width: 100%; overflow: hidden; }
  .mat-track { display: flex; }
  .mat-slide { min-width: 100%; padding: 0; box-sizing: border-box; }
  .mat-slide img { aspect-ratio: 1/1; height: auto; width: 100%; display: block; }
  .mat-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.5); color: #fff; }
  .mat-prev { left: 10px; }
  .mat-next { right: 10px; }
  .mat-slider-section { margin: 0 auto 24px; padding: 0 12px; }
  .mat-slider-title { margin-bottom: 6px; }
  .material-slider { padding: 12px 12px; }
}

/* === OUR PROCESS === */
.our-process { background: #0f0f0f; padding: 60px 20px; text-align: center; border-top: 1px solid rgba(212, 175, 55, 0.2); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-badge { display: inline-block; background: linear-gradient(135deg, #d4af37, #f4d03f); color: #000; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
.our-process h2 { font-size: 2.8rem; font-weight: 800; color: #ffffff; margin-bottom: 12px; }
.process-subtitle { font-size: 16px; color: #888; margin-bottom: 50px; }
.process-steps { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.process-step { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 16px; padding: 35px 25px; flex: 1; min-width: 220px; max-width: 260px; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.process-step:hover { border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1); }
.process-number { width: 56px; height: 56px; background: linear-gradient(135deg, #d4af37, #f4d03f); color: #000; border-radius: 50%; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.process-step h3 { font-size: 17px; font-weight: 700; color: #ffffff; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: #888; line-height: 1.6; }
.process-link { color: #d4af37; font-weight: 600; text-decoration: underline; }
.process-link:hover { color: #f4d03f; }

/* === REVIEWS === */
.trust-section { background: #101010; padding: 60px 20px; text-align: center; color: white; position: relative; }
.trust-section h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 700; }
.trust-stars { color: #ffd700; margin-top: 10px; font-size: 28px; font-weight: 600; letter-spacing: 2px; }
.reviews-slider { margin-top: 40px; display: flex; gap: 25px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.reviews-slider::-webkit-scrollbar { display: none; }
.review-card { min-width: 260px; background: rgba(0,0,0,0.75); padding: 20px; border-radius: 10px; display: flex; flex-direction: column; min-height: 500px; }
.review-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }
.review-card .review-stars { color: #ffd700; font-size: 24px; margin-bottom: 12px; letter-spacing: 3px; }
.review-card p { font-size: 16px; line-height: 1.6; color: #fff; font-style: italic; margin-bottom: 8px; }
.review-author { display: block; font-size: 14px; font-weight: 600; color: #d4af37; text-align: center; margin-bottom: auto; }
.verified-badge { display: flex; justify-content: center; padding-top: 16px; }
.verified-badge img { filter: brightness(0) saturate(100%) invert(80%) sepia(50%) saturate(400%) hue-rotate(5deg); width: 50px; height: 50px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(212, 175, 55, 0.9); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 24px; cursor: pointer; z-index: 10; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.slider-arrow:hover { background: #d4af37; transform: translateY(-50%) scale(1.1); }
.slider-arrow-left { left: 20px; }
.slider-arrow-right { right: 20px; }

/* === REVIEW FORM === */
.review-form-wrap { background: rgba(0,0,0,0.75); border: 1px solid rgba(240, 195, 109, 0.2); border-radius: 16px; padding: 35px 40px; margin: 40px auto 0; max-width: 560px; text-align: left; }
.review-form-wrap h3 { color: #f0c36d; font-size: 22px; margin-bottom: 20px; text-align: center; }
.review-form input[type="text"], .review-form textarea { width: 100%; padding: 10px 14px; background: #1a1a1a; border: 1px solid #333; border-radius: 8px; color: #fff; font-size: 14px; margin-bottom: 12px; display: block; }
.review-form textarea { resize: vertical; }
.review-form input[type="file"] { width: 100%; padding: 10px 14px; background: #0f0f0f; border: 1px dashed #444; border-radius: 8px; color: #888; font-size: 14px; margin-bottom: 4px; cursor: pointer; }
.review-form input[type="file"]:hover { border-color: #f0c36d; }
.review-form small { color: #666; display: block; margin-bottom: 12px; text-align: center; }
.star-rating-input { display: flex; justify-content: center; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 12px; }
.star-rating-input span { color: #888; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.stars-select { display: flex; gap: 6px; cursor: pointer; justify-content: center; }
.stars-select .star { font-size: 32px; color: #f0c36d; transition: transform 0.15s ease; line-height: 1; }
.stars-select .star:hover, .stars-select .star.active { transform: scale(1.2); color: #ffd27f; }
.stars-select .star.inactive { color: #444; }
#submitReviewBtn { background: #f0c36d; color: #000; border: none; padding: 12px 30px; border-radius: 30px; font-weight: 700; cursor: pointer; font-size: 16px; width: 100%; margin-top: 8px; }
#submitReviewBtn:hover { background: #ffd27f; }
.review-success { background: #1a3a1a; border: 1px solid #2a6a2a; color: #7fd97f; padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; text-align: center; }

/* === FOOTER === */
.footer { background-image: url('../img/header-bg.jpg'); background-size: cover; background-position: center; border-top: 2px solid #d4af37 !important; box-shadow: 0 -4px 20px rgba(212, 175, 55, 0.6) !important; position: relative; padding: 60px 20px 30px; }
.footer::before { content: ''; position: absolute; inset: 0; background: rgba(11, 11, 11, 0.88); z-index: 0; }
.footer-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.footer-columns { display: flex; gap: 60px; justify-content: space-between; flex-wrap: wrap; margin-bottom: 40px; }
.footer-col h4 { color: #d4af37; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: #d4af37; }
.footer-social { display: flex; gap: 16px; margin-top: 4px; }
.footer-social a { color: #aaa; transition: color 0.2s ease, transform 0.2s ease; display: flex; align-items: center; }
.footer-social a:hover { color: #d4af37; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; }
.footer-bottom p { color: #555; font-size: 13px; }

/* === STICKY CTA === */
#sticky-cta-wrap { position: fixed; bottom: 30px; right: 30px; background: #1a1a1a; border: 1px solid rgba(212,175,55,0.3); border-radius: 16px; padding: 16px 20px; box-shadow: 0 8px 30px rgba(0,0,0,0.5); z-index: 9999; opacity: 0; transform: translateY(20px); transition: all 0.3s ease; text-align: center; max-width: 240px; }
#sticky-cta-text { color: #aaa; font-size: 13px; margin-bottom: 10px; }
#sticky-cta { position: static; display: block; background: linear-gradient(135deg, #d4af37, #f4d03f); color: #000; font-weight: 800; font-size: 14px; padding: 12px 20px; border-radius: 50px; text-decoration: none; box-shadow: 0 4px 15px rgba(212,175,55,0.4); transition: all 0.3s ease; opacity: 1; transform: none; }
#sticky-cta:hover { box-shadow: 0 8px 25px rgba(212,175,55,0.7); transform: translateY(-2px); }

/* === PAGE CONTENT === */
.page-content { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.page-id-99 .page-content { max-width: 100% !important; margin: 0 !important; padding: 0 !important; }

/* === CTA BOX === */
.cta-box { margin-top: 30px; background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%); padding: 35px; border-radius: 14px; border: 2px solid #d4af37; box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3); }

/* === ANIMATIONS === */
@keyframes glowPulse {
  0%   { box-shadow: 0 0 15px rgba(212,175,55,0.4); }
  50%  { box-shadow: 0 0 35px rgba(212,175,55,0.8); }
  100% { box-shadow: 0 0 15px rgba(212,175,55,0.4); }
}
@keyframes chevronSweep {
  0%   { transform: translateX(-8px); opacity: 0.4; }
  50%  { transform: translateX(0px); opacity: 1; }
  100% { transform: translateX(8px); opacity: 0.4; }
}

.desktop-only-flex { display: flex; }
.mobile-only { display: none; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header { height: 70px; position: -webkit-sticky; position: sticky; top: 0; }
  .header .container { grid-template-columns: auto 1fr auto; gap: 0; padding: 0 16px; }
  .main-nav { display: none; }
  .burger-btn { display: flex; }
  .custom-logo-link { justify-content: center; }
  .custom-logo { width: 140px; }
  .header-right { gap: 12px; }

  .hero { height: 680px; justify-content: center; text-align: center; padding: 0 20px; background-attachment: scroll !important; background-position: center !important; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 2.2rem; }
  .hero-btn-primary { margin: 0 auto; padding: 18px 36px; font-size: 16px; }
  .hero-sub { font-size: 1rem; }

  .before-after { padding: 30px 16px; }
  .ba-heading-top h2 { font-size: 1.8rem; }
  .ba-split { flex-direction: column; height: auto; border-radius: 12px; }
  .ba-video { height: 320px; flex: none; }
  .ba-video video { object-fit: cover; object-position: center center; width: 100%; height: 100%; }
  .ba-divider { width: 100%; height: 3px; }
  .ba-drag { height: 380px; flex: none; }
  .ba-drag .twenty20-wrapper, .ba-drag .twenty20 { height: 380px !important; }
  .ba-drag .twenty20 img { height: 380px !important; }

  .trust-badges { flex-direction: column; align-items: center; gap: 25px; padding: 30px 20px; }
  .badge { max-width: 100%; }

  .slide-overlay { font-size: 2rem; left: 20px; bottom: 16px; }

  .our-process h2 { font-size: 2rem; }
  .process-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .process-step { max-width: 100%; width: 100%; min-width: 0; padding: 20px 15px; }
  .process-step h3 { font-size: 14px; }
  .process-step p { font-size: 12px; }
  .process-number { width: 40px; height: 40px; font-size: 16px; }

  .trust-section h2 { font-size: 1.8rem; }
  .trust-stars { font-size: 20px; }
  .review-card { min-width: 220px; }

  .review-form-wrap { padding: 24px 20px; }

  .footer-columns { flex-direction: column; gap: 30px; }
  .footer { padding: 40px 20px 20px; }

#sticky-cta-wrap { bottom: 16px; right: 16px; max-width: 200px; padding: 12px 16px; -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform; }
  .header { -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform; }

}
.mobile-social {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-social a {
  color: #aaa;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.mobile-social a:hover { color: #d4af37; }
@media (max-width: 768px) {
  .footer-columns { align-items: center; text-align: center; }
  .footer-col ul { display: flex; flex-direction: column; align-items: center; }
  .footer-social { justify-content: center; }
  
  .ba-drag .twentytwenty-before,
  .ba-drag .twentytwenty-after { top: -15px !important; height: calc(100% + 20px) !important; }
  
.before-after,
.trust-badges,
.material-slider,
.our-process,
.trust-section {
  border-top: 1px solid rgba(212,175,55,0.15);
  position: relative;
}

.before-after::before,
.trust-badges::before,
.material-slider::before,
.our-process::before,
.trust-section::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#sticky-cta-text { display: none !important; }
#sticky-cta-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.desktop-only-flex { display: none !important; }
.mobile-only { display: block !important; }

}
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
}

/* ===== CART ===== */
.woocommerce-cart .page-content {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.woocommerce-cart table.shop_table {
  background: #1a1a1a !important;
  border: 1px solid rgba(212,175,55,0.2) !important;
  border-radius: 16px !important;
  overflow: hidden;
  border-collapse: separate !important;
}

.woocommerce-cart table.shop_table thead tr th {
  background: #111 !important;
  color: #d4af37 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(212,175,55,0.2) !important;
}

.woocommerce-cart table.shop_table td {
  background: #1a1a1a !important;
  color: #fff !important;
  padding: 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  vertical-align: middle !important;
}

.woocommerce-cart table.shop_table td.product-name a {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.woocommerce-cart table.shop_table td.product-name a:hover { color: #d4af37 !important; }

.woocommerce-cart table.shop_table td.product-name dl.variation dt,
.woocommerce-cart table.shop_table td.product-name dl.variation dd,
.woocommerce-cart table.shop_table td.product-name dl.variation p {
  color: #aaa !important;
  font-size: 12px !important;
  margin: 0 !important;
}

.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal {
  color: #d4af37 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

.woocommerce-cart table.shop_table td.product-remove a {
  color: #555 !important;
  font-size: 22px !important;
  transition: color 0.2s ease;
}

.woocommerce-cart table.shop_table td.product-remove a:hover { color: #d4af37 !important; }

.woocommerce-cart table.shop_table input.qty {
  background: #111 !important;
  border: 1px solid rgba(212,175,55,0.3) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  width: 65px !important;
  text-align: center;
}

.woocommerce-cart td.actions {
  background: #111 !important;
  padding: 16px 20px !important;
}

.woocommerce-cart td.actions input.coupon_code {
  background: #1a1a1a !important;
  border: 1px solid rgba(212,175,55,0.3) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
}

.woocommerce-cart .cart-collaterals {
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 30px;
  margin-top: 30px;
}

.woocommerce-cart .cart-collaterals h2 {
  color: #d4af37 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.woocommerce-cart .cart-collaterals table th,
.woocommerce-cart .cart-collaterals table td {
  color: #fff !important;
  background: transparent !important;
  border-color: rgba(255,255,255,0.06) !important;
  padding: 12px 0 !important;
}

.woocommerce-cart .cart-collaterals .order-total th,
.woocommerce-cart .cart-collaterals .order-total td {
  color: #d4af37 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.checkout-button {
  background: linear-gradient(135deg, #d4af37, #f4d03f) !important;
  color: #000 !important;
  font-weight: 800 !important;
  border-radius: 50px !important;
  padding: 14px 30px !important;
  font-size: 15px !important;
  border: none !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.checkout-button:hover {
  box-shadow: 0 8px 25px rgba(212,175,55,0.5) !important;
  transform: translateY(-2px) !important;
  background: linear-gradient(135deg, #f4d03f, #d4af37) !important;
}



