.navbar-brand {
    font-family: 'Inter', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.625rem !important;
    letter-spacing: -0.03em !important;
    color: #121212 !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 0.35rem !important;
}

.navbar-brand:hover {
    opacity: 1 !important;
}

.brand-cp {
    font-weight: 900 !important;
    color: #121212 !important;
    font-size: 1.875rem !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.05em !important;
}

.brand-deals {
    font-weight: 800 !important;
    background: linear-gradient(135deg, #b12704 0%, #d93025 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 1.625rem !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}

.navbar-brand:hover .brand-cp {
    color: #b12704 !important;
}

.navbar-brand:hover .brand-deals {
    background: linear-gradient(135deg, #121212 0%, #000 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

 :root {
     --product-dark: #1a1a1a;
     --product-medium: #4a4a4a;
     --product-light: #757575;
     --product-border: #e0e0e0;
     --product-bg: #f8f9fa;
     --accent-red: #d93025;
     --accent-green: #0f9d58;
     --accent-orange: #f4b400;
     --accent-blue: #1a73e8;
 }

body {
    font-family: 'Inter', sans-serif;
    color: var(--product-dark);
    background: white;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--product-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--product-border);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--product-medium);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--accent-red);
}

/* Main Product Section */
.product-main-section {
    padding: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Product Images */
.product-images {
    position: sticky;
    top: 2rem;
}

.main-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--product-border);
    overflow: hidden;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

.deal-badge-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--accent-red);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(217, 48, 37, 0.3);
    z-index: 10;
}

.limited-time-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Product Info */
.product-info {
    max-width: 640px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-category:hover {
    color: var(--accent-red);
}

.product-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--product-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.product-brand {
    font-size: 1rem;
    color: var(--product-medium);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-brand span {
    color: var(--product-light);
    font-weight: 400;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--product-border);
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--accent-orange);
    font-size: 1.25rem;
}

.rating-text {
    font-size: 0.95rem;
    color: var(--product-medium);
    font-weight: 600;
}

.rating-count {
    color: var(--product-light);
    font-weight: 400;
}

/* Price Section */
.price-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-red);
    line-height: 1;
}

.original-price {
    font-size: 1.5rem;
    color: var(--product-light);
    text-decoration: line-through;
    font-weight: 600;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1rem;
}

.savings-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-green);
    font-size: 1.125rem;
    font-weight: 700;
}

.savings-info i {
    font-size: 1.5rem;
}

/* Coupon Box */
.coupon-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    color: white;
}

.coupon-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coupon-header i {
    font-size: 1.5rem;
}

.coupon-code-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.coupon-code-text {
    flex: 1;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    font-family: 'Courier New', monospace;
}

.copy-coupon-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.copy-coupon-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* CTA Button */
.cta-button-container {
    margin-bottom: 2rem;
}

.btn-get-deal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    background: var(--accent-red);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(217, 48, 37, 0.3);
}

.btn-get-deal:hover {
    background: #c72e24;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 48, 37, 0.4);
    color: white;
}

.btn-get-deal i:first-child {
    font-size: 1.5rem;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid var(--product-border);
    border-bottom: 1px solid var(--product-border);
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--product-medium);
}

.trust-item i {
    color: var(--accent-green);
    font-size: 1.25rem;
}

/* Product Description */
.product-description {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--product-dark);
    margin-bottom: 1rem;
}

.description-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--product-medium);
    margin-bottom: 1rem;
}

/* Key Features */
.key-features {
    background: var(--product-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1557b0 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--product-dark);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--product-medium);
    margin: 0;
    line-height: 1.5;
}

/* Specifications */
.specifications {
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    gap: 0.5rem;
}

.spec-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    padding: 1rem 1.5rem;
    background: var(--product-bg);
    border-radius: 8px;
}

.spec-row:nth-child(even) {
    background: white;
    border: 1px solid var(--product-border);
}

.spec-label {
    font-weight: 700;
    color: var(--product-dark);
    font-size: 0.875rem;
}

.spec-value {
    color: var(--product-medium);
    font-size: 0.875rem;
}

/* Highlights */
.product-highlights {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--product-dark);
    font-weight: 600;
}

.highlight-item i {
    width: 32px;
    height: 32px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Store Info */
.store-info {
    background: white;
    border: 2px solid var(--product-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.store-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-logo {
    width: 60px;
    height: 60px;
    background: var(--product-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--product-medium);
}

.store-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--product-dark);
    margin-bottom: 0.25rem;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.store-rating .stars {
    font-size: 1rem;
}

.store-benefits {
    display: grid;
    gap: 0.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--product-medium);
}

.benefit-item i {
    color: var(--accent-green);
}

/* Related Deals */
.related-section {
    background: var(--product-bg);
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--product-border);
}

.related-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--product-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--product-border);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.related-image {
    aspect-ratio: 1;
    background: var(--product-bg);
    padding: 1.5rem;
    position: relative;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.related-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-red);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.875rem;
}

.related-content {
    padding: 1.25rem;
}

.related-brand {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--product-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.related-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--product-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.related-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-red);
}

.related-original {
    font-size: 1rem;
    color: var(--product-light);
    text-decoration: line-through;
}

/* Countdown Timer */
.countdown-timer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 8px;
    min-width: 70px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.countdown-text {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Share Buttons */
.share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--product-border);
}

.share-label {
    font-weight: 700;
    color: var(--product-medium);
    font-size: 0.875rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--product-bg);
    color: var(--product-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.share-btn:hover {
    background: var(--product-dark);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .current-price {
        font-size: 2.25rem;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .coupon-code-box {
        flex-direction: column;
        align-items: stretch;
    }

    .copy-coupon-btn {
        width: 100%;
    }
}