:root {
  --maroon: #5a1218;
  --deep-maroon: #34080c;
  --gold: #c9a45c;
  --soft-gold: #f6edd8;
  --ivory: #fff9ef;
  --charcoal: #1d1a18;
  --muted: #746b63;
  --white: #ffffff;
  --border: rgba(201, 164, 92, 0.28);
  --shadow: 0 20px 50px rgba(52, 8, 12, 0.16);
  --radius: 22px;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 14px;
}

h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  margin-top: 0;
}

h2 {
  font-size: clamp(32px, 4.8vw, 56px);
  color: var(--deep-maroon);
  margin-bottom: 18px;
}

h3 {
  font-size: 26px;
  color: var(--deep-maroon);
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  font-size: 16px;
}

.site-alert {
  padding: 14px;
  text-align: center;
  font-weight: 700;
}

.site-alert-success {
  background: #1f7a3f;
  color: #ffffff;
}

.site-alert-error {
  background: #b00020;
  color: #ffffff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #d8b76d, #a77b32);
  color: var(--deep-maroon);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 164, 92, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
  background: rgba(52, 8, 12, 0.34);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: var(--deep-maroon);
  color: #ffffff;
}

.btn-dark:hover {
  background: var(--maroon);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff3cf;
}

.hero-picture,
.hero-picture img {
  width: 100%;
  display: block;
}

.hero-picture img {
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 58px;
  z-index: 2;
  pointer-events: none;
}

.hero-buttons {
  pointer-events: auto;
  justify-content: flex-start;
}

.nav-strip {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 249, 239, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--deep-maroon);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--maroon);
}

.intro-grid,
.legacy-grid,
.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.visual-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: url("assets/Diamond Polki 2.jpg") center/cover no-repeat;
  min-height: 430px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(52, 8, 12, 0.06);
}

.stat strong {
  display: block;
  color: var(--deep-maroon);
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 4px;
}

.categories {
  background: linear-gradient(180deg, #fff7ea, #f7ead2);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.category-grid,
.testimonial-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card,
.testimonial-card,
.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(52, 8, 12, 0.07);
}

.category-card {
  padding: 30px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
}

.category-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.text-link {
  color: var(--maroon);
  font-weight: 700;
  font-size: 14px;
}

.offer-band {
  background: var(--deep-maroon);
  color: #ffffff;
  border-radius: 28px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.offer-band h2,
.offer-band p {
  color: #ffffff;
}

.offer-band p {
  color: #f3dfbd;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 18px;
  height: 560px;
}

.lookbook-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 36px rgba(52, 8, 12, 0.12);
}

.lookbook-item:nth-child(1) {
  background-image: url("assets/Antique Gold.jpg");
}

.lookbook-item:nth-child(2) {
  background-image: url("assets/Diamond Polki.jpg");
}

.lookbook-item:nth-child(3) {
  background-image: url("assets/Diamond.jpg");
}

.lookbook-item:nth-child(4) {
  background-image: url("assets/Jadau.jpg");
}

.lookbook-item.tall {
  grid-row: span 2;
}

.lookbook-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(52, 8, 12, 0.72), transparent 60%);
}

.lookbook-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #ffffff;
}

.lookbook-caption h3 {
  color: #ffffff;
}

.lookbook-caption .text-link {
  color: var(--soft-gold);
}

