/* store/style.css - Custom Modern Dark-Theme Stylesheet for theSoulMates PSD Store */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #ff2300;
    --primary-hover: #e01f00;
    --dark-bg-100: #0a0a0a;
    --dark-bg-200: #121212;
    --dark-bg-300: #1a1a1a;
    --dark-bg-400: #242424;
    --glass-bg: rgba(26, 26, 26, 0.75);
    --glass-border: rgba(255, 35, 0, 0.15);
    --glass-border-light: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-muted: #a0a0a0;
    --text-dark: #111111;
    --border-color: #2e2e2e;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glow-shadow: 0 0 15px rgba(255, 35, 0, 0.3);
    --transition-speed: 0.3s;
}

/* Base resets & typography */
body {
    background-color: var(--dark-bg-100);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    padding-top: 80px; /* spacing for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 0;
}

p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover, a:focus {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Glassmorphism Panel helper */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-light);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--card-shadow);
    transition: border-color var(--transition-speed) ease;
}
.glass-panel:hover {
    border-color: var(--glass-border);
}

/* Section Headings */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-title h2 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Custom Navbar Overrides (Bootstrap 3.3.7 integration) */
.navbar-custom {
    background-color: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    transition: all 0.3s ease;
}
.navbar-custom .navbar-brand img {
    height: 40px;
    width: auto;
    display: inline-block;
}
.navbar-custom .navbar-brand {
    padding: 5px 15px;
    height: auto;
}
.navbar-custom .navbar-nav > li > a {
    color: var(--text-primary) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 15px 18px;
    transition: color 0.3s ease;
}
.navbar-custom .navbar-nav > li > a:hover,
.navbar-custom .navbar-nav > li > a:focus,
.navbar-custom .navbar-nav > li.active > a {
    background-color: transparent !important;
    color: var(--primary-color) !important;
}

/* Navbar Action Items */
.navbar-actions {
    display: flex;
    align-items: center;
    height: 50px;
    margin-left: 15px;
}
.nav-action-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    padding: 8px 12px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}
.nav-action-btn:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}
.cart-count-badge {
    position: absolute;
    top: -2px;
    right: 0px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(255, 35, 0, 0.5);
}

/* Custom Hero Section */
.store-hero {
    background: radial-gradient(circle at 80% 20%, rgba(255, 35, 0, 0.08) 0%, rgba(0,0,0,0) 50%), 
                linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
    padding: 90px 0 70px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.store-hero-content {
    padding-top: 30px;
}
.store-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.store-hero h1 span {
    color: var(--primary-color);
    text-shadow: var(--glow-shadow);
}
.store-hero p {
    font-size: 18px;
    margin-bottom: 30px;
}
.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}
.hero-feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Hero Carousel */
.hero-carousel-container {
    perspective: 1000px;
}
.hero-carousel-viewport {
    width: 100%;
    height: 380px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
}
.hero-carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border-light);
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(0.9) translateZ(-100px);
}
.hero-carousel-item.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    z-index: 2;
}
.hero-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Search Bar styling */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
}
.search-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(18, 18, 18, 0.8);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: var(--glow-shadow);
}
.search-input {
    width: 100%;
    padding: 15px 25px;
    padding-right: 60px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
}
.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}
.search-btn:hover {
    background: var(--primary-hover);
}

/* Filter Controls */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
.filter-tab {
    background: var(--dark-bg-300);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-tab:hover, .filter-tab.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: var(--glow-shadow);
}

/* Product Card Grid & Items */
.products-grid {
    margin-bottom: 60px;
}
.product-card-wrapper {
    margin-bottom: 30px;
}
.product-card {
    background: var(--dark-bg-200);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 35, 0, 0.15);
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: var(--glow-shadow);
}
.product-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg-300);
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img {
    transform: scale(1.08);
}
.product-card-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.product-card:hover .product-card-overlay {
    opacity: 1;
}
.product-card-body {
    padding: 20px;
    position: relative;
}
.product-card-cat {
    font-size: 11px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.product-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    height: 48px;
    overflow: hidden;
}
.product-card-title a {
    color: var(--text-primary);
}
.product-card-title a:hover {
    color: var(--primary-color);
}
.product-rating {
    margin-bottom: 15px;
    color: #ffc107;
    font-size: 12px;
}
.product-rating span {
    color: var(--text-muted);
    margin-left: 5px;
}
.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 10px;
}
.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}
.product-price span {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 5px;
    font-weight: 500;
}
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 35, 0, 0.2);
    transition: all 0.3s ease;
}
.btn-primary-custom:hover, .btn-primary-custom:focus {
    background-color: var(--primary-hover);
    color: #ffffff;
    box-shadow: var(--glow-shadow);
    transform: translateY(-1px);
}
.btn-secondary-custom {
    background-color: var(--dark-bg-300);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-secondary-custom:hover {
    background-color: var(--dark-bg-400);
    border-color: var(--text-muted);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--dark-bg-200);
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.step-item {
    text-align: center;
    padding: 20px;
}
.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 35, 0, 0.1);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 32px;
    box-shadow: var(--glow-shadow);
    transition: transform 0.3s ease;
}
.step-item:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}
.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Testimonials / Reviews */
.testimonials-section {
    padding: 70px 0;
}
.testimonial-card {
    background: var(--dark-bg-200);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    position: relative;
}
.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.testimonial-quote::before {
    content: '\201C';
    font-size: 60px;
    color: rgba(255, 35, 0, 0.1);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
    z-index: -1;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--dark-bg-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.testimonial-user-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}
