/* ==========================================================
   READYMADEPRINT COMBINED MASTER CSS 
   (FINAL CLEANED, MULTI-DEVICE VERIFIED &amp; ALL SECTIONS INCLUDED)
========================================================== */

:root {
  --rmp-primary: #ff2b45;
  --rmp-primary-dark: #e91e38;
  --rmp-text: #111;
  --rmp-muted: #666;
  --rmp-border: rgba(0,0,0,0.08);
  --rmp-bg: #f7f7f7;
  --rmp-radius-lg: 20px;
  --rmp-radius-md: 12px;
}

body { 
  font-family: 'Poppins', sans-serif; 
  color: var(--rmp-text); 
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================
   1. GLOBAL BUTTONS, HOVER EFFECTS &amp; ELEMENTOR FIXES
========================================================== */
.button, 
.main-btn, 
.woocommerce ul.products li.product .button,
.woocommerce button.button.alt,
.services-grid .service-box a {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rmp-primary), var(--rmp-primary-dark)) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 14px 32px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(255, 43, 69, 0.2) !important;
  z-index: 1;
}

/* Luxury Light Reflection Hover Effect (Shimmer) */
.button::before, 
.main-btn::before, 
.woocommerce ul.products li.product .button::before,
.woocommerce button.button.alt::before,
.services-grid .service-box a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: none;
  z-index: -1;
}

.button:hover, 
.main-btn:hover, 
.woocommerce ul.products li.product .button:hover,
.woocommerce button.button.alt:hover,
.services-grid .service-box a:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 12px 28px rgba(255, 43, 69, 0.45) !important;
  background: linear-gradient(135deg, var(--rmp-primary-dark), var(--rmp-primary)) !important;
}

.button:hover::before, 
.main-btn:hover::before, 
.woocommerce ul.products li.product .button:hover::before,
.woocommerce button.button.alt:hover::before,
.services-grid .service-box a:hover::before {
  left: 150%;
  transition: all 0.8s ease;
}

/* Home Page Specific Elementor Button Tweaks */
.elementor-button {
  transition: 0.3s ease !important;
  border-radius: 50px !important;
}

