/* ========== Global ========== */
/* =============================================
   AMAZINO — Navbar Auth Styles
   Add to home.css or link as css/navbarAuth.css
   ============================================= */

/* ── Variables (match your existing theme) ───── */
:root {
  --main-color       : rgb(124, 29, 124);
  --main-color-hover : rgb(144, 86, 144);
  --secondary-color  : #B19470;
}

/* ── Sign In Button ──────────────────────────── */
.sp-navbar__btn-signin {
  display        : inline-flex;
  align-items    : center;
  gap            : 6px;
  padding        : 8px 20px;
  border-radius  : 999px;
  background     : var(--main-color);
  color          : #fff !important;
  font-size      : 0.82rem;
  font-weight    : 700;
  letter-spacing : 0.06em;
  text-decoration: none;
  border         : 2px solid transparent;
  transition     : background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow     : 0 2px 10px rgba(124, 29, 124, 0.25);
  white-space    : nowrap;
}

.sp-navbar__btn-signin:hover {
  background  : var(--main-color-hover);
  transform   : translateY(-2px);
  box-shadow  : 0 6px 18px rgba(124, 29, 124, 0.35);
  color       : #fff !important;
}

.sp-navbar__btn-signin:active {
  transform: translateY(0);
}

/* ── User Pill Wrapper ───────────────────────── */
.nav-user-pill-wrap {
  position: relative;
  display : inline-block;
}

/* ── User Pill ───────────────────────────────── */
.nav-user-pill {
  display        : inline-flex;
  align-items    : center;
  gap            : 8px;
  padding        : 4px 12px 4px 4px;
  border-radius  : 999px;
  background     : rgba(124, 29, 124, 0.1);
  border         : 1.5px solid rgba(124, 29, 124, 0.2);
  text-decoration: none;
  color          : inherit;
  cursor         : pointer;
  transition     : background 0.2s, box-shadow 0.2s, transform 0.18s;
  white-space    : nowrap;
}

.nav-user-pill:hover {
  background : rgba(124, 29, 124, 0.18);
  box-shadow : 0 4px 14px rgba(124, 29, 124, 0.15);
  transform  : translateY(-1px);
  color      : inherit;
}

/* Avatar circle */
.nav-user-avatar {
  flex-shrink: 0;
  width      : 32px;
  height     : 32px;
  border-radius: 50%;
  overflow   : hidden;
}

.nav-user-avatar-initials {
  width          : 100%;
  height         : 100%;
  display        : flex;
  align-items    : center;
  justify-content: center;
  background     : linear-gradient(135deg, var(--main-color), var(--main-color-hover));
  color          : #fff;
  font-size      : 0.7rem;
  font-weight    : 700;
  letter-spacing : 0.04em;
}

.nav-user-avatar-img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
}

/* Name + role text */
.nav-user-info {
  display       : flex;
  flex-direction: column;
  line-height   : 1.15;
}

.nav-user-name {
  font-size  : 0.82rem;
  font-weight: 700;
  color      : #1a1a1a;
}