/* Legacy */
    .legacy {
      background: var(--white);
    }

    .legacy-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 46px;
      align-items: center;
    }

    .legacy-box {
      background: linear-gradient(145deg, var(--deep-maroon), var(--maroon));
      border-radius: 28px;
      padding: 48px;
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .legacy-box strong {
      display: block;
      font-family: var(--font-heading);
      font-size: clamp(46px, 7vw, 82px);
      line-height: 1;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .legacy-box p {
      color: var(--soft-gold);
    }

    .trust-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 28px;
    }

    .trust-item {
      padding: 20px;
      border-radius: 18px;
      background: var(--ivory);
      border: 1px solid var(--border);
    }

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.trust-item {
  padding: 20px;
  border-radius: 18px;
  background: var(--ivory);
  border: 1px solid var(--border);
}

.testimonials {
  background: #f8ecd7;
}

.testimonial-card {
  padding: 26px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.form-section {
  background: linear-gradient(110deg, rgba(52, 8, 12, 0.96), rgba(90, 18, 24, 0.91)), url("assets/Diamond Polki 2.jpg") center/cover no-repeat;
  color: #ffffff;
}

.form-section h2,
.form-section p {
  color: #ffffff;
}

.lead-form {
  background: #ffffff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  color: var(--deep-maroon);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #e2d1b4;
  border-radius: 14px;
  padding: 14px 15px;
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  background: #fffdf9;
}

.field textarea {
  min-height: 105px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
}

.form-note {
  color: var(--muted) !important;
  font-size: 12px;
  margin-top: 12px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.location-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(52, 8, 12, 0.07);
}

.map-placeholder {
  height: 170px;
  background: linear-gradient(135deg, #efe1c3, #d9bd79);
  display: grid;
  place-items: center;
  color: var(--deep-maroon);
  font-weight: 700;
  text-align: center;
  padding: 18px;
}

.location-body {
  padding: 22px;
}

.location-body p {
  font-size: 14px;
  margin-bottom: 16px;
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-btn {
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--maroon);
  text-align: center;
  background: #fffaf1;
}

.blog-card {
  overflow: hidden;
  transition: 0.25s ease;
}

.blog-thumb {
  height: 210px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 22px;
  position: relative;
}

.blog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(52, 8, 12, 0.28);
}

.blog-thumb span {
  position: relative;
  z-index: 1;
}

.blog-body {
  padding: 24px;
}

.footer {
  background: #160304;
  color: #d8c5a2;
  padding: 26px 0;
  text-align: center;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: #ffffff;
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  display: block;
}

.admin-body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff9ef;
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.login-box {
  width: min(420px, 92%);
  background: #ffffff;
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.login-box h1 {
  margin-top: 0;
  color: #34080c;
  font-family: Georgia, serif;
}

.login-box label {
  display: block;
  margin-bottom: 8px;
  color: #34080c;
  font-weight: 700;
}

.login-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #e2d1b4;
  border-radius: 12px;
}

.login-box button {
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 999px;
  background: #5a1218;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.admin-error {
  color: #b00020;
  margin-bottom: 15px;
}

.admin-leads-body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff9ef;
  color: #1d1a18;
}

.admin-header {
  background: #34080c;
  color: #ffffff;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.admin-header h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-weight: 500;
}

.admin-header a {
  color: #ffffff;
  background: #5a1218;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-left: 8px;
  display: inline-block;
}

.admin-wrap {
  width: min(1280px, 94%);
  margin: 32px auto;
}

.admin-summary {
  background: #ffffff;
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(52, 8, 12, 0.08);
}

.admin-summary strong {
  font-size: 32px;
  color: #5a1218;
}

.admin-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(52, 8, 12, 0.08);
  border: 1px solid rgba(201, 164, 92, 0.35);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1100px;
}

.admin-table th {
  background: #5a1218;
  color: #ffffff;
  padding: 14px;
  text-align: left;
  font-size: 14px;
}

.admin-table td {
  padding: 14px;
  border-bottom: 1px solid #eadcc1;
  vertical-align: top;
  font-size: 14px;
}

.admin-table tr:nth-child(even) {
  background: #fffaf1;
}

.message {
  max-width: 260px;
  white-space: normal;
}

.mobile-link {
  color: #5a1218;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .category-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .lookbook-item {
    min-height: 330px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 66px 0;
  }

  .nav-links {
    display: none;
  }

  .intro-grid,
  .legacy-grid,
  .form-grid,
  .offer-band {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 340px;
  }

  .stats-row,
  .trust-list,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-picture img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .hero-content {
    bottom: 22px;
    padding: 0;
  }

  .hero-buttons {
    width: 88%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 40px;
    padding: 9px 14px;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(52, 8, 12, 0.22);
  }

  .hero-buttons .btn-outline {
    background: rgba(52, 8, 12, 0.6);
    border-color: rgba(255, 255, 255, 0.75);
    color: #ffffff;
  }
}

