/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
    user-select: none;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: auto;
    padding: 10px;
}

header {
    text-align: center;
    padding: 10px;
    margin: 10px 0 10px;
}

/* Top Bar */
.top-bar {
    background-color: #1D3557;
    color: #f4f4f4;
    padding: 6px;
    text-align: center;
    font-size: 12px;
}

.bottom-bar {
    background-color: #232025;
    color: #f4f4f4;
    padding: 10px;
    text-align: center;
    font-size: 12px;
}
	
.top-bar a {
    color: #f4f4f4;
    margin-right: 10px;
}

.bottom-bar a {
    color: #f4f4f4;
    margin-right: 10px;
}

/* Product Section */
.product-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

.product-info,
.product-image {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}

.product-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Rating Stars */
.stars {
    color: #ffd700;
    font-size: 1.2em;
}

/* Typography */
h1 {
    text-align: center;
    color: #1D3557;
}

h2 {
    color: #2F4F4F;
}

h3 {
    color: #000;
}

/* CTA Button */
.cta-btn1 {
    background-color: #1D3557; 
    color: white; 
    padding: 10px;
    border: 2px solid transparent; /* Hidden border initially */
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out, border 0.2s ease-in-out;
    font-size: 1em;
    display: block;
    text-align: center;
    width: 100%;
}

.cta-btn1:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	background-color: white; 
    color: black; 
    border: 2px solid #007bff; /* Blue border on hover */
}

/* Links */
a {
    color: #555;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Font Face */
@font-face {
    font-family: 'YourFont';
    src: url('your-font.woff2') format('woff2');
    font-display: swap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-layout {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4em;
    }
}

.breadcrumb {
    font-size: 16px;
    margin: 5px 0;
    padding: 8px;
    background-color: #f8f9fa; /* Light gray background for better visibility */
    border-radius: 5px;
}

.breadcrumb a {
    text-decoration: none;
    color: #004085; /* Darker blue for better contrast */
    font-weight: bold;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #002752; /* Even darker blue on hover */
}

.breadcrumb span {
    color: #333; /* Darker gray for readability */
    font-weight: bold;
}

/* Sticky CTA Button for Mobile */
@media (max-width: 768px) {
    .cta-btn1 {
        position: fixed;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: calc(100% - 20px); /* Full width with some padding */
    }
}