.nav-user-role {
  font-size     : 0.65rem;
  color         : var(--main-color);
  font-weight   : 600;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

.nav-user-arrow {
  font-size  : 0.7rem;
  color      : var(--main-color);
  opacity    : 0.7;
  transition : transform 0.2s;
}

/* ── Dropdown ────────────────────────────────── */
.nav-user-dropdown {
  display       : none;
  position      : absolute;
  top           : calc(100% + 10px);
  right         : 0;
  min-width     : 190px;
  background    : #fff;
  border-radius : 14px;
  box-shadow    : 0 8px 32px rgba(124, 29, 124, 0.15), 0 1px 4px rgba(0,0,0,0.06);
  border        : 1px solid rgba(124, 29, 124, 0.08);
  padding       : 6px;
  z-index       : 9999;
  animation     : ddFadeIn 0.18s ease;
}

@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-user-pill-wrap:hover .nav-user-dropdown,
.nav-user-pill-wrap:focus-within .nav-user-dropdown {
  display: block;
}

.nav-user-pill-wrap:hover .nav-user-arrow {
  transform: rotate(90deg);
}

.nav-dd-item {
  display        : flex;
  align-items    : center;
  gap            : 10px;
  padding        : 9px 12px;
  border-radius  : 9px;
  font-size      : 0.82rem;
  font-weight    : 500;
  color          : #333;
  text-decoration: none;
  background     : transparent;
  border         : none;
  width          : 100%;
  cursor         : pointer;
  transition     : background 0.15s, color 0.15s;
  text-align     : left;
}

.nav-dd-item i {
  font-size : 0.9rem;
  color     : var(--main-color);
  width     : 16px;
  flex-shrink: 0;
}

.nav-dd-item:hover {
  background: rgba(124, 29, 124, 0.07);
  color     : var(--main-color);
}

.nav-dd-sep {
  height    : 1px;
  background: rgba(124, 29, 124, 0.08);
  margin    : 4px 6px;
}

.nav-dd-logout {
  color: #c0392b;
}

.nav-dd-logout i {
  color: #c0392b;
}

.nav-dd-logout:hover {
  background: rgba(192, 57, 43, 0.07);
  color     : #c0392b;
}

/* ── Dark navbar variant ──────────────────────── */
.navbar-dark .nav-user-pill,
.sp-navbar--dark .nav-user-pill {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.navbar-dark .nav-user-name,
.sp-navbar--dark .nav-user-name {
  color: #fff;
}

.navbar-dark .nav-user-role,
.sp-navbar--dark .nav-user-role {
  color: rgba(255,255,255,0.75);
}

.navbar-dark .nav-user-arrow,
.sp-navbar--dark .nav-user-arrow {
  color: rgba(255,255,255,0.6);
}

/* ── Mobile: pill collapses nicely ───────────── */
@media (max-width: 768px) {
  .nav-user-pill {
    padding: 5px 10px 5px 5px;
  }

  .nav-user-info {
    display: none;    /* show only avatar on tiny screens */
  }

  .nav-user-arrow {
    display: none;
  }

  .nav-user-dropdown {
    right: auto;
    left : 0;
  }
}

:root {
    --main-color: rgb(124, 29, 124);
    --main-color-hover: rgb(144, 86, 144);
    --secondary-color: #B19470;
}

body {
    margin: 0;
    padding: 0;
}


/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    background: url("../assets/herosection.png") center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 500px;
}

/* Shop Now Button */
.btn-shopnow {
    background: linear-gradient(135deg, var(--secondary-color), var(--main-color-hover));
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 22px rgba(177, 148, 112, 0.35);
    transition: all 0.28s ease;
    text-decoration: none;
}

.btn-shopnow:hover {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover));
    color: #fff;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 28px rgba(124, 29, 124, 0.32);
}

.btn-shopnow:active {
    transform: translateY(0);
}

.btn-shopnow:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(124, 29, 124, 0.25), 0 10px 22px rgba(124, 29, 124, 0.28);
}

.btn-shopnow i {
    transition: transform 0.3s ease;
}

.btn-shopnow:hover i {
    transform: translateX(4px);
}

/* View All Link */
.btn-viewall {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 8px 4px;
    transition: opacity 0.3s ease;
}

.btn-viewall:hover {
    color: #fff;
    opacity: 0.8;
}

.btn-viewall::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Deals of the Day ========== */
.deals-section {
    background-color: #faf7fb;
}

.deals-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
}

.deal-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(124, 29, 124, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    border: 1px solid rgba(124, 29, 124, 0.06);
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(124, 29, 124, 0.13);
    border-color: rgba(124, 29, 124, 0.12);
}

.deal-img-wrapper {
    flex: 0 0 40%;
    min-width: 200px;
}

.deal-img-wrapper img {
    transition: transform 0.4s ease;
}

