/* ============================================================================
   LOCALSAVER HOMEPAGE TEMPLATE STYLES
   ============================================================================ */

/* Variables */
:root {
    --ls-navy: #2D3E50;
    --ls-orange: #E88A1A;
    --ls-green: #58B19F;
    --ls-slate-50: #f8fafc;
    --ls-slate-100: #f1f5f9;
    --ls-slate-200: #e2e8f0;
    --ls-slate-300: #cbd5e1;
    --ls-slate-400: #94a3b8;
    --ls-slate-500: #64748b;
}

/* Base Container */
.ls-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

@media (min-width: 640px) {
    .ls-container {
        padding: 0 1.5rem !important;
    }
}

@media (min-width: 1024px) {
    .ls-container {
        padding: 0 2rem !important;
    }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.ls-hero {
    position: relative !important;
    padding-top: 6rem !important;
    padding-bottom: 5rem !important;
    overflow: hidden !important;
}

@media (min-width: 640px) {
    .ls-hero {
        padding-top: 8rem !important;
        padding-bottom: 7rem !important;
    }
}

.ls-hero-content {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
}

/* Badge */
.ls-badge-wrapper {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 2rem !important;
}

.ls-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.375rem 0.75rem !important;
    background: var(--ls-slate-100) !important;
    border: 1px solid var(--ls-slate-200) !important;
    border-radius: 9999px !important;
    animation: float 3s ease-in-out infinite !important;
}

.ls-pulse-dot {
    position: relative !important;
    display: flex !important;
    height: 0.5rem !important;
    width: 0.5rem !important;
}

.ls-ping {
    position: absolute !important;
    display: inline-flex !important;
    height: 100% !important;
    width: 100% !important;
    border-radius: 9999px !important;
    background: var(--ls-orange) !important;
    opacity: 0.75 !important;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.ls-dot {
    position: relative !important;
    display: inline-flex !important;
    height: 0.5rem !important;
    width: 0.5rem !important;
    border-radius: 9999px !important;
    background: var(--ls-orange) !important;
}

.ls-badge-text {
    font-size: 10px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    color: var(--ls-navy) !important;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Hero Title */
.ls-hero-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    color: var(--ls-navy) !important;
    margin-bottom: 2rem !important;
    letter-spacing: -0.025em !important;
}

@media (min-width: 640px) {
    .ls-hero-title {
        font-size: 4.5rem !important;
    }
}

.ls-hero-highlight {
    position: relative !important;
    display: inline-block !important;
    margin-top: 0.5rem !important;
}

.ls-highlight-text {
    position: relative !important;
    z-index: 10 !important;
    color: var(--ls-orange) !important;
}

.ls-highlight-underline {
    position: absolute !important;
    bottom: 0.5rem !important;
    left: 0 !important;
    width: 100% !important;
    height: 1rem !important;
    background: rgba(232, 138, 26, 0.1) !important;
    border-radius: 9999px !important;
    z-index: -1 !important;
}

/* Hero Subtitle */
.ls-hero-subtitle {
    font-size: 1.25rem !important;
    color: var(--ls-slate-500) !important;
    max-width: 42rem !important;
    margin: 0 auto 3rem !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
}

/* Hero Buttons */
.ls-hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
}

@media (min-width: 640px) {
    .ls-hero-buttons {
        flex-direction: row !important;
    }
}

.ls-btn {
    padding: 1rem 2rem !important;
    border-radius: 1rem !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    transition: all 0.3s !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: none !important;
}

.ls-btn:active {
    transform: scale(0.95) !important;
}

.ls-btn-primary {
    background: var(--ls-navy) !important;
    color: #fff !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.ls-btn-primary:hover {
    background: #1a2b3b !important;
}

.ls-btn-secondary {
    background: #fff !important;
    color: var(--ls-navy) !important;
    border: 1px solid var(--ls-slate-200) !important;
}

.ls-btn-secondary:hover {
    border-color: var(--ls-orange) !important;
}

/* Hero Background */
.ls-hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

.ls-blob {
    position: absolute !important;
    border-radius: 9999px !important;
    filter: blur(120px) !important;
}

.ls-blob-1 {
    top: -10% !important;
    left: -10% !important;
    width: 40% !important;
    aspect-ratio: 1 !important;
    background: rgba(232, 138, 26, 0.05) !important;
}

.ls-blob-2 {
    bottom: -10% !important;
    right: -10% !important;
    width: 40% !important;
    aspect-ratio: 1 !important;
    background: rgba(45, 62, 80, 0.05) !important;
}