@media (max-width: 640px) {
  .category-grid,
  .testimonial-grid,
  .locations-grid,
  .lookbook-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .offer-band,
  .legacy-box,
  .lead-form {
    padding: 28px;
    border-radius: 22px;
  }

  .lookbook-item {
    min-height: 300px;
  }

  .section .btn,
  .offer-band .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-icon {
    width: 31px;
    height: 31px;
  }

  .admin-header {
    padding: 18px;
  }

  .admin-header h1 {
    font-size: 24px;
  }

  .admin-header a {
    margin: 6px 6px 0 0;
  }
}

@media (max-width: 420px) {
  .hero-content {
    bottom: 16px;
  }

  .hero-buttons {
    gap: 6px;
  }

  .hero-buttons .btn {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 11px;
  }
}

.social-section {
  background: #42070b;
  color: #ffffff;
  text-align: center;
  padding: 96px 0 88px;
}

.social-inner {
  max-width: 900px;
  margin: 0 auto;
}

.social-section .eyebrow {
  color: #f6edd8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.social-section h2 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.15;
  max-width: 960px;
  margin: 0 auto 24px;
}

.social-section p {
  color: #f3dfbd;
  font-size: 16px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 34px;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  min-width: 116px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-link:hover {
  background: #c9a45c;
  color: #34080c;
  border-color: #c9a45c;
  transform: translateY(-2px);
}

.social-link-active {
  background: linear-gradient(135deg, #d8b76d, #a77b32);
  color: #34080c;
  border-color: transparent;
}

.social-link-active:hover {
  color: #34080c;
}
@media (max-width: 640px) {
  .social-section {
    padding: 70px 0 64px;
  }

  .social-section .eyebrow {
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .social-section h2 {
    font-size: 34px;
  }

  .social-section p {
    font-size: 15px;
    max-width: 92%;
  }

  .social-links {
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .social-link {
    width: 100%;
  }
}
.review-button-wrap {
  text-align: center;
  margin-top: 38px;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8b76d, #a77b32);
  color: #34080c;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 164, 92, 0.35);
  color: #34080c;
}

@media (max-width: 640px) {
  .review-button-wrap {
    margin-top: 28px;
  }

  .review-btn {
    width: 100%;
  }
}
.google-review-subline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #746b63;
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 34px;
}

.google-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(52, 8, 12, 0.12);
}

.google-icon svg {
  display: block;
}

@media (max-width: 640px) {
  .google-review-subline {
    align-items: flex-start;
    font-size: 15px;
    gap: 9px;
  }

  .google-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}
.intro-slider {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #ffffff;
}

.intro-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.1s ease, transform 4.5s ease;
}

.intro-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.intro-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 820px) {
  .intro-slider {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .intro-slider {
    min-height: 300px;
  }
}
.thankyou-section {
  background: linear-gradient(180deg, #fff9ef, #f7ead2);
  padding: 110px 0 88px;
}

.thankyou-card {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(201, 164, 92, 0.32);
  border-radius: 28px;
  padding: 58px 48px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(52, 8, 12, 0.14);
}

.thankyou-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8b76d, #a77b32);
  color: #34080c;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.thankyou-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 500;
  color: #34080c;
  margin: 0 auto 22px;
}

.thankyou-card p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #746b63;
  font-size: 17px;
  line-height: 1.7;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

@media (max-width: 640px) {
  .thankyou-section {
    padding: 76px 0 58px;
  }

  .thankyou-card {
    padding: 38px 24px;
    border-radius: 22px;
  }

  .thankyou-icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }

  .thankyou-card h1 {
    font-size: 34px;
  }

  .thankyou-card p {
    font-size: 15px;
  }

  .thankyou-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .thankyou-actions .btn {
    width: 100%;
  }
}