.deal-card:hover .deal-img-wrapper img {
    transform: scale(1.05);
}

.deal-img-wrapper .badge {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover)) !important;
    font-weight: 600;
    font-size: 0.8rem;
    top: 10px;
    left: 10px;
    z-index: 10;
    letter-spacing: 0.3px;
}

.deal-content {
    flex: 1;
}

.deal-content small {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.deal-content h4 {
    color: #1a1a1a;
    font-size: 1.25rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.deal-card:hover .deal-content h4 {
    color: var(--main-color);
}

.deal-content .price-new {
    color: var(--main-color);
}

.deal-content .price-old {
    text-decoration: line-through;
    color: #bbb;
    font-size: 0.9rem;
}

.btn-deal {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover));
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-deal::before {
    content: '';
    position: absolute;
    inset: 1;
    background: linear-gradient(135deg, var(--secondary-color), var(--main-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn-deal:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--main-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124, 29, 124, 0.35);
}

.btn-deal:hover::before {
    opacity: 1;
}

.btn-deal span,
.btn-deal i {
    position: relative;
    z-index: 1;
}

.btn-deal:active {
    transform: translateY(0);
}

/* ========== Collection Banners ========== */
.collection-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid transparent;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(124, 29, 124, 0.12);
}

.collection-card:hover .collection-img {
    transform: scale(1.08) rotate(2deg);
}

.collection-img {
    transition: transform 0.5s ease;
}

.wood-collection {
    background: linear-gradient(135deg, #f5f0eb, #ebe3d9);
    border-color: rgba(177, 148, 112, 0.15);
}

.wood-collection:hover {
    border-color: var(--secondary-color);
}

.sofa-collection {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover));
}

.sofa-collection:hover {
    box-shadow: 0 14px 40px rgba(124, 29, 124, 0.3);
}

.btn-collection {
    background: var(--secondary-color) !important;
    transition: all 0.3s ease;
}

.btn-collection:hover {
    background: var(--main-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(124, 29, 124, 0.3);
}

/* ========== Footer ========== */
.section-bg {
    background-color: var(--main-color);
}

.footer-bg {
    background-color: #F5F5F5;
}
.footer-bg p {
    font-weight: bold;
    font-size: 14px;
    color: var(--main-color);
}

.wrapper:hover img[alt="Amazino"] {
    transform: scale(1.1);
}

img[alt="Amazino"] {
    border-radius: 10px;
    transition: 0.5s ease-in-out;
}

.wrapper h2 {
    transition: 0.5s ease-in-out;
}

.wrapper:hover h2 {
    opacity: 0.7;
}

.wrapper {
    width: fit-content;
}

.wrapper:hover {
    cursor: pointer;
}

.icons:hover i {
    opacity: 0.7;
}

/* ========== Shipping Boxes ========== */
.shipping-box {
    padding: 20px;
    border-radius: 12px;
}

.shipping-box img {
    width: 70px;
}

/* ========== Featured Products Section ========== */
.featured-section {
    padding: 40px 0 50px;
    background: #fff;
}
.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

.section-viewall {
    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.section-viewall:hover {
    color: var(--main-color-hover);
}

.section-subtitle {
    font-size: 14px;
    margin-bottom: 0;
}

/* Slider Navigation Arrows */
.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    font-size: 16px;
}

.slider-arrow:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

/* Product Slider */
.product-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

/* Progress Bar */
.slider-progress {
    width: 100%;
    height: 4px;
    background: #e8e8e8;
    border-radius: 4px;
    margin-top: 20px;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--main-color), var(--main-color-hover));
    border-radius: 4px;
    width: 30%;
    transition: width 0.3s ease;
}

/* Product Card */
.product-card-wrapper {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    cursor: pointer;
}

.product-card {
    background: #f0efed;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-card-wrapper:hover .product-card {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Discount Badge */
.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--main-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 2;
}