.ls-blob-3 {
    top: 20% !important;
    right: 10% !important;
    width: 15% !important;
    aspect-ratio: 1 !important;
    background: rgba(88, 177, 159, 0.05) !important;
    filter: blur(80px) !important;
}

/* ============================================================================
   STICKY FILTER BAR
   ============================================================================ */

.ls-filter-bar {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
    padding: 2rem 0 !important;
    transition: all 0.5s !important;
}

.ls-filter-bar.scrolled {
    padding: 1rem 0 !important;
    background: #fff !important;
    /* box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04) !important; */
}

.ls-filter-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.5rem !important;
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 1.5rem !important;
    transition: all 0.5s !important;
}

.ls-filter-bar.scrolled .ls-filter-wrapper {
    background: #fff !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid var(--ls-slate-100) !important;
}

@media (min-width: 1024px) {
    .ls-filter-wrapper {
        flex-direction: row !important;
    }
}

/* Categories */
.ls-categories {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    overflow-x: auto !important;
    width: 100% !important;
    padding-bottom: 0.75rem !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--ls-slate-300) var(--ls-slate-100) !important;
}

.ls-categories::-webkit-scrollbar {
    height: 6px !important;
    display: block !important;
}

.ls-categories::-webkit-scrollbar-track {
    background: var(--ls-slate-100) !important;
    border-radius: 9999px !important;
}

.ls-categories::-webkit-scrollbar-thumb {
    background: var(--ls-slate-300) !important;
    border-radius: 9999px !important;
}

.ls-categories::-webkit-scrollbar-thumb:hover {
    background: var(--ls-slate-400) !important;
}

@media (min-width: 1024px) {
    .ls-categories {
        width: auto !important;
    }
}

.ls-category-btn {
    padding: 0.625rem 1.5rem !important;
    border-radius: 1rem !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    transition: all 0.3s !important;
    white-space: nowrap !important;
    border: none !important;
    cursor: pointer !important;
    color: var(--ls-slate-400) !important;
    background: transparent !important;
}

.ls-category-btn:hover {
    color: var(--ls-navy) !important;
    background: var(--ls-slate-100) !important;
}

.ls-category-btn.active {
    color: #fff !important;
    background: var(--ls-navy) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

/* Search Box */
.ls-search-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    width: 100% !important;
}

@media (min-width: 1024px) {
    .ls-search-wrapper {
        width: 400px !important;
    }
}

.ls-search-box {
    position: relative !important;
    flex: 1 !important;
}

.ls-search-input {
    width: 100% !important;
    padding: 0.75rem 1.5rem !important;
    padding-right: 3rem !important;
    background: rgba(241, 245, 249, 0.5) !important;
    border-radius: 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border: none !important;
    outline: none !important;
    transition: all 0.3s !important;
}

.ls-search-input:focus {
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(232, 138, 26, 0.1) !important;
}

.ls-search-icon {
    position: absolute !important;
    right: 1.25rem !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--ls-slate-400) !important;
    transition: all 0.3s !important;
    cursor: pointer !important;
    z-index: 10 !important;
}

.ls-search-icon:hover {
    color: var(--ls-orange) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.ls-search-box:focus-within .ls-search-icon {
    color: var(--ls-orange) !important;
}

/* ============================================================================
   OFFERS SECTION
   ============================================================================ */

.ls-offers-section {
    padding: 3rem 0 8rem !important;
}

/* Results Header */
.ls-results-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    margin-bottom: 3rem !important;
}

@media (min-width: 768px) {
    .ls-results-header {
        flex-direction: row !important;
        align-items: flex-end !important;
    }
}

.ls-results-title {
    font-size: 1.875rem !important;
    font-weight: 900 !important;
    color: var(--ls-navy) !important;
    letter-spacing: -0.025em !important;
    margin: 0 !important;
}

.ls-highlight-orange {
    color: var(--ls-orange) !important;
}

.ls-results-count {
    font-size: 0.875rem !important;
    color: var(--ls-slate-500) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    opacity: 0.6 !important;
    margin: 0.5rem 0 0 0 !important;
}

/* Sort Box */
.ls-sort-box {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    height: 3rem !important;
    padding: 0 1rem !important;
    background: #fff !important;
    border: 1px solid var(--ls-slate-100) !important;
    border-radius: 1rem !important;
}

.ls-sort-label {
    font-size: 10px !important;
    font-weight: 900 !important;
    color: var(--ls-slate-400) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
}

.ls-sort-select {
    background: transparent !important;
    border: none !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: var(--ls-navy) !important;
    outline: none !important;
    cursor: pointer !important;
}

/* Loading Spinner */
.ls-loading {
    text-align: center !important;
    padding: 4rem 0 !important;
}

