body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: #f3f7ff;
}

.product-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.product-title {
    text-align: center;
    font-size: 2.6rem;
    color: #003a92;
    font-weight: 700;
}

.product-subtitle {
    text-align: center;
    color: #555;
    margin-top: -10px;
    font-size: 1.1rem;
}

.product-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.product-images img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    transition: 0.3s;
}

.product-images img:hover {
    transform: scale(1.05);
}

.product-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    margin-top: 25px;
}

.section {
    margin-top: 35px;
}

.section h2 {
    font-size: 1.7rem;
    color: #003a92;
    border-left: 5px solid #003a92;
    padding-left: 12px;
}

ul {
    margin-top: 15px;
    padding-left: 25px;
}

ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.table-box {
    margin-top: 20px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #ccc;
}

table th {
    background: #003a92;
    color: white;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    text-decoration: none;
    background: #003a92;
    padding: 12px 22px;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
}

.back-link:hover {
    background: #022c6f;
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  padding: 0;
  z-index: 10;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: black;
}

.dropdown-content li a:hover {
  background-color: #eee;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* PERFECT 3-CARD HORIZONTAL LAYOUT */
.tyre-card-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 40px auto;
    max-width: 1400px;
}

.tyre-card {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 25px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.tyre-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.tyre-card img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
    display: block;
}

.tyre-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0 10px;
}

.tyre-card p {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}
.right-btn-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.right-open-btn {
    background: #0056c9;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.right-open-btn:hover {
    background: #003e96;
    transform: translateX(3px);
}
.tyre-card img {
    width: 100%;
    height: 250px;      /* Image height equal in all cards */
    object-fit: cover;  /* Image fit full box without distortion */
    border-radius: 8px; /* Smooth rounded corner */
}
.tyre-card h3 {
    text-align: center;
}
.tyre-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(0.8) hue-rotate(190deg);
}
.tyre-card {
    background: #e6f2ff;   /* Light Blue Background */
    border-radius: 12px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
    padding: 20px;
    transition: 0.3s;
    color: #003366;        /* Dark blue text for contrast */
}
.back-btn-box {
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Left side */
    margin: 20px 0 10px 0;
}

.back-btn {
    background: #e6f2ff;                 /* Light blue */
    color: #003366;                      /* Dark blue text */
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #bcd9ff;           /* Soft border */
    transition: 0.3s;
}

.back-btn:hover {
    background: #d4e8ff;
    border-color: #003366;
    transform: translateX(-3px);
}
.left-btn-box {
    position: absolute;
    left: 40px;
    top: 180px;
}

.left-back-btn {
    background: #e3f2fd;   /* light blue */
    color: #003d7a;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.left-back-btn:hover {
    background: #bbdeff;
}
/* Buttons ko same row me lane ke liye */
.top-btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 40px 40px 40px;
}

/* BACK BUTTON */
.left-back-btn {
    background: #003d7a;      /* Dark Blue */
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.left-back-btn:hover {
    background: #002d5a;
}

/* RIGHT SIDE BUTTON SAME AS PEHLE */
.right-open-btn {
    background: #0056d6;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.right-open-btn:hover {
    background: #0041a8;
}
/* Top button row */
.top-btn-row {
    display: flex;
    justify-content: space-between; /* Left & Right alignment */
    align-items: center;
    width: 100%;
    margin: 20px 0 40px 0;
    padding: 0 20px;
}

/* Back Button */
.back-btn {
    background: #003d99;          /* DARK BLUE */
    color: #ffffff;
    padding: 10px 25px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid #002b70;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: #0055cc;
    border-color: #003d99;
    transform: translateX(-3px);
}

/* Already existing More Tyre Details button */
.right-open-btn {
    background: #005ce6;   
    color: white;
    padding: 12px 28px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s;
}

.right-open-btn:hover {
    background: #0047b3;
}