/* Product Image */
.product-img {
    width: 75%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card-wrapper:hover .product-img {
    transform: scale(1.08);
}

/* Cart Button */
.cart-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.cart-btn i {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.cart-btn:hover {
    background: var(--main-color);
    transform: scale(1.1);
}

.cart-btn:hover i {
    color: white;
}

/* Product Info */
.product-info {
    padding: 14px 4px 4px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.product-category {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.product-rating {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-rating .star {
    color: #f5b100;
    font-size: 14px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-new {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* ========== Card Entrance Animation ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-wrapper {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.product-card-wrapper:nth-child(1) {
    animation-delay: 0.05s;
}

.product-card-wrapper:nth-child(2) {
    animation-delay: 0.15s;
}

.product-card-wrapper:nth-child(3) {
    animation-delay: 0.25s;
}

.product-card-wrapper:nth-child(4) {
    animation-delay: 0.35s;
}

.product-card-wrapper:nth-child(5) {
    animation-delay: 0.45s;
}

.product-card-wrapper:nth-child(6) {
    animation-delay: 0.55s;
}

/* ========== Promotions / Flash Sale ========== */
.promo-section {
    width: 70%;
    margin: 0 auto;
    padding: 50px 0 60px;
    background: transparent;
}

.promo-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 36px rgba(124, 29, 124, 0.08);
    border: 1px solid rgba(124, 29, 124, 0.06);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.promo-card:hover {
    box-shadow: 0 12px 48px rgba(124, 29, 124, 0.15);
    border-color: rgba(124, 29, 124, 0.12);
}

.promo-content {
    padding: 50px 40px;
}

.promo-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.promo-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

/* Countdown Timer */
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
    background: linear-gradient(135deg, rgba(124, 29, 124, 0.07), rgba(177, 148, 112, 0.08));
    border-radius: 14px;
    padding: 14px 10px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(124, 29, 124, 0.12);
}

.countdown-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: var(--secondary-color);
    margin-top: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Shop Now Promo Button */
.btn-promo {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover));
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px 38px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-promo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--main-color));
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(124, 29, 124, 0.35);
}

.btn-promo:hover::after {
    width: 300px;
    height: 300px;
}

.btn-promo:active {
    transform: translateY(0) scale(1);
}

/* Promo Image */
.promo-img-wrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.promo-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 29, 124, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-card:hover .promo-img-wrapper::after {
    opacity: 1;
}

.promo-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
    transition: transform 0.6s ease;
}

.promo-card:hover .promo-img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .promo-section {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .promo-section {
        width: 95%;
    }

    .promo-content {
        padding: 36px 24px;
    }

    .promo-img {
        border-radius: 0 0 20px 20px;
        min-height: 240px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .promo-title {
        font-size: 1.6rem;
    }

    .countdown-item {
        min-width: 56px;
        padding: 10px 8px 8px;
    }
}


@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .navbar-actions {
        padding-top: 16px;
        border-top: 1px solid #f0f0f0;
    }
}

@media (max-width: 576px) {
    .product-card-wrapper {
        min-width: 240px;
        max-width: 240px;
    }

    .product-card {
        height: 220px;
    }

    .product-img {
        height: 160px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .btn-shopnow {
        padding: 10px 24px;
        font-size: 14px;
    }
}






/* ========== Newsletter ========== */
.newsletter-title {
    font-size: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .newsletter-title {
        font-size: 42px;
    }
}

.highlight {
    color: var(--main-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.4;
}

.newsletter-input {
    height: 64px;
    border-radius: 20px;
    border-color: rgba(124, 29, 124, 0.15) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input:focus-within {
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 4px rgba(124, 29, 124, 0.08);
}

.newsletter-input input::placeholder {
    color: #aaa;
}

.newsletter-btn {
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover));
    color: #fff;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--main-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 29, 124, 0.3);
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:active {
    transform: translateY(0);
}

.icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.newsletter-input:focus-within .icon-circle {
    transform: scale(1.1) rotate(-10deg);
}