.ls-spinner {
    width: 48px !important;
    height: 48px !important;
    margin: 0 auto 1rem !important;
    border: 4px solid var(--ls-slate-100) !important;
    border-top-color: var(--ls-orange) !important;
    border-radius: 50% !important;
    animation: spin 0.8s linear infinite !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.ls-loading p {
    color: var(--ls-slate-500) !important;
    font-weight: 600 !important;
}

/* Offers Grid */
.ls-offers-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
}

@media (min-width: 640px) {
    .ls-offers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .ls-offers-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Empty State */
.ls-empty-state {
    text-align: center !important;
    padding: 8rem 0 !important;
    background: #fff !important;
    border-radius: 2.5rem !important;
    border: 1px solid var(--ls-slate-100) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
}

.ls-empty-icon {
    font-size: 4rem !important;
    margin-bottom: 1.5rem !important;
}

.ls-empty-title {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: var(--ls-navy) !important;
    margin-bottom: 0.5rem !important;
}

.ls-empty-text {
    color: var(--ls-slate-400) !important;
    font-weight: 500 !important;
    margin-bottom: 2rem !important;
}

.ls-reset-btn {
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.75rem !important;
    background: var(--ls-slate-100) !important;
    color: var(--ls-navy) !important;
    font-weight: 900 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.ls-reset-btn:hover {
    background: var(--ls-orange) !important;
    color: #fff !important;
}

/* ============================================================================
   NEWSLETTER SECTION
   ============================================================================ */

.ls-newsletter-section {
    padding: 0 0 10rem !important;
}

.ls-newsletter-box {
    position: relative !important;
    padding: 3rem !important;
    border-radius: 3rem !important;
    background: var(--ls-navy) !important;
    overflow: hidden !important;
}

@media (min-width: 640px) {
    .ls-newsletter-box {
        padding: 5rem !important;
    }
}

.ls-newsletter-content {
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 3rem !important;
}

@media (min-width: 1024px) {
    .ls-newsletter-content {
        flex-direction: row !important;
    }
}

.ls-newsletter-text {
    max-width: 28rem !important;
    text-align: center !important;
}

@media (min-width: 1024px) {
    .ls-newsletter-text {
        text-align: left !important;
    }
}

.ls-newsletter-title {
    font-size: 1.875rem !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1.25 !important;
    margin-bottom: 1.5rem !important;
}

@media (min-width: 640px) {
    .ls-newsletter-title {
        font-size: 3rem !important;
    }
}

.ls-newsletter-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
}

/* Newsletter Form */
.ls-newsletter-form {
    width: 100% !important;
}

@media (min-width: 1024px) {
    .ls-newsletter-form {
        width: auto !important;
    }
}

.ls-newsletter-input-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 0.5rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 1.5rem !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

@media (min-width: 640px) {
    .ls-newsletter-input-wrapper {
        flex-direction: row !important;
    }
}

.ls-newsletter-input {
    background: transparent !important;
    padding: 1rem 1.5rem !important;
    color: #fff !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    outline: none !important;
    border: none !important;
    width: 100% !important;
}

@media (min-width: 640px) {
    .ls-newsletter-input {
        min-width: 300px !important;
    }
}

.ls-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.ls-newsletter-btn {
    padding: 1rem 2rem !important;
    background: var(--ls-orange) !important;
    color: #fff !important;
    font-weight: 900 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    border-radius: 1rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.ls-newsletter-btn:hover {
    box-shadow: 0 10px 30px -10px var(--ls-orange) !important;
}

.ls-newsletter-btn:active {
    transform: scale(0.95) !important;
}

/* Newsletter Background */
.ls-newsletter-bg-1 {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 50% !important;
    height: 100% !important;
    background: linear-gradient(to left, rgba(232, 138, 26, 0.1), transparent) !important;
}

.ls-newsletter-bg-2 {
    position: absolute !important;
    bottom: -6rem !important;
    left: -6rem !important;
    width: 16rem !important;
    height: 16rem !important;
    border-radius: 9999px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    filter: blur(60px) !important;
}

/* ============================================================================
   OFFER CARD STYLES (for AJAX loaded offers)
   ============================================================================ */

.ls-offer-card {
    position: relative !important;
    background: #fff !important;
    border-radius: 1.5rem !important;
    overflow: hidden !important;
    transition: all 0.5s !important;
    border: 1px solid rgba(226, 232, 240, 0.6) !important;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.ls-offer-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12) !important;
}

/* Offer Image */
.ls-offer-image-wrapper {
    position: relative !important;
    aspect-ratio: 16/10 !important;
    overflow: hidden !important;
}

.ls-offer-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.7s !important;
}

