/* Store Layout */
.store-layout-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    align-items: start;
}

.store-sidebar {
    position: sticky;
    top: 100px;
}

/* Breadcrumbs */
.breadcrumb-nav a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover,
.hover-text-primary:hover {
    color: var(--primary);
}

.mx-10 {
    margin-left: 10px;
    margin-right: 10px;
}

/* Premium Verification Badge - Modern Design */
.premium-verify-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #a855f7 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow:
        0 2px 8px rgba(99, 102, 241, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.9),
        0 0 15px rgba(168, 85, 247, 0.3);
    animation: verifiedPulse 3s ease-in-out infinite;
    cursor: help;
    flex-shrink: 0;
    position: relative;
    vertical-align: middle;
    margin-bottom: 2px;
}

.premium-verify-badge::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #a855f7);
    opacity: 0.2;
    z-index: -1;
    animation: verifiedGlow 2s ease-in-out infinite;
}

.premium-verify-badge svg {
    width: 14px;
    height: 14px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

@keyframes verifiedPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes verifiedGlow {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.15);
    }
}

/* Padding Utilities (Missing) */
.p-50 {
    padding: 50px !important;
}

@media (max-width: 768px) {
    .p-50 {
        padding: 30px 20px !important;
    }
}

/* Rich Content Style */
.rich-store-content {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.rich-content-body {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.rich-content-body h2,
.rich-content-body h3 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    color: #1a1a1a;
    font-weight: 800;
}

.rich-content-body p {
    margin-bottom: 1.2em;
}

.rich-content-body ul {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
    list-style: none;
}

.rich-content-body li {
    margin-bottom: 0.8em;
    position: relative;
    padding-left: 20px;
}

.rich-content-body li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 20px;
    margin-left: -20px;
}

.hover-bg-alt:hover {
    background: var(--slate-50);
}

.expired-deals-section {
    padding: 60px !important;
}

.expired-deals-section h2 {
    color: var(--text-dark);
    margin-top: 0;
    font-size: 28px !important;
}

.expired-table-wrap {
    border: none !important;
    background: transparent !important;
}