.elementor-button:hover {
  background: #ff3b3b !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* ==========================================================
   2. PRODUCT CARDS &amp; WOOCOMMERCE SHOP
========================================================== */
.woocommerce ul.products li.product {
  border-radius: var(--rmp-radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: #fff;
  border: 1px solid var(--rmp-border);
  padding: 15px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
  border-color: rgba(255, 43, 69, 0.15);
}

.woocommerce ul.products li.product img {
  border-radius: var(--rmp-radius-md) !important;
  transition: transform 0.5s ease;
}

.woocommerce ul.products li.product:hover img { 
  transform: scale(1.04); 
}

/* ==========================================================
   3. ACCOUNT PAGE (DESKTOP LAYOUT)
========================================================== */
.woocommerce-account .woocommerce { 
  display: flex; 
  gap: 30px; 
  align-items: flex-start;
}
.woocommerce-MyAccount-navigation { 
  width: 280px; 
  background: #fff; 
  border-radius: var(--rmp-radius-lg); 
  padding: 25px; 
  border: 1px solid var(--rmp-border);
  flex-shrink: 0;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-MyAccount-navigation li {
  margin-bottom: 8px;
}
.woocommerce-MyAccount-navigation a { 
  display: block; 
  padding: 12px 18px; 
  border-radius: var(--rmp-radius-md); 
  text-decoration: none; 
  color: var(--rmp-text); 
  font-weight: 500;
  transition: 0.3s ease; 
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation a:hover { 
  background: rgba(255, 43, 69, 0.06); 
  color: var(--rmp-primary);
}
.woocommerce-MyAccount-content { 
  flex: 1; 
  background: #fff; 
  padding: 35px; 
  border-radius: var(--rmp-radius-lg); 
  border: 1px solid var(--rmp-border); 
}

/* ==========================================================
   4. SERVICES GRID (DESKTOP LAYOUT)
========================================================== */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.service-box {
  background: #fff;
  padding: 35px;
  border-radius: var(--rmp-radius-lg);
  border: 1px solid var(--rmp-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  border-color: rgba(255, 43, 69, 0.15);
}

.service-box h2 {
  font-size: 26px; 
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--rmp-text);
  font-weight: 600;
}

.service-box p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--rmp-muted);
  margin-bottom: 30px;
  flex-grow: 1;
}

/* ==========================================================
   5. PREMIUM SUBSCRIPTION PRICING SECTION
========================================================== */
.pricing-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.pricing-top {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.pricing-top h1 {
  font-size: 46px !important;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--rmp-text, #111);
}

.pricing-top h3 {
  font-size: 24px !important;
  color: var(--rmp-primary, #ff2b45);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-top p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--rmp-muted, #666);
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--rmp-radius-lg, 20px);
  overflow: hidden;
  border: 1px solid var(--rmp-border, rgba(0,0,0,0.08));
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  border-color: rgba(255, 43, 69, 0.15);
}

.plan-top {
  padding: 40px 30px;
  text-align: center;
  color: #fff;
}

.silver .plan-top { background: linear-gradient(135deg, #a1a1a1, #6b6b6b); }
.gold .plan-top { background: linear-gradient(135deg, #e5ad24, #b27e0a); }
.diamond .plan-top { background: linear-gradient(135deg, #1e3c72, #2a5298); }

.plan-top h2 {
  font-size: 32px !important;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff !important;
  letter-spacing: 0.5px;
}

/* Image Utilities integrated for Top Badges &amp; Trials */
.trial-text {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: none;
}

.badge-text {
  display: inline-block !important;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px !important;
  border-radius: 4px;
  font-size: 11px !important;
  margin-top: 10px;
  font-weight: 500;
  text-transform: none !important;
}

.price {
  text-align: center;
  padding: 35px 20px 20px;
  font-size: 52px;
  font-weight: 700;
  color: var(--rmp-text, #111);
  line-height: 1;
}

.price p {
  font-size: 14px;
  font-weight: normal;
  color: var(--rmp-muted, #666);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card ul {
  padding: 10px 35px 30px;
  list-style: none;
  margin: 0;
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li::before {
  content: "✓";
  font-weight: bold;
}

.silver ul li::before { color: #7a7a7a; }
.gold ul li::before { color: #d4a017; }
.diamond ul li::before { color: #2a5298; }

.highlight-li {
  color: var(--rmp-primary, #ff2b45) !important;
  font-weight: 600;
}

.pricing-card ul li strong {
  color: var(--rmp-text, #111);
  font-weight: 600;
}

/* PRICING SHIMMER BUTTONS */
.pricing-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 70px);
  margin: 10px auto 35px;
  padding: 15px 25px !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none !important;
  text-align: center;
  z-index: 1;
}

.pricing-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: -1;
}

.pricing-btn:hover::before {
  left: 150%;
  transition: all 0.8s ease;
}

.silver .pricing-btn { background: linear-gradient(135deg, #a1a1a1, #6b6b6b) !important; }
.silver .pricing-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 22px rgba(107, 107, 107, 0.4) !important;
  background: linear-gradient(135deg, #6b6b6b, #a1a1a1) !important;
}

.gold .pricing-btn { background: linear-gradient(135deg, #e5ad24, #b27e0a) !important; }
.gold .pricing-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 22px rgba(178, 126, 10, 0.4) !important;
  background: linear-gradient(135deg, #b27e0a, #e5ad24) !important;
}

.diamond .pricing-btn { background: linear-gradient(135deg, #1e3c72, #2a5298) !important; }
.diamond .pricing-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 22px rgba(42, 82, 152, 0.4) !important;
  background: linear-gradient(135deg, #2a5298, #1e3c72) !important;
}

/* CARD FOOTER TEXT CENTERED FIX */
.card-footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--rmp-muted, #666);
  padding: 0 25px 30px 25px;
  margin-top: -10px;
  line-height: 1.5;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================
   6. FORMS, CORES &amp; SYSTEM CLEANUP
========================================================== */
input, textarea, select { 
  border-radius: var(--rmp-radius-md) !important; 
  border: 1px solid var(--rmp-border); 
  padding: 12px 16px; 
  transition: all 0.3s;
  width: 100%;
}
input:focus, textarea:focus, select:focus { 
  outline: none; 
  border-color: var(--rmp-primary); 
  box-shadow: 0 0 0 4px rgba(255, 43, 69, 0.1);
}

#rmp-cart-drawer { position: fixed; right: -400px; top: 0; width: 380px; height: 100%; background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); z-index: 9999; }
#rmp-cart-drawer.active { right: 0; }
#rmp-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 9998; }
#rmp-overlay.active { opacity: 1; visibility: visible; }

.page-title, h1.page-title, .entry-title {
  display: none !important;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-top: 3px solid var(--rmp-primary) !important;
  background-color: #fff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
  border-radius: var(--rmp-radius-md) !important;
  padding: 15px 20px !important;
}

/* ==========================================================
   7. TABLET RESPONSIVE BREAKPOINT (768px to 1024px)
========================================================== */
@media (max-width: 1024px) {
  .woocommerce-account .woocommerce { gap: 20px; }
  .woocommerce-MyAccount-navigation { width: 220px; padding: 15px; }
  .woocommerce-MyAccount-navigation a { padding: 10px 12px; font-size: 14px; }
  .woocommerce-MyAccount-content { padding: 25px; }
  .woocommerce ul.products li.product { padding: 10px !important; }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px 15px;
  }
  .service-box { padding: 25px; }
  .service-box h2 { font-size: 22px; }

  .pricing-section { padding: 60px 15px; }
  .pricing-top h1 { font-size: 38px !important; }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
  .plan-top h2 { font-size: 28px !important; }
  .price { font-size: 44px; }

  h1 { font-size: 38px !important; }
  h2 { font-size: 30px !important; }
}

/* ==========================================================
   8. MOBILE RESPONSIVE BREAKPOINT (0px to 767px)
========================================================== */
@media (max-width: 767px) {
  /* ACCOUNT PAGE MOBILE */
  .woocommerce-account .woocommerce { flex-direction: column; gap: 20px; }
  .woocommerce-MyAccount-navigation { width: 100% !important; margin-bottom: 0px; padding: 15px; }
  .woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; gap: 8px; }
  .woocommerce-MyAccount-navigation li { flex: 1 1 calc(50% - 4px); margin-bottom: 0; }
  .woocommerce-MyAccount-navigation ul li a { font-size: 14px; padding: 10px; text-align: center; border: 1px solid var(--rmp-border); }
  .woocommerce-MyAccount-content { width: 100%; padding: 20px; }

  /* SHOP PRODUCTS &amp; CARDS BUTTONS */
  .woocommerce ul.products li.product { padding: 12px !important; border-radius: var(--rmp-radius-md); }
  .woocommerce a.button, 
  .main-btn,
  .woocommerce button.button.alt,
  .woocommerce ul.products li.product .button { 
    width: 100% !important; 
    text-align: center; 
    padding: 14px 20px !important; 
  }
  
  /* SERVICES GRID MOBILE */
  .services-grid { grid-template-columns: 1fr; gap: 20px; padding: 20px 10px; }
  .service-box { padding: 25px 20px; border-radius: 16px; }
  .service-box h2 { font-size: 22px; margin-bottom: 12px; }
  .service-box p { font-size: 14px; margin-bottom: 22px; }
  .services-grid .service-box a { width: 100% !important; text-align: center; padding: 14px 20px !important; }
  
  /* SUBSCRIPTION PRICING MOBILE */
  .pricing-section { padding: 40px 10px; }
  .pricing-top { margin-bottom: 40px; }
  .pricing-top h1 { font-size: 30px !important; line-height: 1.25; }
  .pricing-top h3 { font-size: 18px !important; }
  .pricing-top p { font-size: 14px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
  .pricing-card { border-radius: 18px; }
  .plan-top { padding: 30px 20px; }
  .price { font-size: 42px; padding: 25px 20px 15px; }
  .pricing-card ul { padding: 0 25px 25px; }
  .pricing-card ul li { font-size: 14px; padding: 11px 0; }
  .pricing-btn { width: calc(100% - 50px); }
  .card-footer-note { font-size: 11px; padding: 0 20px 25px 20px; }

  /* TYPOGRAPHY OVERRIDES */
  h1 { font-size: 28px !important; line-height: 1.25; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }
  p { font-size: 14px; line-height: 1.5; }
  
  .elementor-section { padding-left: 10px !important; padding-right: 10px !important; }
  img { border-radius: var(--rmp-radius-md) !important; }
  #rmp-cart-drawer { width: 100%; right: -100%; }
}

.rmp-premium-section{

    width:100%;
    padding:100px 6%;

    background:#ffffff;

    font-family:sans-serif;
}

/* HEADER */

.rmp-header{

    text-align:center;

    max-width:900px;

    margin:auto auto 70px;
}

.rmp-header h2{

    font-size:60px;

    line-height:1.1;

    font-weight:800;

    color:#111;

    margin-bottom:25px;
}

.rmp-header p{

    font-size:22px;

    color:#666;

    line-height:1.8;
}

/* TOP GRID */

.rmp-top-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

    margin-bottom:50px;
}

/* CARDS */

.rmp-card{

    background:#fff;

    border-radius:35px;

    padding:50px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);

    transition:0.5s ease;

    position:relative;

    overflow:hidden;
}

.rmp-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.12);
}

/* ICON */

.rmp-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:30px;
}

/* CARD TITLE */

.rmp-card h3{

    font-size:38px;

    margin-bottom:20px;

    color:#111;
}

/* CARD TEXT */

.rmp-card p{

    font-size:19px;

    line-height:1.9;

    color:#666;

    margin-bottom:35px;
}

/* BUTTON */

.rmp-btn{

    display:inline-block;

    padding:18px 38px;

    border-radius:60px;

    background:#111;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:0.4s ease;
}

.rmp-btn:hover{

    background:#ff2d55;

    transform:scale(1.05);
}

/* WHY BOX */

.rmp-why-box{

    background:#fafafa;

    padding:60px;

    border-radius:35px;

    margin-bottom:50px;
}

.rmp-why-box h2{

    font-size:50px;

    margin-bottom:40px;

    color:#111;
}

/* LIST GRID */

.rmp-list-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;
}

.rmp-list-item{

    background:#fff;

    padding:25px;

    border-radius:20px;

    font-size:19px;

    line-height:1.7;

    transition:0.4s ease;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.04);
}

.rmp-list-item:hover{

    transform:translateY(-8px);

    background:#111;

    color:#fff;
}

/* WORK BOX */

.rmp-work-box{

    text-align:center;
}

.rmp-work-box h2{

    font-size:50px;

    margin-bottom:40px;

    color:#111;
}

/* WORK GRID */

.rmp-work-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

/* WORK ITEM */

.rmp-work-item{

    background:#fff;

    padding:35px 20px;

    border-radius:25px;

    font-size:20px;

    font-weight:600;

    transition:0.5s ease;

    box-shadow:
    0 5px 25px rgba(0,0,0,0.05);
}

.rmp-work-item span{

    display:block;

    font-size:40px;

    margin-bottom:15px;
}

.rmp-work-item:hover{

    transform:
    translateY(-10px);

    background:#111;

    color:#fff;
}

/* MOBILE */

@media(max-width:768px){

    .rmp-header h2{
        font-size:38px;
    }

    .rmp-top-grid,
    .rmp-list-grid,
    .rmp-work-grid{

        grid-template-columns:1fr;
    }

    .rmp-card,
    .rmp-why-box{

        padding:35px 25px;
    }

    .rmp-card h3,
    .rmp-why-box h2,
    .rmp-work-box h2{

        font-size:32px;
    }

    .rmp-card p,
    .rmp-list-item,
    .rmp-work-item{

        font-size:17px;
    }

}

.rmp-category-section{

    width:100%;

    padding:100px 40px;

    background:#fff;

    overflow:hidden;
}

/* HEADER */

.rmp-cat-header{

    text-align:center;

    margin-bottom:70px;
}

.rmp-cat-header h2{

    font-size:60px;

    font-weight:800;

    color:#111;

    margin-bottom:20px;
}

.rmp-cat-header p{

    font-size:22px;

    color:#666;
}

/* GRID */

.rmp-category-grid{

    display:grid;

    grid-template-columns:repeat(12,1fr);

    gap:30px;

    width:100%;
}

/* CARD */

.rmp-card{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    background:#f5f5f5;

    min-height:520px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

    transition:0.5s ease;
}

/* TOP 3 */

.textile,
.fashion,
.decor{

    grid-column:span 4;
}

/* BOTTOM 2 */

.ads,
.arch{

    grid-column:span 6;

    min-height:450px;
}

/* IMAGE */

.rmp-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:0.8s ease;
}

/* HOVER */

.rmp-card:hover{

    transform:
    translateY(-10px);
}

.rmp-card:hover img{

    transform:scale(1.08);
}

/* OVERLAY */

.rmp-overlay{

    position:absolute;

    left:20px;

    right:20px;

    bottom:20px;

    background:rgba(255,255,255,0.92);

    padding:22px;

    border-radius:22px;

    text-align:center;

    backdrop-filter:blur(10px);
}

/* TITLE */

.rmp-overlay h3{

    font-size:28px;

    color:#111;

    margin-bottom:8px;
}

/* VIEW */

.rmp-overlay span{

    color:#ff2d55;

    font-weight:700;

    font-size:14px;
}

/* MOBILE */

@media(max-width:1024px){

    .textile,
    .fashion,
    .decor,
    .ads,
    .arch{

        grid-column:span 12;
    }

}

@media(max-width:768px){

    .rmp-category-section{

        padding:70px 20px;
    }

    .rmp-cat-header h2{

        font-size:38px;
    }

    .rmp-cat-header p{

        font-size:17px;
    }

    .rmp-card{

        min-height:360px;
    }

}

.rmp-learn-section{

    width:100%;

    padding:110px 5%;

    background:#ffffff;
}

/* MAIN LAYOUT */

.rmp-learn-content{

    display:grid;

    grid-template-columns:1fr 1.1fr;

    gap:60px;

    align-items:center;
}

/* TEXT SIDE */

.rmp-learn-text{

    padding-right:20px;
}

/* TAG */

.rmp-tag{

    display:inline-block;

    padding:10px 22px;

    background:#111;

    color:#fff;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:30px;

    letter-spacing:1px;
}

/* HEADING */

.rmp-learn-text h2{

    font-size:64px;

    line-height:1.1;

    font-weight:800;

    color:#111;

    margin-bottom:30px;

    letter-spacing:-2px;
}

/* PARAGRAPH */

.rmp-learn-text p{

    font-size:21px;

    line-height:1.9;

    color:#666;

    margin-bottom:35px;
}

/* LIST */

.rmp-learn-text ul{

    list-style:none;

    padding:0;

    margin:0 0 40px;
}

.rmp-learn-text ul li{

    position:relative;

    padding-left:35px;

    margin-bottom:18px;

    font-size:18px;

    color:#222;
}

.rmp-learn-text ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#ff2d55;

    font-weight:800;
}

/* BUTTON */

.rmp-learn-btn{

    display:inline-block;

    padding:18px 38px;

    background:#111;

    color:#fff;

    text-decoration:none;

    border-radius:60px;

    font-weight:700;

    transition:0.4s ease;
}

.rmp-learn-btn:hover{

    background:#ff2d55;

    transform:translateY(-5px);
}

/* VIDEO BOX */

.rmp-video-box{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    box-shadow:
    0 15px 60px rgba(0,0,0,0.12);

    transition:0.5s ease;
}

.rmp-video-box:hover{

    transform:
    translateY(-10px);
}

/* VIDEO */

.rmp-video-box iframe{

    width:100%;

    height:600px;

    display:block;
}

/* RESPONSIVE */

@media(max-width:1024px){

    .rmp-learn-content{

        grid-template-columns:1fr;
    }

    .rmp-learn-text h2{

        font-size:50px;
    }

}

@media(max-width:768px){

    .rmp-learn-section{

        padding:80px 20px;
    }

    .rmp-learn-text h2{

        font-size:38px;
    }

    .rmp-learn-text p{

        font-size:17px;
    }

    .rmp-video-box iframe{

        height:300px;
    }

}

.rmp-offer-section{

    width:100%;

    padding:100px 5% 40px;

    background:#fff;

    text-align:center;
}

.rmp-offer-tag{

    display:inline-block;

    padding:10px 22px;

    background:#111;

    color:#fff;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:30px;

    letter-spacing:1px;
}

.rmp-offer-content h2{

    font-size:72px;

    line-height:1.1;

    font-weight:800;

    color:#111;

    margin-bottom:25px;

    letter-spacing:-2px;
}

.rmp-offer-content p{

    font-size:22px;

    color:#666;

    max-width:850px;

    margin:auto;

    line-height:1.8;
}

@media(max-width:768px){

    .rmp-offer-content h2{

        font-size:42px;
    }

    .rmp-offer-content p{

        font-size:17px;
    }

}

/* =========================
TEXTILE CATEGORY SECTION
========================= */

.textile-categories{
padding:80px 20px;
max-width:1500px;
margin:auto;
font-family:Poppins,sans-serif;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:48px;
font-weight:700;
margin-bottom:10px;
color:#111;
}

.section-title p{
font-size:18px;
color:#666;
}

/* GRID */

.category-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* CARD */

.category-card{
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s ease;
display:flex;
flex-direction:column;
height:100%;
}

.category-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* IMAGE */

.category-card img{
width:100%;
height:240px;
object-fit:cover;
display:block;
transition:.6s ease;
}

.category-card:hover img{
transform:scale(1.08);
}

/* CONTENT */

.card-content{
padding:20px;
flex:1;
display:flex;
flex-direction:column;
}

.badge{
display:inline-block;
padding:6px 14px;
background:#ff3152;
color:#fff;
font-size:12px;
font-weight:600;
border-radius:30px;
margin-bottom:12px;
width:fit-content;
}

.card-content h3{
font-size:20px;
font-weight:700;
line-height:1.3;
margin-bottom:12px;
color:#111;
}

.card-content a{
text-decoration:none;
font-weight:600;
color:#ff3152;
margin-top:auto;
}

.card-content a:hover{
padding-left:5px;
}

/* =========================
THEME TAGS
========================= */

.theme-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
padding:40px 0;
}

.theme-card{
padding:12px 20px;
background:#fff;
border:1px solid #e5e5e5;
border-radius:50px;
font-size:14px;
font-weight:600;
cursor:pointer;
transition:.35s ease;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.theme-card:hover{
background:#ff3152;
color:#fff;
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(255,49,82,.25);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.category-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:991px){

.category-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.category-grid{
grid-template-columns:1fr;
gap:25px;
}

.section-title h2{
font-size:34px;
}

.section-title p{
font-size:16px;
}

.category-card img{
height:220px;
}

.card-content h3{
font-size:18px;
}

}

/* PRODUCT CARD */

.woocommerce ul.products li.product{
background:#fff;
border-radius:20px;
padding:12px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
transition:.4s ease;
overflow:hidden;
}

.woocommerce ul.products li.product:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* IMAGE */

.woocommerce ul.products li.product img{
width:100%!important;
height:280px!important;
object-fit:cover;
border-radius:15px;
transition:.5s;
}

.woocommerce ul.products li.product:hover img{
transform:scale(1.05);
}

/* TITLE */

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title{
font-size:22px!important;
font-weight:600!important;
line-height:1.3;
padding-top:15px;
}

/* PRICE */

.woocommerce ul.products li.product .price{
font-size:18px!important;
font-weight:700!important;
color:#000!important;
}

/* BUTTON */

.woocommerce ul.products li.product .button{
border-radius:50px!important;
padding:12px 24px!important;
}

.post-meta,
.entry-meta,
.elementor-post-info{
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.post-meta *,
.entry-meta *,
.elementor-post-info *{
    white-space: nowrap !important;
    word-break: normal !important;
}

/* ============================================================
   RMP-MOBILE-FIX-PATCH-V1
   Fixes oversized cart icon + oversized product/category images
   ============================================================ */

/* Cart icon: force a small fixed size (was inheriting an oversized font-size) */
.ast-site-header-cart .astra-icon.ast-icon-shopping-basket,
.ast-header-woo-cart .astra-icon.ast-icon-shopping-basket {
  font-size: 20px !important;
  line-height: 1 !important;
}
.ast-icon-shopping-basket svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
}
.ast-site-header-cart i.astra-icon:after {
  top: -8px !important;
  right: -10px !important;
}

@media (max-width: 767px) {
  /* New Arrivals / Shop product card images: reduce oversized fixed height */
  .woocommerce ul.products li.product img {
    height: 190px !important;
  }
  .woocommerce ul.products li.product h2,
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px !important;
  }

  /* "Our Categories" banner cards: reduce oversized min-height */
  .rmp-category-grid .rmp-card {
    min-height: 220px !important;
  }
  .rmp-cat-header h2 {
    font-size: 28px !important;
  }

  /* Textile categories grid card image */
  .category-card img {
    height: 170px !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products li.product img {
    height: 160px !important;
  }
  .rmp-category-grid .rmp-card {
    min-height: 180px !important;
  }
}

/* ============================================================
   RMP-DESKTOP-CATEGORY-FIX-V1
   Reduces oversized "Our Categories" banner cards on desktop/tablet
   (mobile sizing already handled by RMP-MOBILE-FIX-PATCH-V1)
   ============================================================ */
@media (min-width: 768px) {
  .rmp-category-grid .rmp-card {
    min-height: 380px !important;
  }
  .rmp-category-grid .ads,
  .rmp-category-grid .arch {
    min-height: 320px !important;
  }
}

/* ============================================================
   RMP-BANNER-FIX-V2
   "Our Categories" banner: images are 1024x1536 portrait and were
   stretching cards to their intrinsic ratio. Fixed heights + absolute
   cover image stop the stretch on ALL screen sizes.
   ============================================================ */
.rmp-category-grid .rmp-card {
  min-height: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}
.rmp-category-grid .rmp-card img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Desktop */
@media (min-width: 1025px) {
  .rmp-category-grid .rmp-card {
    height: 380px !important;
  }
  .rmp-category-grid .ads,
  .rmp-category-grid .arch {
    height: 320px !important;
  }
}

/* Tablet (cards stack full-width here) */
@media (min-width: 769px) and (max-width: 1024px) {
  .rmp-category-grid .rmp-card {
    height: 300px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .rmp-category-grid .rmp-card {
    height: 220px !important;
  }
}

/* ============================================================
   RMP-INSTA-GRID-V1
   "Our Categories": Instagram-style compact square cards.
   Mobile = 2 columns, Tablet = 3 columns.
   Overrides earlier banner sizing patches on small screens.
   ============================================================ */

/* --- MOBILE: 2-column Instagram grid --- */
@media (max-width: 768px) {
  .rmp-category-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .rmp-category-grid .rmp-card,
  .rmp-category-grid .textile,
  .rmp-category-grid .fashion,
  .rmp-category-grid .decor,
  .rmp-category-grid .ads,
  .rmp-category-grid .arch {
    grid-column: auto !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px !important;
  }
  /* Last card (5th) spans both columns, shorter like a wide post */
  .rmp-category-grid .arch {
    grid-column: span 2 !important;
    aspect-ratio: 2 / 1 !important;
  }
  .rmp-category-grid .rmp-overlay {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
  }
  .rmp-category-grid .rmp-overlay h3 {
    font-size: 14px !important;
    margin-bottom: 1px !important;
    line-height: 1.2 !important;
  }
  .rmp-category-grid .rmp-overlay span {
    font-size: 10px !important;
  }
  .rmp-cat-header {
    margin-bottom: 30px !important;
  }
}

/* --- TABLET: 3-column grid --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .rmp-category-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 16px !important;
  }
  .rmp-category-grid .rmp-card,
  .rmp-category-grid .textile,
  .rmp-category-grid .fashion,
  .rmp-category-grid .decor,
  .rmp-category-grid .ads,
  .rmp-category-grid .arch {
    grid-column: auto !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 20px !important;
  }
  /* 5th card spans remaining width nicely */
  .rmp-category-grid .arch {
    grid-column: span 3 !important;
    aspect-ratio: 3 / 1 !important;
  }
  .rmp-category-grid .rmp-overlay h3 {
    font-size: 18px !important;
  }
  .rmp-category-grid .rmp-overlay span {
    font-size: 12px !important;
  }
}

/* --- DESKTOP: tighten overlay a bit (sizes already fixed) --- */
@media (min-width: 1025px) {
  .rmp-category-grid .rmp-overlay {
    padding: 14px 16px !important;
  }
  .rmp-category-grid .rmp-overlay h3 {
    font-size: 20px !important;
    margin-bottom: 3px !important;
  }
  .rmp-category-grid .rmp-overlay span {
    font-size: 12px !important;
  }
}

/* ============================================================
   RMP-PRODUCT-GRID-V1
   1) Architecture category card square like others.
   2) Product cards (New Arrivals/Bestsellers/Shop) 2-column
      compact grid on mobile — Instagram style.
   ============================================================ */

/* --- 1) Architecture card: same square size as other cards --- */
@media (max-width: 768px) {
  .rmp-category-grid .arch {
    grid-column: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .rmp-category-grid .arch {
    grid-column: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
}

/* --- 2) Products: 2-column compact grid on mobile --- */
@media (max-width: 768px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin: 0 !important;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 8px !important;
    float: none !important;
  }
  .woocommerce ul.products li.product img {
    height: 130px !important;
    border-radius: 10px !important;
  }
  .woocommerce ul.products li.product h2,
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px !important;
    line-height: 1.3 !important;
    padding-top: 8px !important;
    font-weight: 600 !important;
  }
  .woocommerce ul.products li.product .price {
    font-size: 13px !important;
  }
  /* Secondary meta text smaller */
  .woocommerce ul.products li.product .ast-woo-product-category,
  .woocommerce ul.products li.product .ast-loop-product__link,
  .woocommerce ul.products li.product a.rmp-dl-btn {
    font-size: 11px !important;
  }
  /* Buttons compact */
  .woocommerce ul.products li.product .button {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 400px) {
  .woocommerce ul.products li.product img {
    height: 110px !important;
  }
}

/* ============================================================
   RMP-PRODUCT-GRID-V2
   Covers full 0-1024px range (V1 only covered &lt;=768px and this
   device&#039;s effective width is in the 769-1024 tablet range).
   ============================================================ */
@media (max-width: 1024px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    margin: 0 !important;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px !important;
    float: none !important;
  }
  .woocommerce ul.products li.product img {
    height: 190px !important;
    border-radius: 10px !important;
  }
  .woocommerce ul.products li.product h2,
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
    line-height: 1.3 !important;
    padding-top: 8px !important;
    font-weight: 600 !important;
  }
  .woocommerce ul.products li.product .price {
    font-size: 14px !important;
  }
  .woocommerce ul.products li.product .button {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products li.product img {
    height: 130px !important;
  }
  .woocommerce ul.products li.product h2,
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 12px !important;
  }
  .woocommerce ul.products li.product .price {
    font-size: 12px !important;
  }
}

/* ============================================================
   RMP-LOGO-FIX-V1
   Fix logo "R" getting cut off in header on mobile.
   Reduce left padding, ensure logo container has room.
   ============================================================ */
.site-logo-img,
.custom-logo-link,
.ast-site-identity,
.site-branding {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.site-logo-img img,
.custom-logo-link img {
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 768px) {
  .ast-site-identity {
    padding: 0.5em 0 !important;
    margin: 0 !important;
  }
  .site-logo-img {
    padding: 0 !important;
    margin-right: 0.5em !important;
  }
  .site-branding {
    padding-left: 0 !important;
  }
}



/* ============================================================
   RMP-LOGO-FIX-V3
   Root cause found: logo has thin strokes; earlier fixes (V2,
   RESPONSIVE) shrank it to 140-160px on mobile which made the
   thin strokes anti-alias into a faded/broken look (esp. the
   R's curve). Fix: keep it comfortably sized instead of shrinking.
   ============================================================ */
.custom-logo-link {
  display: inline-block !important;
  max-width: 240px !important;
  overflow: visible !important;
}

.custom-logo {
  max-width: 100% !important;
  height: auto !important;
  width: auto !important;
  display: block !important;
}

@media (max-width: 768px) {
  .custom-logo-link {
    max-width: 230px !important;
  }
  .site-logo-img img,
  .custom-logo-link img {
    max-width: 230px !important;
    width: 230px !important;
  }
  .site-branding, .ast-site-identity {
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }
}

@media (max-width: 480px) {
  .custom-logo-link {
    max-width: 210px !important;
  }
  .site-logo-img img,
  .custom-logo-link img {
    max-width: 210px !important;
    width: 210px !important;
  }
}

/* ============================================================
   RMP-BLOG-PAGE-FIX-V1
   Blog listing page: card styling + visual content truncation
   (CSS-only, does not touch Elementor's post query/rendering).
   ============================================================ */
.elementor-loop-container.elementor-grid {
  gap: 24px !important;
}

[class*="e-loop-item-"] {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: 0.3s ease;
}

[class*="e-loop-item-"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Truncate long post content with a fade-out effect */
[class*="e-loop-item-"] .elementor-widget-theme-post-content .elementor-widget-container {
  max-height: 150px;
  overflow: hidden;
  position: relative;
}

[class*="e-loop-item-"] .elementor-widget-theme-post-content .elementor-widget-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

[class*="e-loop-item-"] .elementor-widget-theme-post-content table {
  display: none;
}

/* Read More button styling */
[class*="e-loop-item-"] .elementor-widget-button {
  margin-top: 12px;
}

[class*="e-loop-item-"] .elementor-button {
  background: linear-gradient(135deg, #ff2b45, #e91e38) !important;
  border-radius: 999px !important;
  padding: 10px 26px !important;
}

@media (max-width: 768px) {
  [class*="e-loop-item-"] {
    padding: 16px !important;
  }
  [class*="e-loop-item-"] .elementor-heading-title {
    font-size: 17px !important;
  }
}

/* ============================================================
   RMP-BLOG-PAGE-FIX-V2
   Fixes: card layout (title/content/button were laid out as a
   flex ROW, squeezing the button) and content truncation
   (previous selector never matched this Elementor version's markup).
   ============================================================ */

/* Force each loop-item's flex container to stack vertically */
[class*="e-loop-item-"] .e-con.e-flexbox-base {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

[class*="e-loop-item-"] .e-con.e-flexbox-base &gt; .elementor-element {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
}

/* Title */
[class*="e-loop-item-"] .elementor-widget-theme-post-title {
  margin-bottom: 10px !important;
}
[class*="e-loop-item-"] .elementor-heading-title {
  font-size: 19px !important;
  line-height: 1.35 !important;
}

/* Content: truncate with fade (correct selector this time — no
   nested .elementor-widget-container exists in this markup) */
[class*="e-loop-item-"] .elementor-widget-theme-post-content {
  max-height: 140px !important;
  overflow: hidden !important;
  position: relative !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}
[class*="e-loop-item-"] .elementor-widget-theme-post-content h2,
[class*="e-loop-item-"] .elementor-widget-theme-post-content h3 {
  font-size: 15px !important;
}
[class*="e-loop-item-"] .elementor-widget-theme-post-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

/* Button: left-aligned, normal size, not stretched/squeezed */
[class*="e-loop-item-"] .elementor-widget-button {
  margin-top: 14px !important;
  text-align: left !important;
  flex: none !important;
  width: auto !important;
  align-self: flex-start !important;
}
[class*="e-loop-item-"] .elementor-button {
  display: inline-flex !important;
  width: auto !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #ff2b45, #e91e38) !important;
  border-radius: 999px !important;
  padding: 10px 26px !important;
}

/* ============================================================
   RMP-BANNER-TEXT-ALIGN-FIX
   Hero banner (home page): center-align heading + subtext on desktop.
   ============================================================ */

@media (min-width: 1025px) {
  /* Hero banner container */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider_top":"wave'] {
    text-align: center !important;
  }

  /* Heading inside banner */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider_top":"wave'] .elementor-heading-title {
    text-align: center !important;
  }

  /* Paragraphs/subtext inside banner */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider_top":"wave'] p {
    text-align: center !important;
  }

  /* Fallback: target by common banner structure */
  .elementor-widget-theme-site-title .elementor-heading-title,
  .elementor-widget-heading .elementor-heading-title,
  [class*="hero"] .elementor-heading-title,
  [class*="banner"] .elementor-heading-title {
    text-align: center !important;
  }

  [class*="hero"] p,
  [class*="banner"] p {
    text-align: center !important;
  }
}

/* ============================================================
   RMP-BANNER-CENTER-FULL
   Hero banner (home page): center-align ALL content including
   decorative elements, lines, containers, not just text.
   ============================================================ */

@media (min-width: 1025px) {
  /* Banner section: display flex with center alignment */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider'] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* All direct containers inside banner */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider'] .elementor-container {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Banner columns/inner sections */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider'] .elementor-column {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Heading widget + text */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider'] .elementor-heading-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Paragraphs */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider'] p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 800px !important;
  }

  /* Button container center */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider'] .elementor-widget-button {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* Any decorative lines/elements */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider'] .elementor-widget-divider {
    margin-left: auto !important;
    margin-right: auto !important;
    width: auto !important;
  }

  /* SVG/image elements inside banner */
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider'] svg,
  .elementor-section.elementor-section-full_width[data-settings*='"shape_divider'] img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* BEGIN RMP-SHOWCASE-MOVED (page 7474 se uthaya gaya) */
.rmp-showcase-section {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #F7ECED !important;
    border-top: 1px solid #f0d5d7;
    border-bottom: 1px solid #f0d5d7;
    padding: 70px 20px;
    color: #0f172a !important;
}
.rmp-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}
.rmp-showcase-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}
.rmp-showcase-pill {
    background: #ef233c !important;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
}
.rmp-showcase-header h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
}
.rmp-showcase-header p {
    font-size: 16px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
}

/* VIDEO EMBED CONTAINER */
.rmp-video-box {
    max-width: 960px;
    margin: 0 auto 50px;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.rmp-video-player {
    width: 100%;
    border-radius: 12px;
    outline: none;
    background: #0f172a;
    display: block;
}

.rmp-cat-block {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.rmp-cat-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 20px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}
.rmp-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.rmp-step-card {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.rmp-step-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #e2e8f0;
}
.rmp-step-content {
    padding: 16px;
}
.rmp-step-num {
    font-size: 11px;
    font-weight: 800;
    color: #ef233c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.rmp-step-content h4 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 6px !important;
}
.rmp-step-content p {
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}
@media (max-width: 768px) {
    .rmp-showcase-section { padding: 40px 15px !important; }
    .rmp-showcase-header h2 { font-size: 26px !important; line-height: 1.3 !important; }
    .rmp-cat-block { padding: 20px !important; margin-bottom: 30px !important; border-radius: 16px !important; }
    .rmp-cat-title { font-size: 19px !important; gap: 8px !important; }
    .rmp-step-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; gap: 16px !important; }
    .rmp-video-box { padding: 10px !important; border-radius: 16px !important; margin-top: 30px !important; }
}
@media (max-width: 480px) {
    .rmp-showcase-section { padding: 30px 12px !important; }
    .rmp-showcase-header h2 { font-size: 22px !important; }
    .rmp-showcase-header p { font-size: 14px !important; }
    .rmp-cat-title { font-size: 17px !important; }
    .rmp-step-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
    .rmp-step-card img { height: 210px !important; }
}
/* END RMP-SHOWCASE-MOVED */

/* BEGIN RMP-SHOWCASE-FIX */
/* wpautop put literal <br /> inside the page's own , which kills the whole
   rule in every browser. These re-state the two declarations that were lost, from
   Customizer CSS where wpautop cannot reach them. 'contain' not 'cover': half these
   images are technical drawings (floor plan, tech pack, cutting pattern) and cover
   would crop the drawing, which defeats the point of showing it. */
.rmp-step-card img{width:100%!important;height:230px!important;object-fit:contain!important;background:#fff!important;display:block!important;padding:8px!important;box-sizing:border-box!important;border-bottom:1px solid #e2e8f0!important}
.rmp-step-card{display:flex!important;flex-direction:column!important;overflow:hidden!important}
.rmp-step-content{padding:14px 16px!important;flex:1 1 auto!important}
@media(max-width:767px){.rmp-step-card img{height:200px!important}}
/* END RMP-SHOWCASE-FIX */
