/* ==================== ADDITIONS/MODIFICATIONS TO style.css ==================== */
/* Add these styles to the END of your existing style.css file */

/* ==================== TOP INFO BAR (NEW) ==================== */
.top-info-bar {
    background: linear-gradient(90deg, #145347, #1d6b5c, #145347);
    padding: 10px 0;
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-info-location,
.top-info-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-info-location svg,
.top-info-offer svg {
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

.top-info-offer {
    background: rgba(255, 246, 77, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 246, 77, 0.3);
}

@media (max-width: 768px) {
    .top-info-content {
        justify-content: center;
        text-align: center;
    }
    .top-info-location,
    .top-info-offer {
        font-size: 0.75rem;
    }
}

/* ==================== TRUST BADGES - DARK BACKGROUND (3 items) ==================== */
/* This replaces the white background trust badges section */
.trust-badges-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 246, 77, 0.1);
}

.trust-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-grid.trust-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 246, 77, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 246, 77, 0.1);
    transition: all var(--transition-smooth);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 246, 77, 0.3);
    background: rgba(255, 246, 77, 0.06);
}

.trust-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 246, 77, 0.1) 0%, rgba(255, 246, 77, 0.05) 100%);
    border: 2px solid rgba(255, 246, 77, 0.2);
    transition: all var(--transition-base);
}

.trust-item:hover .trust-icon {
    background: linear-gradient(145deg, rgba(255, 246, 77, 0.2) 0%, rgba(255, 246, 77, 0.1) 100%);
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
    fill: none;
}

.trust-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .trust-badges-section {
        padding: 40px 0;
    }
    .trust-grid.trust-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .trust-item {
        padding: 15px 10px;
    }
    .trust-icon {
        width: 55px;
        height: 55px;
    }
    .trust-icon svg {
        width: 26px;
        height: 26px;
    }
    .trust-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .trust-grid.trust-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
    .trust-item {
        padding: 12px 8px;
        gap: 10px;
    }
    .trust-icon {
        width: 45px;
        height: 45px;
    }
    .trust-icon svg {
        width: 22px;
        height: 22px;
    }
    .trust-label {
        font-size: 0.7rem;
    }
}

/* ==================== CONSISTENT SECTION SPACING ==================== */
/* Ensure all sections have the same top/bottom padding */
.section {
    padding: 80px 0;
}

.customer-stories-section {
    padding: 80px 0;
}

/* ==================== HIDE DESIGN COUNT IN CATEGORIES ==================== */
.category-count-dark {
    display: none;
}

/* ==================== HIDE RUNNING BANNER (replaced by top info bar) ==================== */
.running-banner {
    display: none;
}

/* ==================== FOOTER COMPACT (NEW) ==================== */
.footer.footer-compact {
    background: #1a1a1a;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 246, 77, 0.15);
}

/* Horizontal Store Layout */
.footer-stores-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-store {
    text-align: left;
}

.footer-store .store-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-store .store-address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-store .store-contact {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-store .store-contact span {
    display: block;
    margin-bottom: 3px;
}

.footer-store .store-contact a {
    color: var(--gold-primary);
}

.footer-store .store-contact a:hover {
    text-decoration: underline;
}

.footer-store .store-timing {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* Footer Bottom Compact */
.footer-bottom-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.footer-logo-compact img {
    height: 40px;
}

.footer-links-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-links-compact a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer-links-compact a:hover {
    color: var(--gold-primary);
}

.footer-social-compact {
    display: flex;
    gap: 15px;
}

.footer-social-compact a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 246, 77, 0.1);
    border: 1px solid rgba(255, 246, 77, 0.2);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: all var(--transition-base);
}

.footer-social-compact a:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-social-compact a svg {
    width: 18px;
    height: 18px;
}