.testimonial-user-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Footer Section */
.store-footer {
    background-color: var(--dark-bg-100);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}
.footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 12px;
}
.footer-links-list a {
    color: var(--text-muted);
}
.footer-links-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Auth Popup Modals (Glassmorphism & animations) */
.custom-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.custom-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.custom-modal-container {
    width: 100%;
    max-width: 480px;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    padding: 15px;
}
.custom-modal-overlay.active .custom-modal-container {
    transform: translateY(0);
}
.custom-modal-content {
    background: var(--dark-bg-200);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    padding: 30px;
    position: relative;
}
.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}
.close-modal-btn:hover {
    color: var(--primary-color);
}
.modal-logo {
    text-align: center;
    margin-bottom: 25px;
}
.modal-logo img {
    height: 40px;
}
.modal-tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}
.modal-tab-header {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}
.modal-tab-header.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Custom form elements */
.form-group-custom {
    margin-bottom: 20px;
}
.form-label-custom {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.form-control-custom {
    width: 100%;
    background-color: var(--dark-bg-300);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}
.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(255, 35, 0, 0.15);
}
.btn-block-custom {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-top: 10px;
}

/* Product Detail Page Specifics */
.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    box-shadow: var(--card-shadow);
}
.product-main-img {
    height: 380px;
    background-color: var(--dark-bg-200);
}
.product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-thumbs {
    display: flex;
    gap: 10px;
    padding: 10px;
    background-color: var(--dark-bg-300);
}
.thumb-item {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.thumb-item.active, .thumb-item:hover {
    border-color: var(--primary-color);
}
.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-video-placeholder {
    background: linear-gradient(135deg, var(--dark-bg-300) 0%, var(--dark-bg-200) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin-top: 30px;
}
.product-video-placeholder i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.specs-table {
    width: 100%;
    margin-top: 25px;
}
.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}
.specs-table td {
    padding: 12px 15px;
    font-size: 14px;
}
.specs-table td.spec-name {
    font-weight: 700;
    color: var(--text-muted);
    width: 40%;
}

/* Cart Page Styling */
.cart-table-panel {
    background: var(--dark-bg-200);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
}
.cart-table th {
    background-color: var(--dark-bg-300);
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}
.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.cart-prod-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cart-prod-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.cart-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-prod-title h4 {
    font-size: 15px;
    margin-bottom: 4px;
}
.cart-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    width: 100px;
    background-color: var(--dark-bg-300);
}
.cart-qty-btn {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-qty-btn:hover {
    background-color: var(--dark-bg-400);
    color: var(--primary-color);
}
.cart-qty-input {
    width: 40px;
    border: none;
    background: transparent;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}
.remove-cart-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s ease;
}
.remove-cart-btn:hover {
    color: var(--primary-color);
}

/* Coupon & Totals Panel */
.summary-panel {
    background-color: var(--dark-bg-200);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--card-shadow);
}
.coupon-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}
.summary-row.total-row {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
}
.summary-row.total-row .grand-total-val {
    color: var(--primary-color);
}

