/* ========== Global Styles ========== */

/* Custom SVG Icons */
.icon-svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    object-fit: contain;
}
.icon-svg-sm { width: 14px; height: 14px; }
.icon-svg-md { width: 18px; height: 18px; }
.icon-svg-lg { width: 22px; height: 22px; }
.icon-svg-xl { width: 28px; height: 28px; }

/* Color Palette - Tania Kiran Brand */
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --background-color: #ffffff;
    --accent-color: #FADADD;
    --accent-dark: #f0b4ba;
    --accent-deeper: #e89ca3;
    --accent-light: #fef0f1;
    --neutral-tone: #F2F2F2;
    --text-light: #F2F2F2;
    --text-dark: #333;
    --text-muted: #666666;
    --white: #ffffff;
    --black: #000;
    --hover-color: #333333;
}

/* ========== Body Styling ========== */
body {
    font-family: Arial, sans-serif;
    background-color: #fff !important;
    color: #000 !important;
    margin-top: 54px;
    padding-top: 80px;
}

/* ========== Headings ========== */
h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
    font-weight: bold !important;
    margin: 10px 0;
}

/* ========== Paragraphs and Text ========== */
p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333 !important;
    margin-bottom: 15px;
}

.content-page{
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: bold;
    margin-left: 10%;
    margin-right: 10%;
}
.p-page {
    font-size: 1rem;
    line-height: 1.6;
    color: #333 !important;
    margin-bottom: 15px;
    font-weight: bold;
    margin-left: 15px;
}

/* Default span color */
span {
    color: inherit;
    font-weight: normal;
}

/* ========== Buttons ========== */
.btn-primary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    border: 2px;
    border-color: var(--secondary-color) !important;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    background: var(--hover-color) !important;
}

/* Ensure button text and spans inside buttons are white */
.btn-primary span,
.btn-add-to-cart span,
.btn-buy-now span,
button.btn span {
    color: inherit !important;
}

/* Price inside buttons - soft pink for visibility */
.btn-add-to-cart .btn-price,
.btn-primary .btn-price {
    color: #FADADD !important;
    font-weight: 700;
}

/* ========== Cards & Containers ========== */
.card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.card-text {
    font-size: 16px;
    color: var(--text-muted);
}

/* ========== Images ========== */
img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

/* ========== Links ========== */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: inherit;
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.text-bold {
    font-weight: bold;
}

.text-muted {
    color: var(--text-muted);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.list-group-item {
    background-color: var(--background-color) !important;
    color: var(--secondary-color) !important;
}

.alignment {
    transform: translateY(100px) !important;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .w-90{
        max-width:90% !important;
    }
}

@media (max-width: 768px) {
    .body{
        padding-top: 120px !important;
    }
}

@media (max-width: 430px) {
    .body{
        padding-top: 60px !important;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}
