/* Font Family */
body {
    font-family: 'Rubik', sans-serif;
    color: #000;
    overflow-x: hidden;
}

/* Colors */
:root {
    --pharma-teal: #61e3d3; /* Lighter teal from image */
    --pharma-green: #8bc34a;
    --pharma-yellow: #ffc107;
    --pharma-text: #333;
    --pharma-gray: #f8f9fa;
}

.text-teal {
    color: var(--pharma-teal) !important;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
    color: #000 !important;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000 !important;
    margin-left: 1rem;
}

.icon-bag {
    position: relative;
}

.bag-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--pharma-teal);
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    background-image: url('../images/hero_1.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.btn-hero {
    background-color: var(--pharma-teal);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 0;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: #4ac7b8;
    color: white;
    transform: translateY(-2px);
}

.btn-square {
    border-radius: 0;
}

/* Features Features */
.feature-box {
    padding: 40px 30px;
    text-align: center;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Move up to overlap hero slightly if desired, typically Pharma floats up */
    position: relative; 
    z-index: 2;
}

.bg-teal { background-color: var(--pharma-teal); }
.bg-green { background-color: var(--pharma-green); }
.bg-yellow { background-color: var(--pharma-yellow); }

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.feature-subtitle {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Products */
.section-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.store-filter-bar {
    display: inline-flex;
    background-color: transparent;
}

.store-filter-item {
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #111;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-right: none;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.store-filter-item:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.store-filter-item:last-child {
    border-right: 1px solid #e5e7eb;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.store-filter-item:hover {
    background-color: #f3f4f6;
    color: #000;
}

.store-filter-item.active {
    background-color: var(--pharma-teal);
    color: #fff;
}

.product-card {
    text-align: center;
    border: none;
    margin-bottom: 3rem;
    transition: all 0.3s;
    position: relative; /* Fix for absolute positioning of badge */
}

.product-image {
    background-color: #f8f9fa;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.product-title a {
    color: #000;
    text-decoration: none;
}

.product-title a:hover {
    color: #000;
    text-decoration: none;
}

.product-price {
    font-weight: 700;
    color: #555;
    font-size: 1rem;
}

.product-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    margin-right: 5px;
    font-size: 0.9rem;
}

.product-detail-image-wrapper {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 380px;
}

.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-detail-image-wrapper:hover .product-detail-image {
    transform: scale(1.03);
}

.product-detail-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
}

.product-detail-bullets li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.4rem;
    color: #555;
}

.product-detail-bullets .bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--pharma-teal);
    margin-right: 8px;
    margin-top: 6px;
}

.product-table-image-wrapper {
    max-width: 100%;
    height: 300px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.product-table-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-table-image-wrapper:hover .product-table-image {
    transform: scale(1.03);
}

/* Sale Badge */
.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--pharma-yellow); /* Orange/Yellow per image */
    color: white;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.product-whatsapp-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.product-whatsapp-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* Feedback Stars */
.feedback-stars {
    display: inline-flex;
    gap: 6px;
    font-size: 1.6rem;
    cursor: pointer;
}

.feedback-star {
    color: #e5e7eb;
    transition: color 0.2s, transform 0.1s;
}

.feedback-star.active,
.feedback-star.hover {
    color: var(--pharma-teal);
}

.feedback-star:hover {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-card {
    text-align: center;
    padding: 2rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: #999;
}

.testimonial-stars {
    font-size: 1.4rem;
    color: #e5e7eb;
}

.testimonial-stars .active {
    color: var(--pharma-teal);
}

/* Promo Blocks */
.promo-block {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem;
    position: relative;
}

.promo-block.left {
    background-color: #e3f2fd; /* Light blue placeholder bg */
}

.promo-block.right {
    background-color: #f1f8e9; /* Light green placeholder bg */
}

.promo-content {
    max-width: 50%;
    z-index: 2;
}

.promo-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding-top: 5rem;
    padding-bottom: 2rem;
    font-size: 0.9rem;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #000;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--pharma-teal);
}

.contact-info li {
    margin-bottom: 0.8rem;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--pharma-teal);
    margin-right: 10px;
    margin-top: 3px;
}

/* Contact Page Specific Styles */
.bg-turquoise {
    background-color: var(--pharma-teal) !important;
}

.form-control {
    border-color: #e6e6e6;
    height: 50px;
}

.form-control:focus {
    border-color: var(--pharma-teal);
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

label.text-black {
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

.btn-primary {
    background-color: var(--pharma-teal);
    border-color: var(--pharma-teal);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #4ac7b8 !important;
    border-color: #4ac7b8 !important;
}

.text-black {
    color: #000 !important;
}

.breadcrumb a {
    color: var(--pharma-teal);
}

.breadcrumb-link {
    color: var(--pharma-teal) !important;
    text-decoration: none !important;
}

.breadcrumb-link:hover {
    color: var(--pharma-teal) !important;
    text-decoration: none !important;
}

.site-section {
    padding: 7em 0;
}

@media (max-width: 767.98px) {
    .site-section {
        padding: 3em 0;
    }
}

/* Cart Table Styles */
.site-blocks-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.site-blocks-table .table {
    min-width: 800px;
}

.site-blocks-table thead th {
    padding: 30px;
    text-align: center;
    border-width: 0px !important;
    vertical-align: middle;
    color: #000;
}

.site-blocks-table td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    color: #444;
}

.site-blocks-table .product-thumbnail {
    width: 200px;
}

.site-blocks-table .btn-outline-primary {
    border-color: var(--pharma-teal);
    color: var(--pharma-teal);
}

.site-blocks-table .btn-outline-primary:hover {
    background-color: var(--pharma-teal);
    color: #fff;
}

.promo-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.btn-block {
    display: block;
    width: 100%;
}

.text-right {
    text-align: right;
}

.pl-5 {
    padding-left: 3rem !important;
}

.js-btn-minus, .js-btn-plus {
    cursor: pointer;
}

/* Promo Images Section */
.promo-images-section {
    background-color: #f8fdf9;
}

.promo-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* About Page Styles */
.feature-box-about {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-box-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