/* Payment Gateway Mockup */
.payment-gateway-container {
    max-width: 500px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.6);
    color: #2b3940;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.payment-header {
    background-color: #172630;
    padding: 25px;
    color: #ffffff;
    position: relative;
}
.payment-merchant-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ff2300;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #ffffff;
    position: absolute;
    top: 25px;
    right: 25px;
}
.payment-merchant-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.payment-desc {
    font-size: 12px;
    color: #b2c0cb;
}
.payment-amount-row {
    background-color: #0f1c24;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    border-top: 1px solid #233543;
}
.payment-amount {
    font-size: 20px;
    font-weight: 700;
}
.payment-amount span {
    font-size: 12px;
    color: #b2c0cb;
    font-weight: normal;
}
.payment-body {
    padding: 30px 25px;
    background-color: #f7f9fa;
}
.payment-method-selector {
    margin-bottom: 25px;
}
.payment-method-title {
    font-size: 11px;
    font-weight: 700;
    color: #8c9ba5;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}
.payment-option-card {
    background: #ffffff;
    border: 1px solid #e1e7ec;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.payment-option-card:hover, .payment-option-card.active {
    border-color: #ff2300;
    box-shadow: 0 4px 12px rgba(255, 35, 0, 0.08);
}
.payment-option-icon {
    font-size: 20px;
    color: #ff2300;
    width: 30px;
    text-align: center;
}
.payment-option-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: #2b3940;
    margin-bottom: 2px;
}
.payment-option-details p {
    font-size: 11px;
    color: #8c9ba5;
    margin: 0;
}
.payment-simulator-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}
.btn-pay-success {
    flex: 1;
    background-color: #1abc9c;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.2);
    transition: background-color 0.2s;
}
.btn-pay-success:hover {
    background-color: #16a085;
}
.btn-pay-fail {
    flex: 1;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
    transition: background-color 0.2s;
}
.btn-pay-fail:hover {
    background-color: #c0392b;
}

/* Order Details / Confirmation Page */
.status-card {
    background: var(--dark-bg-200);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}
.status-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
}
.status-success .status-icon-circle {
    background-color: rgba(26, 188, 156, 0.1);
    color: #1abc9c;
    border: 1px solid rgba(26, 188, 156, 0.3);
    box-shadow: 0 0 20px rgba(26, 188, 156, 0.2);
}
.status-failed .status-icon-circle {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.2);
}
.invoice-receipt {
    background-color: var(--dark-bg-300);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin: 30px auto;
    max-width: 500px;
    text-align: left;
}
.invoice-receipt-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
}
.invoice-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

/* User Profile Order History styling */
.profile-orders-list {
    margin-top: 20px;
}
.profile-order-item {
    background-color: var(--dark-bg-300);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    transition: border-color 0.2s ease;
}
.profile-order-item:hover {
    border-color: var(--glass-border);
}
.profile-order-status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}
.profile-order-status-badge.success {
    background-color: rgba(26, 188, 156, 0.15);
    color: #1abc9c;
}
.profile-order-status-badge.failed {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* Admin Dashboard Specific Styles */
.admin-card-metric {
    background: var(--dark-bg-200);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.admin-metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: rgba(255, 35, 0, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid var(--glass-border);
}
.admin-metric-info h3 {
    font-size: 24px;
    margin-bottom: 2px;
}
.admin-metric-info span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}
.admin-table-panel {
    background-color: var(--dark-bg-200);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--card-shadow);
    margin-bottom: 35px;
}
.admin-table-panel h3 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}
.table-responsive-custom {
    width: 100%;
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    min-width: 600px;
}
.admin-table th {
    padding: 12px 15px;
    font-weight: bold;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border-color);
}
.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    vertical-align: middle;
}
.admin-prod-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-prod-img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fade-in-anim {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive Custom Utilities */
@media (max-width: 767px) {
    body {
        padding-top: 130px; /* offset for stacked mobile navbar */
    }
    .store-hero h1 {
        font-size: 34px;
    }
    .hero-carousel-viewport {
        height: 250px;
        margin-top: 30px;
    }
    .cart-table th {
        display: none; /* simple stack list on mobile */
    }
    .cart-table td {
        display: block;
        width: 100%;
        text-align: right;
        padding: 10px 15px;
    }
    .cart-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        color: var(--text-muted);
    }
    .cart-prod-cell {
        justify-content: flex-end;
    }
    .cart-qty-ctrl {
        margin-left: auto;
    }
    .invoice-receipt {
        padding: 15px;
    }
}

/* ─── Star Rating Input ────────────────────────────────────────────────────── */
.star-rating-input {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 4px;
}
.star-rating-input i {
    font-size: 22px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.15s, transform 0.15s;
}
.star-rating-input i:hover,
.star-rating-input i.fa-solid {
    color: gold;
    transform: scale(1.15);
}

/* ─── Product card thumbnail ───────────────────────────────────────────────── */
.product-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