.footer-copyright {
    text-align: center;
    padding-top: 5px;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-stores-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-store:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer.footer-compact {
        padding: 30px 0 15px;
    }
    .footer-stores-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-store:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    .footer-store {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .footer-store:last-child {
        border-bottom: none;
    }
    .footer-bottom-compact {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-links-compact {
        gap: 15px;
    }
    .footer-links-compact a {
        font-size: 0.8rem;
    }
}

/* ==================== GIFTS PAGE STYLES ==================== */

/* Gift Category Banner */
.gift-category-banner {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.gift-category-banner.gift-banner-her {
    background: linear-gradient(135deg, #2d1f3d 0%, #1a1a2e 50%, #16213e 100%);
}

.gift-category-banner.gift-banner-him {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.gift-category-banner.gift-banner-occasions {
    background: linear-gradient(135deg, #3d2914 0%, #2d1f0f 50%, #1a1a1a 100%);
}

.gift-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.gift-banner-pretitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.gift-banner-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.gift-banner-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-bar {
    background: #111;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
    color: var(--gold-primary);
}

/* Gift Products Section */
.gift-products-section {
    padding: 60px 0 80px;
    background: #fafafa;
    min-height: 500px;
}

.gift-products-section .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.gift-products-section .results-count {
    color: #666;
    font-size: 0.95rem;
}

.gift-products-section .results-count strong {
    color: #1a1a1a;
}

.gift-products-section .results-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gift-products-section .filter-dropdown,
.gift-products-section .sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gift-products-section .filter-dropdown label,
.gift-products-section .sort-dropdown label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.gift-products-section .filter-dropdown select,
.gift-products-section .sort-dropdown select {
    padding: 10px 35px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
    cursor: pointer;
    appearance: none;
    transition: all 0.2s;
}

.gift-products-section .filter-dropdown select:hover,
.gift-products-section .sort-dropdown select:hover {
    border-color: var(--gold-primary);
}

/* Products Grid */
.gift-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gift-products-section .product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.gift-products-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold-primary);
}

.gift-products-section .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    background: #1a1a1a;
    color: #fff;
    z-index: 2;
}

.gift-products-section .product-badge.new {
    background: linear-gradient(135deg, #0d6334 0%, #0a4d28 100%);
}

.gift-products-section .product-badge.trending {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
}

.gift-products-section .product-badge.bestseller {
    background: linear-gradient(135deg, #d4a853 0%, #c49a47 100%);
    color: #1a1a1a;
}

.gift-products-section .product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gift-products-section .product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s;
}

.gift-products-section .product-card:hover .product-image img {
    transform: scale(1.08);
}

.gift-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.gift-products-section .product-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.4;
}

.gift-products-section .product-material {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.gift-products-section .product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #c41e3a;
}

/* No Products */
.gift-products-section .no-products {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.gift-products-section .no-products-icon {
    margin-bottom: 25px;
    color: #ccc;
}

.gift-products-section .no-products h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.gift-products-section .no-products p {
    color: #666;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination */
.gift-products-section .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.gift-products-section .pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.gift-products-section .pagination-btn:hover {
    background: #f8f6f0;
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.gift-products-section .pagination-btn.active {
    background: linear-gradient(135deg, #d4a853 0%, #c49a47 100%);
    border-color: #d4a853;
    color: #fff;
}

.gift-products-section .pagination-ellipsis {
    color: #999;
    padding: 0 5px;
}

/* Related Gifts Section */
.related-gifts-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.related-gifts-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.related-gifts-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.related-gift-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
}

.related-gift-card:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.related-gift-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
}

.related-gift-arrow {
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.related-gift-card:hover .related-gift-arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .gift-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gift-category-banner {
        height: 250px;
    }
    
    .gift-banner-title {
        font-size: 2.5rem;
    }
    
    .gift-banner-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .gift-products-section .results-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gift-products-section .results-filters {
        justify-content: space-between;
    }
    
    .gift-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gift-banner-title {
        font-size: 2rem;
    }
    
    .gift-products-section .results-filters {
        flex-direction: column;
    }
    
    .gift-products-section .filter-dropdown,
    .gift-products-section .sort-dropdown {
        width: 100%;
    }
    
    .gift-products-section .filter-dropdown select,
    .gift-products-section .sort-dropdown select {
        width: 100%;
    }
    
    .related-gift-card {
        min-width: 100%;
    }
}

/* ==================== CENTERED LOGO HEADER ==================== */
.header.header-centered {
    background: #1a2e28;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-main-centered {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 80px;
}

/* Left Navigation */
.header-centered .nav-left {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}

.header-centered .nav-left .nav-list {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Center Logo */
.logo-center {
    flex-shrink: 0;
    padding: 10px 30px;
}

.logo-center a {
    display: block;
}

.logo-center img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

.logo-center:hover img {
    transform: scale(1.05);
}

/* Right Navigation */
.header-centered .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
    gap: 25px;
}

.header-centered .nav-right .nav-list {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav Items Styling */
.header-centered .nav-item {
    position: relative;
}

.header-centered .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 28px 18px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    white-space: nowrap;
}

.header-centered .nav-link:hover {
    color: var(--gold-primary);
}

.header-centered .nav-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.header-centered .nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown */
.header-centered .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #1a2e28;
    border: 1px solid rgba(255, 246, 77, 0.15);
    border-top: 2px solid var(--gold-primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.header-centered .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-centered .dropdown a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-centered .dropdown a:last-child {
    border-bottom: none;
}

.header-centered .dropdown a:hover {
    background: rgba(255, 246, 77, 0.08);
    color: var(--gold-primary);
    padding-left: 25px;
}

/* Header Action Buttons */
.header-centered .header-actions {
    display: flex;
    gap: 12px;
}

.header-centered .header-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.header-centered .header-actions .btn-primary {
    background: var(--gold-primary);
    color: #1a1a1a;
    border: 1px solid var(--gold-primary);
}

.header-centered .header-actions .btn-primary:hover {
    background: transparent;
    color: var(--gold-primary);
}

.header-centered .header-actions .btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.header-centered .header-actions .btn-outline:hover {
    background: var(--gold-primary);
    color: #1a1a1a;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.header-centered .menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.header-centered .menu-toggle svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-primary);
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .header-centered .nav-left,
    .header-centered .nav-right {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .header-centered .nav-link {
        padding: 25px 12px;
        font-size: 0.85rem;
    }
    
    .logo-center img {
        height: 50px;
    }
}

/* Responsive - Mobile */
@media (max-width: 992px) {
    .header-centered .nav-left,
    .header-centered .nav-right .nav-list,
    .header-centered .header-actions {
        display: none;
    }
    
    .header-main-centered {
        justify-content: space-between;
        padding: 10px 0;
    }
    
    .logo-center {
        padding: 5px 0;
        flex: 1;
        text-align: center;
    }
    
    .logo-center img {
        height: 45px;
    }
    
    .header-centered .menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
    }
    
    .header-centered .nav-right {
        padding: 0;
    }
}

/* ==================== TESTIMONIALS CAROUSEL - FINAL OVERRIDE ==================== */
/* These styles load last and take priority over all style.css definitions */

.stories-carousel-wrapper {
    position: relative;
    height: 520px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.stories-carousel-container {
    display: flex;
    align-items: center;
    height: 100%;
    will-change: transform;
}

/* ALL cards SAME fixed width — zoom is ONLY via transform: scale() */
/* This prevents flexbox reflow and keeps JS positioning accurate */
.story-phone-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    background: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    flex-shrink: 0;
    width: 200px;
    height: 350px;
    margin: 0 10px;
    opacity: 0.3;
    transform: scale(0.8);
    filter: blur(1.5px) brightness(0.4);
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease,
                border-color 0.6s ease, box-shadow 0.6s ease;
    pointer-events: auto;
}

.story-phone-card.adjacent {
    opacity: 0.6;
    transform: scale(0.95);
    filter: blur(0px) brightness(0.65);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.story-phone-card.active {
    opacity: 1;
    transform: scale(1.3);
    filter: blur(0px) brightness(1);
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 3px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,168,83,0.12);
    z-index: 10;
}

.story-phone-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.story-phone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    padding: 35px 15px 20px;
    text-align: center;
    pointer-events: none;
}

.story-customer-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.story-brand-tag {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff64d;
    margin-bottom: 6px;
}

.story-caption {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
}

.stories-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    position: relative;
    z-index: 100;
}

.story-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255,255,255,0.25);
    padding: 0;
    display: inline-block;
    position: relative;
    z-index: 101;
}

.story-dot:hover {
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.15);
}

.story-dot.active {
    background: #ffc000;
    border-color: #ffc000;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(58,123,213,0.5);
}

@media (max-width: 768px) {
    .stories-carousel-wrapper { height: 420px; }
    .stories-carousel-container { gap: 0; }
    .story-phone-card { width: 140px; height: 250px; margin: 0 6px; border-radius: 18px; }
    .story-phone-card.active { transform: scale(1.25); }
}

@media (max-width: 576px) {
    .stories-carousel-wrapper { height: 360px; }
    .story-phone-card { width: 110px; height: 200px; margin: 0 5px; border-radius: 14px; }
    .story-phone-card.active { transform: scale(1.2); }
}

/* ============================================
   BREADCRUMB BAR (replaces Quick Actions Bar)
   ============================================ */
.mpp-breadcrumb-bar {
    background: #f9f7f2;
    border-bottom: 1px solid #e8e0d5;
    padding: 14px 0;
}
.mpp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}
.mpp-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
}
.mpp-breadcrumb li:not(:last-child)::after {
    content: '›';
    color: #ccc;
    font-size: 16px;
}
.mpp-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.mpp-breadcrumb a:hover {
    color: #d4af37;
}
.mpp-breadcrumb .current {
    color: #d4af37;
    font-weight: 600;
}
