/* Offers Page Styles */
:root {
    --primary-color: #FF7043;
    --text-dark: #333333;
    --text-light: #666666;
    --background-color: #F8F9FA;
    --white: #FFFFFF;
}

body {
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Navigation Styles */
.top-nav {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

.back-button i {
    font-size: 18px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.view-offers-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.action-icons {
    display: flex;
    gap: 4px;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background-color: rgba(0,0,0,0.05);
    color: var(--primary-color);
}

/* Offers Content Styles */
.offers-content {
    max-width: 800px;
    margin: 76px auto 2rem;
    padding: 0 1rem;
}

.offer-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 24px;
}

.offer-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #fff;
}

.offer-details {
    padding: 24px;
}

.offer-title {
    font-size: 28px;
    color: var(--text-dark);
    margin: 0 0 20px;
    line-height: 1.35;
    font-weight: 600;
}

.product-info {
    margin-bottom: 24px;
}

.product-name {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-weight {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.product-mrp {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Share Section Styles */
.share-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E0E0E0;
    position: relative;
}

.share-section h3 {
    color: #757575;
    font-size: 13px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    gap: 30px;
    position: relative;
    font-size: 25px;
    color: #fc4d4d;
    
    
}

/* Active states for share buttons */
.share-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}


/* Responsive Design */
@media (max-width: 768px) {
    .offer-image {
        height: 250px;
    }

    .offer-details {
        padding: 20px;
    }

    .offer-title {
        font-size: 24px;
    }

    .product-name {
        font-size: 16px;
    }

    .product-weight,
    .product-mrp {
        font-size: 14px;
    }

    .view-offers-btn span {
        display: none;
    }
}