.expired-table-wrap thead th {
    background: transparent;
    border-bottom: 2px solid var(--border);
    padding: 15px 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.expired-table-wrap tbody td {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.expired-table-wrap tbody tr:hover {
    background: var(--slate-50);
}

.expired-row-title {
    color: var(--text-main);
    font-size: 13px;
    line-height: 1.4;
}

.expired-type-badge {
    display: inline-block;
    padding: 4px 8px;
    background: var(--slate-100);
    color: var(--text-muted);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.expired-disc-val {
    color: var(--slate-400) !important;
    font-size: 14px;
}

/* Bottom Content Layout */
.store-bottom-content {
    background-color: var(--slate-50);
    border-top: 1px solid var(--border);
    padding-top: 80px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
}

.store-content-container.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FAQ Styles */
.faq-section {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-accordion {
    margin-top: 20px;
}

.faq-item-row {
    border-color: rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    transition: all 0.2s;
}

.faq-item-row:hover {
    background: var(--slate-50);
}

.faq-question {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question .text-primary {
    color: var(--primary);
    font-weight: 900;
}

.faq-answer {
    line-height: 1.8;
    color: #64748b;
    padding-left: 32px;
}

/* Sidebar Cards */
.store-profile-card {
    padding: 35px 30px;
    text-align: center;
}

.store-logo-large {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: var(--radius-lg);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--border);
}

.store-logo-large img {
    max-width: 100%;
    max-height: 100%;
}

.store-main-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.store-trust-rating {
    margin-bottom: 20px;
}

.store-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.stat-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-grid-item:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-light);
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}

.stat-val {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.sidebar-widget {
    padding: 25px;
}

.sidebar-widget h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.widget-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.sidebar-trust-box {
    border-radius: var(--radius-md);
}

/* Common Sidebar List Styles (Related/Popular/Categories) */
.sidebar-store-list,
.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-store-list li,
.sidebar-cat-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-store-list li:last-child,
.sidebar-cat-list li:last-child {
    border: none;
}

.sidebar-store-list a,
.sidebar-cat-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.sidebar-store-list a:hover,
.sidebar-cat-list a:hover {
    color: var(--primary);
}

.sidebar-store-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 3px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.sidebar-count {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
}

@media (max-width: 480px) {

    .sidebar-store-list a,
    .sidebar-cat-list a {
        font-size: 13px;
    }

    .sidebar-store-logo {
        width: 24px;
        height: 24px;
    }
}

/* Filter Bar */
.deals-header-bar {
    padding: 15px 25px;
    margin-bottom: 20px;
}

.filter-btn {
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: var(--slate-100);
}

.filter-btn.active {
    background: var(--primary-light);
    color: var(--primary);
}

.header-filters {
    gap: 8px;
}

.header-status {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background-color: var(--emerald);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Enhanced Coupon Code Popup Modal */
.code-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    backdrop-filter: blur(6px);
    overflow-y: auto;
    padding: 40px 20px;
}

.code-modal-overlay.active {
    display: flex;
}

.code-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    animation: modalPop 0.3s ease;
    position: relative;
    overflow: hidden;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.code-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    z-index: 10;
    transition: all 0.2s;
}

.code-modal-close:hover {
    background: #e5e7eb;
    color: #111;
}

.modal-header {
    padding: 40px 40px 30px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.modal-store-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-store-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.modal-store-name {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 700;
}

.modal-deal-title {
    font-size: 22px;
    font-weight: 800;
    color: #7c3aed;
    line-height: 1.3;
    margin-bottom: 24px;
}

.modal-code-box {
    display: flex;
    border: 2px dashed #e5e7eb;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fafafa;
}

.modal-code-display {
    flex: 1;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111;
    font-family: 'Courier New', monospace;
}

.modal-copy-btn {
    background: #7c3aed;
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-copy-btn:hover {
    background: #6d28d9;
}

.modal-copy-btn.copied {
    background: #10b981;
}

.modal-copy-hint {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.modal-copy-hint a {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: none;
}

.modal-copy-hint a:hover {
    text-decoration: underline;
}

.modal-expiry {
    font-size: 13px;
    color: #999;
    font-weight: 600;
}

.modal-feedback {
    padding: 24px 40px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.feedback-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.feedback-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.feedback-btn {
    padding: 10px 24px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    background: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.feedback-btn:hover {
    border-color: #7c3aed;
    color: #7c3aed;
}

.feedback-btn.voted {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
}

.feedback-btn svg {
    width: 16px;
    height: 16px;
}

.modal-email-signup {
    padding: 28px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.email-signup-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.email-signup-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.email-signup-form {
    display: flex;
    gap: 8px;
}

.email-signup-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.email-signup-form button {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.email-signup-form button:hover {
    background: #059669;
}

.email-success {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: none;
}

.email-success.show {
    display: block;
}

#topNewsletterForm {
    margin-bottom: 0 !important;
}

/* Top Compact Newsletter */
.top-newsletter-compact {
    background: #fff;
    padding: 8px 10px 8px 25px;
    border-radius: 60px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-label {
    letter-spacing: 0.5px;
    color: var(--text-main);
    opacity: 0.9;
}

.input-group-compact {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 50px;
    padding: 2px 2px 2px 10px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.input-group-compact:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.compact-input {
    border: none;
    background: transparent;
    padding: 6px 15px;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    width: 180px;
}

.btn-compact-join {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-compact-join:hover {
    background: #4338ca;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .top-header-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .top-newsletter-compact {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .newsletter-form-inline {
        width: 100%;
    }

    #topNewsletterForm {
        width: 100%;
    }

    .input-group-compact {
        width: 100%;
    }

    .compact-input {
        width: 100%;
        flex: 1;
    }
}

/* Responsive Styling */
@media (max-width: 1100px) {
    .store-layout-grid {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }

    .deal-action-side {
        width: 140px;
    }
}

/* Mobile Layout Reordering Logic for Store Page */
@media (max-width: 991px) {
    .store-layout-grid {
        display: flex;
        flex-direction: column;
    }

    .store-sidebar {
        display: contents;
    }

    .store-profile-card {
        order: 1;
        margin-bottom: 20px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
    }

    .store-content-area {
        order: 2;
    }

    .sidebar-widget,
    .sidebar-info-box {
        order: 3;
    }

    .author-card {
        order: 4;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .store-main-title {
        font-size: 20px;
    }
}

/* Review Form Polish */
.review-item {
    transition: all 0.3s;
}

.review-item:hover {
    background: #f8fafc;
    margin-left: -5px;
    padding-left: 5px;
    margin-right: -5px;
    padding-right: 5px;
    border-radius: 8px;
}

.review-date-id {
    font-size: 10px !important;
    opacity: 0.6;
}

.star-rating-input label {
    font-size: 24px;
    cursor: pointer;
}

/* Author Card */
.author-card-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.author-card-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.author-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.author-meta-tiny {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 600;
}

.author-name-bold {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-role-sm {
    font-size: 11px;
    opacity: 0.85;
}

/* Newsletter Sleek */
.store-newsletter-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sleek-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.sleek-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sleek-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 25px;
    color: #fff;
    outline: none;
    font-size: 14px;
}

.sleek-input-group button {
    background: #fff;
    color: #1e293b;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.sleek-input-group button:hover {
    background: var(--primary);
    color: #fff;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 30px;
    color: #e2e8f0;
    cursor: pointer;
    transition: color 0.15s;
}

.star-rating-input input:checked~label,
.star-rating-input label:hover,
.star-rating-input label:hover~label {
    color: #f59e0b;
}

/* Modern Newsletter Card */
.store-newsletter-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2), 0 10px 10px -5px rgba(79, 70, 229, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-newsletter-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.sleek-input-group {
    background: #fff;
    padding: 6px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.sleek-input-group input {
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    color: #1e293b;
    flex: 1;
    outline: none;
    background: transparent;
}

.sleek-input-group button {
    background: #4f46e5;
    color: #fff !important;
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.sleek-input-group button:hover {
    background: #4338ca;
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .store-bottom-layout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .store-bottom-sidebar {
        order: 2;
    }

    .store-bottom-main {
        order: 1;
    }
}

.store-bottom-layout-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

.store-bottom-sidebar .glass-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Favorite Buttons */
.btn-favorite-full {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: #fff;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid #e2e8f0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-favorite-full .heart-icon {
    font-size: 14px;
    transition: transform 0.2s;
}

.btn-favorite-full:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
    transform: translateY(-1px);
}

.btn-favorite-full.active {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.btn-favorite-full.active .heart-icon {
    transform: scale(1.2);
}

/* Review Styles */
.store-reviews-section {
    position: relative;
}

.review-item {
    transition: all 0.3s;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 24px;
    color: var(--slate-200);
    cursor: pointer;
    transition: color 0.15s;
}

.star-rating-input input:checked~label,
.star-rating-input label:hover,
.star-rating-input label:hover~label {
    color: var(--accent);
}

/* Newsletter Polish */
.sleek-newsletter-form {
    margin-top: 25px;
}

/* Final Layout Fixes */
.touch-bottom {
    margin-bottom: 120px !important;
    display: block !important;
    clear: both !important;
}

.store-bottom-content {
    padding-bottom: 150px !important;
    margin-top: 100px !important;
    margin-bottom: 0 !important;
}