.ls-offer-card:hover .ls-offer-image {
    transform: scale(1.1) !important;
}

/* Discount Badge */
.ls-discount-badge {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    z-index: 10 !important;
}

.ls-discount-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 54px !important;
    height: 54px !important;
    border-radius: 1rem !important;
    background: rgba(232, 138, 26, 0.93) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.ls-discount-number {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    line-height: 1 !important;
}

.ls-discount-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700 !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: -0.05em !important;
}

/* Category Tag */
.ls-category-tag {
    position: absolute !important;
    bottom: 1rem !important;
    right: 1rem !important;
    z-index: 10 !important;
}

.ls-category-tag span {
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.5rem !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    color: var(--ls-navy) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
}

/* Urgency Badge */
.ls-urgency-badge {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    padding: 0.375rem 0.75rem !important;
    border-radius: 9999px !important;
    background: rgba(239, 68, 68, 0.9) !important;
    color: #fff !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.ls-pulse-dot-small {
    position: relative !important;
    display: flex !important;
    height: 0.5rem !important;
    width: 0.5rem !important;
}

.ls-ping-small {
    position: absolute !important;
    display: inline-flex !important;
    height: 100% !important;
    width: 100% !important;
    border-radius: 9999px !important;
    background: #fff !important;
    opacity: 0.75 !important;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.ls-dot-small {
    position: relative !important;
    display: inline-flex !important;
    height: 0.5rem !important;
    width: 0.5rem !important;
    border-radius: 9999px !important;
    background: #fff !important;
}

.ls-urgency-text {
    font-size: 10px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
}

/* Image Overlay */
.ls-image-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent, transparent) !important;
    opacity: 0.6 !important;
}

/* Offer Content */
.ls-offer-content {
    padding: 1.5rem !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Business Info */
.ls-offer-business {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.75rem !important;
}

.ls-business-icon {
    width: 1.5rem !important;
    height: 1.5rem !important;
    border-radius: 9999px !important;
    background: var(--ls-slate-100) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border: 1px solid var(--ls-slate-200) !important;
}

.ls-business-icon span {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: var(--ls-slate-400) !important;
}

.ls-business-name {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: var(--ls-slate-500) !important;
    text-transform: uppercase !important;
    letter-spacing: -0.025em !important;
    transition: color 0.3s !important;
}

.ls-offer-card:hover .ls-business-name {
    color: var(--ls-orange) !important;
}

/* Offer Title */
.ls-offer-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--ls-navy) !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem !important;
    transition: color 0.3s !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    /* min-height: 52px !important; */
}

.ls-offer-card:hover .ls-offer-title {
    color: var(--ls-orange) !important;
}

/* Offer Description */
.ls-offer-description {
    color: var(--ls-slate-500) !important;
    font-size: 0.875rem !important;
    margin-bottom: 1.5rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
    opacity: 0.8 !important;
}

/* Pricing */
.ls-offer-pricing {
    margin-top: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(248, 250, 252, 0.5) !important;
    padding: 1rem !important;
    border-radius: 1rem !important;
    border: 1px solid rgba(226, 232, 240, 0.5) !important;
    margin-bottom: 1.5rem !important;
}

.ls-pricing-left {
    display: flex !important;
    flex-direction: column !important;
}

.ls-original-price {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: var(--ls-slate-400) !important;
    text-decoration: line-through !important;
    margin-bottom: 0.125rem !important;
}

.ls-sale-price {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: var(--ls-navy) !important;
    letter-spacing: -0.025em !important;
}

.ls-savings-badge {
    padding: 0.375rem 0.75rem !important;
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    background: rgba(88, 177, 159, 0.1) !important;
    color: var(--ls-green) !important;
    border: 1px solid rgba(88, 177, 159, 0.3) !important;
    transition: all 0.3s !important;
}

/* Offer Meta */
.ls-offer-meta {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
    padding-top: 1.25rem !important;
    border-top: 1px solid var(--ls-slate-100) !important;
}

.ls-meta-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
}

.ls-meta-icon {
    font-size: 0.875rem !important;
}

.ls-meta-text {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: var(--ls-slate-500) !important;
}

/* Claim Button */
.ls-claim-btn {
    display: block !important;
    width: 100% !important;
    padding: 0.875rem 1.5rem !important;
    background: var(--ls-navy) !important;
    color: #fff !important;
    text-align: center !important;
    font-weight: 900 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    border-radius: 0.75rem !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
}

.ls-claim-btn:hover {
    background: var(--ls-orange) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(232, 138, 26, 0.3) !important;
}

.ls-claim-btn:active {
    transform: translateY(0) !important;
}